:root {
    --primary: #011B47;
    --primary-light: #0a2d6b;
    --secondary: #E9A301;
    --secondary-dark: #c48901;
    --accent: #f4f7fa;
    --text: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: auto;
}

body {
    background-color: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: serif;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-slider-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    height: 320px; /* Adjust based on content */
    overflow: hidden;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(233, 163, 1, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Ensure Google header looks good in the new card */
.google-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.google-logo {
    width: 90px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.review-content {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: serif;
}

.reviewer-name h5 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.reviewer-name p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.top-bar .nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 13px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a:hover {
    color: var(--secondary);
}

/* Navigation */
.main-nav {
    background: #FFF;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links>li>a {
    font-weight: 700;
    color: var(--primary);
    font-size: 13px;
    padding: 0.8rem 0;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: auto;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    color: var(--text);
}

.dropdown-menu li a:hover {
    background: var(--accent);
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 13px;
}

.btn-tracking-header {
    background: var(--primary);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-tracking-header:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Section */
.hero-v2 {
    position: relative;
    padding: 120px 5% 180px;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(233, 163, 1, 0.2);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Booking Form V2 */
.booking-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    color: var(--text);
}

/* Tab Pills V2 */
.tab-pills-v2 {
    display: flex;
    gap: 1rem;

    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.tab-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #eee;
    background: #fff;
    color: var(--text-muted);
    font-family: auto;
}

.tab-pill i,
.tab-pill img {
    font-size: 1.2rem;
}

.flag-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.tab-pill.active {
    border-color: var(--secondary);
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    font-family: auto;
}

.tab-pill:hover:not(.active) {
    border-color: #ddd;
    background: #f9f9f9;
}

.tab-pane-v2 {
    display: none;
}

.tab-pane-v2.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domestic-title-v2 {
    color: #011b47;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: auto;
    display: block;
}

.domestic-subtitle-v2 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mobile-input-group {
    display: flex;
    gap: 0;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    overflow: hidden;
}

.mobile-input-group:focus-within {
    border-color: var(--secondary);
}

.mobile-input-group select {
    border: none;
    background: #f8fafc;
    padding: 0 5px;
    width: 75px !important;
    flex: none !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-right: 1px solid #edf2f7;
}

.mobile-input-group input {
    border: none;
    flex: 1;
}

.booking-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group-v2 {
    margin-bottom: 1.2rem;
}

.form-group-v2 label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 18px;
    color: var(--primary);
    font-family: auto;
}

.form-group-v2 input,
.form-group-v2 select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group-v2 input:focus {
    border-color: var(--secondary);
    outline: none;
}

.btn-primary-v2 {
    width: 100%;
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: auto;
}

.btn-primary-v2:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Inquiry Form V2 */
.inquiry-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.inquiry-form-v2 .form-group-v2 {
    margin-bottom: 0;
}

.inquiry-form-v2 select,
.inquiry-form-v2 input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gap-1rem {
    gap: 1rem;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 15px;
    padding: 2rem;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 17px 5%;
    background: #f9fbff;
}

.pricing-table-container {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--white);
    border-radius: 15px;
    overflow-x: auto;
    /* Enable horizontal scroll on mobile */
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    text-align: left;
    white-space: nowrap;
    font-family: auto;
}

.pricing-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

.pricing-table tr:hover {
    background: var(--accent);
}

.price-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
}

/* Services V2 */
.services-v2 {
    padding: 45px 5%;
}

.service-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card-v2 {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img-v2 {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 27, 71, 0.8), transparent);
}

.service-info-v2 {
    padding: 2rem;
}

.service-info-v2 h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-info-v2 h3 i {
    color: var(--secondary);
}

.service-info-v2 p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-features-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.service-features-v2 li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features-v2 li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Calculators V2 */
.calc-section {
    padding: 100px 5%;
    /* background: var(--accent); */
}

.calc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.calc-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.calc-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calc-box h3 i {
    background: var(--secondary);
    color: var(--primary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-width: 320px;
    margin: 0 auto;
}

.all-services-section {
    padding: 68px 5%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.03;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--secondary);
    color: var(--primary);
    transform: rotateY(360deg);
}

.feature-card h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer V2 */
.footer {
    background: var(--primary);
    color: var(--white);
    border-top: 5px solid var(--secondary);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-top {
    padding: 80px 0;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 8px;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.info-item i {
    color: var(--secondary);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.7;
    font-size: 0.9rem;
    grid-template-columns: none;
    /* Override grid if inherited */
}

.bottom-links {
    display: flex;
    gap: 2rem;
}

/* WhatsApp Floating */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Improvements */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .footer-top .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-features {
        justify-content: center;
    }

    .booking-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 5%;
        border-bottom: 1px solid rgba(1, 27, 71, 0.1);
        color: var(--primary);
    }

    .nav-actions {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background: rgba(1, 27, 71, 0.05);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .top-bar .nav-container {
        flex-direction: column;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
        display: none !important;
    }

    .cta-btn-v7 {

        font-size: 14px !important;
    }

    .about-header h2 {
        font-size: 1.2rem !important;
        color: var(--primary);
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 11px;
    }

    .cta-banner-v8 h3 {
        font-size: 33px !important;
        color: #011B47;
        font-weight: 900;
        margin-bottom: 15px;
        line-height: 37px !important;
    }

    .section-padding {
        padding: 1px 5% !important;
    }

    .services-v2-header h2 {
        font-size: 34px !important;
        color: var(--primary);
    }

    .services-v2 {
        padding: 42px 5% !important;
    }

    .terms-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .terms-box {
        padding: 1.5rem !important;
    }

    .terms-text {
        font-size: 0.85rem !important;
    }

    .terms-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.4rem !important;
    }

    .terms-banner h3 {
        margin: 0;
        font-size: 15px !important;
        font-weight: 700;
        color: white;
        line-height: 1.5;
    }

    .top-bar-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
    }

    .top-bar-info span {
        font-size: 0.75rem;
    }

    .top-bar-social {
        justify-content: center;
        width: 100%;
    }

    .hero-feature-item {
        display: flex;
        align-items: center;
        gap: 1px !important;
        font-weight: unset !important;

    }
}

@media (max-width: 768px) {


    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .feature-card {
        aspect-ratio: 1 / 1;
        max-width: 100%;
        padding: 1rem;
    }

    .feature-card h4 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 1.5rem 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .calc-box {
        padding: 1.5rem;
    }

    .feature-card {
        aspect-ratio: auto;
        min-height: 300px;
    }
}

/* About Us Section */
.about-content span:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 37, 88, 0.2);
}

@media (max-width: 992px) {
    .about-us-section>div>div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-img-wrapper img {
        height: 400px !important;
    }

    .about-img-wrapper>div {
        bottom: -20px !important;
        right: 20px !important;
    }
}

/* Partners Section */
.partners-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scrollPartners 25s linear infinite;
    padding-left: 80px;
}

.partners-track img,
.partners-track div {
    height: 45px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.6); */
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.partners-track div {
    height: auto;
}

.partners-track img:hover,
.partners-track div:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

@media (max-width: 768px) {

    .partners-track img,
    .partners-track div {
        height: 35px;
    }

    .partners-track {
        gap: 50px;
        padding-left: 50px;
    }

    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 25px));
        }
    }
}

/* Comprehensive Services Section */
@media (max-width: 992px) {
    .all-services-section>div:nth-child(2)>div {
        border-right: none !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid #e2e8f0;
    }

    .all-services-section>div:nth-child(2)>div:last-child {
        border-bottom: none;
    }
}

/* Services Swiper */
.services-swiper {
    width: 100%;
    padding: 20px 10px 50px 10px;
}

.services-swiper .swiper-slide {
    height: auto;
}

.services-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
}

.services-swiper .service-card-v2 {
    margin: 0;
}

/* New Utility Classes from Inline Styles */
.hero-features-v2 {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-family: auto;
}

.section-padding {
    padding: 20px 5%;
}

.bg-white {
    background: var(--white);
}

.bg-light {
    background: #fcfcfc;
}

.text-center {
    text-align: center;
}

.m-auto {
    margin: 0 auto;
}

.max-width-1300 {
    max-width: 1300px;
}

.max-width-1200 {
    max-width: 1200px;
}



.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-header p {
    font-size: 1.4rem;
    color: var(--secondary);
    font-style: italic;
    font-weight: 600;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 500px;
}

.years-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(214, 158, 46, 0.3);
}

.years-badge h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 800;
}

.years-badge p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-content p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-content .sub-h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.industry-badge {
    background: rgba(10, 37, 88, 0.05);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(10, 37, 88, 0.1);
    transition: all 0.3s ease;
}

.partners-section {
    padding: 50px 0 40px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.partners-section h4 {
    text-align: center;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.gradient-mask-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    z-index: 2;
    pointer-events: none;
}

.gradient-mask-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
    z-index: 2;
    pointer-events: none;
}

.all-services-title-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.all-services-title-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d69e2e;
    z-index: 1;
}

.all-services-title {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 16px;
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
    border: 4px solid #fcfcfc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-grid-4 {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.service-col {
    padding: 0 25px;
    border-right: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.service-col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-icon-wrapper {
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffde59;
    font-size: 1.5rem;
}

.service-col-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #4a5568;
}

.service-list-dot {
    color: #d69e2e;
    font-size: 0.4rem;
    margin-top: 7px;
}

.why-akj-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-akj-header h4 {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.why-akj-header h2 {
    font-size: 31px;
    color: var(--primary);
    font-weight: 800;
}

.why-akj-line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 20px auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.country-flag-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.flag-group {
    display: flex;
    align-items: center;
}

.flag-group img {
    margin-left: -15px;
    position: relative;
}

.services-v2-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-v2-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.services-v2-line {
    width: 80px;
    height: 5px;
    background: var(--secondary);
    margin: 15px auto;
}

.booking-terms-section {
    padding: 6px 5%;
    background: var(--white);
    background-image: radial-gradient(#f0f4f8 1px, transparent 1px);
    background-size: 20px 20px;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-banner {
    background: linear-gradient(135deg, #011a45, #011b47);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 0, 0.2);
}

.terms-banner h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.5;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.terms-box {
    background: #eeeeee;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.terms-box-primary {
    border-top: 5px solid var(--primary);
}

.terms-box-secondary {
    border-top: 5px solid var(--secondary);
}

.terms-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.terms-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.terms-icon-primary {
    background: rgba(10, 37, 88, 0.1);
    color: var(--primary);
}

.terms-icon-secondary {
    background: rgba(255, 222, 89, 0.2);
    color: #d69e2e;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.terms-list-item {
    display: flex;
    gap: 15px;
}

.terms-number {
    font-weight: 800;
    font-size: 1.2rem;
}

.terms-number-primary {
    color: var(--primary);
}

.terms-number-secondary {
    color: var(--secondary);
}

.terms-text {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.calc-result {
    margin-top: 1.5rem;
    font-family: auto;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--secondary);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.calc-box-dark {
    background: var(--primary);
    color: var(--white);
}

.calc-box-dark h3 {
    color: var(--white);
}

.calc-box-dark label {
    color: var(--white);
}

.calc-box-dark input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.calc-partners {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    opacity: 0.6;
}


.prohibited-section {
    padding: 60px 5%;
    background: var(--white);
}

.prohibited-box {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.prohibited-title {
    color: #c53030;
}

.prohibited-text {
    color: #9b2c2c;
}

.prohibited-btn {
    width: auto;
    padding: 0.8rem 2rem;
    background: #c53030;
    color: white;
}

/* Blog Section */
.blog-section {
    padding: 100px 5%;
    background: #f8fafc;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-header .underline {
    width: 80px;
    height: 5px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.blog-info {
    padding: 30px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.blog-info h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-info p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.view-all-blog {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 2.2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Consolidated Utilities from Inline Styles */
.services-grid-why {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.gap-1rem {
    gap: 1rem;
}

.form-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.text-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--secondary) !important;
}

.font-bold {
    font-weight: 700;
}

.mt-2rem {
    margin-top: 2rem;
}

.mt-1-5rem {
    margin-top: 1.5rem;
}

.mt-0-5rem {
    margin-top: 0.5rem;
}

/* Partner Text Logos */
.partner-logo-text {
    font-family: Arial, sans-serif;
    font-weight: 900;
    transition: var(--transition);
}

.logo-dhl {
    font-size: 32px;
    font-style: italic;
    color: #d40511;
    letter-spacing: -2px;
}

.logo-fedex {
    font-size: 32px;
}

.logo-fedex .purple {
    color: #4d148c;
}

.logo-fedex .orange {
    color: #ff6600;
}

.logo-ups {
    font-size: 32px;
    color: #351c15;
}

.logo-aramex {
    font-family: 'Arial Black', sans-serif;
    font-size: 30px;
    color: #e31837;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.logo-delhivery {
    font-size: 30px;
    color: #e31837;
}

.logo-bluedart {
    font-size: 28px;
    color: #0033a0;
    font-style: italic;
    letter-spacing: -1px;
}

.logo-tnt {
    font-size: 30px;
    color: #ff6600;
    padding: 0 5px;
    border-radius: 50%;
}

/* Pricing & Tables */
.pricing-info {
    color: var(--text-muted);
    font-weight: 400;
}

.flag-z3 {
    z-index: 3;
}

.flag-z2 {
    z-index: 2;
}

.flag-z1 {
    z-index: 1;
}

/* Specialized Services Swiper */
.service-card-v2 {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Core Values & Reviews Section */
.values-reviews-section {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('../images/cargo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.core-values h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 222, 89, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.value-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.reviews-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.google-logo {
    height: 40px;
}

.stars {
    color: #fbbc04;
    font-size: 1.2rem;
}

.review-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.review-content {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name h5 {
    font-size: 1rem;
    color: var(--white);
}

.reviewer-name p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.service-info-flex {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    align-items: center;
}

.service-info-flex h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 800;
}

.service-info-flex p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-swiper-quote {
    display: inline-block;
    width: 100%;
    max-width: 160px;
    padding: 10px 20px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-swiper-quote:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Booking Terms */
.terms-banner-icon {
    color: #ffde59;
    margin-right: 10px;
}

.terms-box h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 0;
}

.formula-tag {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 800;
}

.text-success-bold {
    color: #006600;
    font-weight: 700;
}

.ml-8 {
    margin-left: 8px;
}

.blog-delay-2 {
    animation-delay: 0.2s;
}

.blog-delay-4 {
    animation-delay: 0.4s;
}

/* Service Images (Swiper) */
.service-img-baggage {
    background-image: url('../images/baggage.png');
}

.service-img-medicine {
    background-image: url('../images/medicine.png');
}

.service-img-documents {
    background-image: url('../images/documents.png');
}

.service-img-food {
    background-image: url('../images/food.png');
}

.service-img-electronics {
    background-image: url('../images/electronics.png');
}

.service-img-household {
    background-image: url('../images/household.png');
}

/* Breadcrumb & Page Header Styles */
.page-header-v2 {
    padding: 120px 0 160px;
    background: linear-gradient(rgba(1, 27, 71, 0.8), rgba(1, 27, 71, 0.7)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.breadcrumb-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.breadcrumb-v2 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-v2 a:hover {
    color: var(--secondary);
}

.breadcrumb-v2 span {
    color: var(--secondary);
}

.breadcrumb-v2 i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.service-badge-v2 {
    background: rgba(255, 222, 89, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 222, 89, 0.3);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.page-header-v2 h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.page-header-v2 p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-header-v2 h1 {
        font-size: 2.2rem;
    }
}

/* Tracking Page Styles */
.tracking-hero-v2 {
    background: linear-gradient(rgba(1, 27, 71, 0.8), rgba(1, 27, 71, 0.7)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px;
    text-align: center;
    position: relative;
}

.tracking-hero-v2 h1 {
    color: #011B47;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: auto;
}

.tracking-hero-v2 p {
    color: #011B47;
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 600;
}

.search-container-v2 {
    max-width: 800px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.search-card-v2 {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
}

.search-card-v2 input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.search-card-v2 input:focus {
    border-color: #E9A301;
    background: #fffdf5;
}

.btn-track-v2 {
    background: #011B47;
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-track-v2:hover {
    background: #E9A301;
    color: #011B47;
    transform: translateY(-2px);
}

.tracking-content-v2 {
    max-width: 1100px;
    margin: 50px auto 100px;
    padding: 0 20px;
    display: none;
}

.status-card-v2 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.status-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f1f5f9;
}

.id-tag-v2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #011B47;
    margin: 0;
}

.status-badge-v2 {
    background: #dcfce7;
    color: #15803d;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-timeline-v2 {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    position: relative;
}

.progress-timeline-v2::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    z-index: 1;
}

.progress-line-active {
    position: absolute;
    top: 20px;
    left: 0;
    width: 50%;
    height: 4px;
    background: #E9A301;
    z-index: 2;
    transition: width 1s ease;
}

.timeline-node {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 20%;
}

.node-dot {
    width: 44px;
    height: 44px;
    background: white;
    border: 4px solid #f1f5f9;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.timeline-node.completed .node-dot {
    border-color: #E9A301;
    background: #E9A301;
    color: #011B47;
}

.timeline-node.active .node-dot {
    border-color: #011B47;
    color: #011B47;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(1, 27, 71, 0.2);
}

.node-label {
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-node.active .node-label,
.timeline-node.completed .node-label {
    color: #011B47;
}

.details-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.detail-box-v2 {
    background: #fcfcfc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
}

.detail-box-v2 h4 {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.detail-box-v2 p {
    color: #011B47;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.history-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.history-card-v2 h3 {
    color: #011B47;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.history-table-v2 {
    width: 100%;
    border-collapse: collapse;
}

.history-table-v2 th {
    text-align: left;
    padding: 15px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.history-table-v2 td {
    padding: 20px 15px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.hist-time {
    color: #64748b;
    font-weight: 600;
    width: 180px;
}

.hist-desc b {
    display: block;
    color: #011B47;
    margin-bottom: 5px;
}

.hist-desc span {
    color: #64748b;
    font-size: 0.85rem;
}

.hist-loc {
    font-weight: 700;
    color: #011B47;
    text-align: right;
}

.loader-v2 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner-v2 {
    width: 60px;
    height: 60px;
    border: 6px solid #f1f5f9;
    border-top-color: #E9A301;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .tracking-hero-v2 h1 {
        font-size: 2rem;
    }

    .search-card-v2 {
        flex-direction: column;
        padding: 25px;
    }

    .btn-track-v2 {
        padding: 15px;
    }

    .progress-timeline-v2 {
        flex-direction: column;
        gap: 30px;
        padding-left: 20px;
    }

    .progress-timeline-v2::before {
        left: 40px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
    }

    .progress-line-active {
        left: 40px;
        top: 0;
        width: 4px;
        height: 50%;
    }

    .timeline-node {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }

    .node-dot {
        margin: 0;
        flex-shrink: 0;
    }

    .details-grid-v2 {
        grid-template-columns: 1fr;
    }

    .history-table-v2 thead {
        display: none;
    }

    .history-table-v2 td {
        display: block;
        text-align: left !important;
        padding: 10px 0;
        border: none;
    }

    .history-table-v2 tr {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }
}




/* Medicine Page Styles */
:root {
    --akj-green: #e9a303;
    --akj-navy: #011B47;
    --akj-gold: #f7b924;
}

.medicine-hero-v7 {
    background: linear-gradient(rgba(1, 27, 71, 0.85), rgba(1, 27, 71, 0.75)), url('https://images.unsplash.com/photo-1512069772995-ec65ed45afd6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 140px;
    text-align: center;
    position: relative;
}

.hero-box-v7 {
    /* background: rgb(255, 255, 255); */
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 30px 60px;
    border-radius: 15px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

.hero-box-v7 h1 {
    color: #E9A301;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-box-v7 p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.calc-wrapper-v7 {
    max-width: 1200px;
    margin: -100px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 100;
}

.calc-card-v7 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(1, 27, 71, 0.15);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    border: 1px solid #edf2f7;
}

.calc-form-side {
    padding: 40px;
    border-right: 1px solid #f1f5f9;
}

.calc-info-side {
    padding: 50px;
    background: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-pill-v7 {
    display: flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.tab-item-v7 {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-family: auto;
}

.tab-item-v7.active {
    background: var(--akj-navy);
    color: white;
}

.pane-v7 {
    display: none;
}

.pane-v7.active {
    display: block;
    animation: fadeInPane 0.4s ease;
}

@keyframes fadeInPane {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-group-v7 {
    margin-bottom: 18px;
}

.form-row-v7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 18px;
}

.label-v7 {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-v7,
.select-v7 {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: white;
    transition: 0.3s;
}

.input-v7:focus,
.select-v7:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(233, 163, 1, 0.1);
}

.mobile-box-v7 {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.mobile-box-v7:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(233, 163, 1, 0.1);
}

.mobile-pre-v7 {
    background: #f1f5f9;
    padding: 14px 15px;
    border-right: 1px solid #e2e8f0;
    font-weight: 700;
    color: #475569;
    font-size: 0.85rem;
}

.mobile-in-v7 {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 1rem;
    outline: none;
}

.btn-submit-v7 {
    width: 100%;
    background: #e8a202;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-v7:hover {
    background: #c48901;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 138, 57, 0.2);
}

.section-v7 {
    padding: 80px 0px;
}

.summary-item-v7 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
}

.summary-item-v7 i {
    font-size: 1.4rem;
    margin-top: 5px;
    min-width: 30px;
}

.summary-item-v7 p {
    margin: 0;
}

.title-bar-v7 {
    font-family: auto;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-align: left;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 8px solid var(--secondary);
    display: flex;
    align-items: center;
}

.benefits-grid-v7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card-v7 {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.benefit-card-v7:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(1, 27, 71, 0.08);
}

.benefit-card-v7 i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: inline-flex;
    background: rgba(233, 163, 1, 0.1);
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-card-v7 h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 1.2rem;
}

.benefit-card-v7 p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.docs-grid-v7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.doc-item-v7 {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.doc-item-v7:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.doc-item-v7 i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.doc-item-v7 h5 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.doc-item-v7 p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.guideline-box-v7 {
    background: #f8fafc;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #edf2f7;
    margin-bottom: 60px;
}

.guideline-step-v7 {
    margin-bottom: 40px;
}

.guideline-step-v7:last-child {
    margin-bottom: 0;
}

.guideline-step-v7 h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary);
    padding-left: 20px;
    font-size: 1.25rem;
}

.guideline-step-v7 p {
    color: #475569;
    padding-left: 25px;
    line-height: 1.8;
}

.check-list-v7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 40px;
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.check-item-v7 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
}

.check-item-v7 i {
    color: #e9a303;
    margin-top: 5px;
}

.cta-v7 {
    background: linear-gradient(135deg, var(--primary) 0%, #002b70 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.cta-v7::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(233, 163, 1, 0.1);
    border-radius: 50%;
}

.cta-v7 h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary);
}

.cta-v7 p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-v7 {
    background: var(--secondary);
    color: var(--primary);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(233, 163, 1, 0.3);
}

.cta-btn-v7:hover {
    transform: scale(1.05);
    background: white;
    color: var(--primary);
}

@media (max-width: 991px) {
    .calc-card-v7 {
        grid-template-columns: 1fr;
    }

    .calc-form-side {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
}

@media (max-width: 768px) {

    .benefits-grid-v7,
    .docs-grid-v7,
    .check-list-v7 {
        grid-template-columns: 1fr;
    }

    .hero-box-v7 h1 {
        font-size: 2.2rem;
    }

    .cta-v7 h2 {
        font-size: 2rem;
    }

    .white-summary-box {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }

    .cta-v7 {
        padding: 40px 20px !important;
    }

    .white-summary-box .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .summary-item-v7 {
        padding: 15px 0 !important;
        border-bottom: 1px solid #f1f5f9;
    }

    .summary-item-v7:last-child {
        border-bottom: none;
    }
}

/* Domestic Page Styles */
.domestic-hero-v6 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/cargo.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 150px;
    min-height: 400px;
}

.calculator-container-v6 {
    max-width: 900px;
    margin: -100px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 100;
}

.booking-card-v6 {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #eee;
}

.card-header-v6 {
    background: white;
    padding: 30px 30px 10px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.card-header-v6 h1 {
    color: #f7b924;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.card-header-v6 p {
    color: #64748b;
    margin: 5px 0 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tab-nav-v6 {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn-v6 {
    flex: 1;
    padding: 15px;
    border: none;
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
}

.tab-btn-v6.active {
    background: white;
    color: #011B47;
    border-bottom-color: #e9a303;
}

.card-body-v6 {
    padding: 30px;
}

.pane-v6 {
    display: none;
}

.pane-v6.active {
    display: block;
    animation: fadeInPaneV6 0.4s ease;
}

@keyframes fadeInPaneV6 {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group-v6 {
    margin-bottom: 20px;
}

.form-row-v6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.label-v6 {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-v6,
.select-v6 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: white;
    transition: 0.3s;
}

.input-v6:focus,
.select-v6:focus {
    border-color: #e9a303;
    box-shadow: 0 0 0 4px rgba(45, 138, 57, 0.1);
}

.btn-submit-v6 {
    width: 100%;
    background: #011B47;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-submit-v6:hover {
    background: #e9a303;
    transform: translateY(-2px);
}

.form-footer-v6 {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    font-size: 0.85rem;
}

.form-footer-v6 i {
    color: #e9a303;
    margin-right: 5px;
}

/* Content Section V6 */
.section-padding-v6 {
    padding: 80px 0;
}

.container-v6 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.info-grid-v6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-text-v6 h2 {
    color: #011B47;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.info-text-v6 p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box-v6 {
    background: #f0fdf4;
    border-left: 5px solid #e9a303;
    padding: 25px;
    border-radius: 0 15px 15px 0;
    margin: 30px 0;
}

.highlight-box-v6 h4 {
    color: #011B47;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight-box-v6 p {
    color: #166534;
    font-weight: 600;
    margin: 0;
}

.benefits-v6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item-v6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #334155;
}

.benefit-item-v6 i {
    color: #e9a303;
}

/* Pricing Cards */
.pricing-section-v6 {
    background: #f8fafc;
    padding: 100px 0;
}

.pricing-grid-v6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card-v6 {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.price-card-v6:hover {
    transform: translateY(-10px);
    border-color: #e9a303;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.price-card-v6 i {
    font-size: 2.5rem;
    color: #e9a303;
    margin-bottom: 20px;
    display: block;
}

.price-card-v6 h3 {
    color: #011B47;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-card-v6 .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #011B47;
    margin-bottom: 20px;
}

.price-card-v6 .price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.price-list-v6 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.price-list-v6 li {
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.price-list-v6 li i {
    font-size: 1rem;
    margin-bottom: 0;
    color: #e9a303;
}

.btn-pricing-v6 {
    display: block;
    background: #011B47;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-pricing-v6:hover {
    background: #e9a303;
}

.cta-v6 {
    background: #011B47;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 80px;
}

.cta-v6 h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-v6 p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-whatsapp-v6 {
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

@media (max-width: 992px) {
    .info-grid-v6 {
        grid-template-columns: 1fr;
    }

    .pricing-grid-v6 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid-v6 {
        grid-template-columns: 1fr;
    }

    .card-header-v6 h1 {
        font-size: 1.6rem;
    }

    .form-row-v6 {
        grid-template-columns: 1fr;
    }
}

/* E-Commerce Page Styles */
.ecommerce-hero {
    background: linear-gradient(rgba(1, 27, 71, 0.8), rgba(1, 27, 71, 0.6)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px;
    text-align: center;
    position: relative;
}

.hero-box {
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); */
    display: inline-block;
    padding: 30px 60px;
    border-radius: 15px;
    /* border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

.hero-box h1 {
    color: var(--secondary);
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-v8 {
    padding: 80px 0;
}

.container-v8 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-v8 {
    text-align: center;
    margin-bottom: 50px;
}

.header-v8 h2 {
    color: #011B47;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.header-v8 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e8a202;
}

.service-grid-v8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-v8 {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-card-v8:hover {
    transform: translateY(-10px);
    border-color: #e8a202;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card-v8 i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin: 0 auto 20px;
    display: inline-flex;
    background: rgba(233, 163, 1, 0.1);
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card-v8 h4 {
    color: #011B47;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-card-v8 p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-section {
    background: #f8fafc;
    padding: 80px 0;
}

.process-grid-v8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step-v8 {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
}

.process-step-v8 .step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #e8a202;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.process-step-v8 i {
    font-size: 2.2rem;
    color: #011B47;
    margin-bottom: 15px;
    display: block;
}

.process-step-v8 h5 {
    color: #011B47;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-step-v8 p {
    font-size: 0.85rem;
    color: #64748b;
}

.why-grid-v8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-item-v8 {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
}

.why-item-v8 h5 {
    color: #011B47;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 18px;
}

.why-item-v8 p {
    font-size: 0.85rem;
    color: #64748b;
}

.cta-banner-v8 {
    background: white;
    border: 1px solid #eee;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.cta-banner-v8 h3 {
    font-size: 2rem;
    color: #011B47;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-banner-v8 p {
    color: #64748b;
    margin-bottom: 30px;
}

.btn-cta-v8 {
    background: #e8a202;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
}

.btn-cta-v8:hover {
    background: #c48901;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .service-grid-v8 {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid-v8 {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid-v8 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .service-grid-v8,
    .process-grid-v8,
    .why-grid-v8 {
        grid-template-columns: 1fr;
    }

    .hero-box {
        padding: 20px 30px;
    }

    .hero-box h1 {
        font-size: 1.8rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 150px;
    text-align: center;
}

.hero-box {
    /* background: white; */
    display: inline-block;
    padding: 25px 60px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.hero-box h1 {
    color: #f7b924;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.calc-wrapper-v9 {
    max-width: 900px;
    margin: -100px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 100;
}

.calc-card-v9 {
    background: white;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    padding: 35px;
    border: 1px solid #eee;
}

.tab-pill-v9 {
    display: flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto 30px;
}

.tab-item-v9 {
    padding: 8px 30px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.tab-item-v9.active {
    background: #011B47;
    color: white;
}

.pane-v9 {
    display: none;
}

.pane-v9.active {
    display: block;
    animation: fadeInPaneV9 0.4s ease;
}

@keyframes fadeInPaneV9 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-group-v9 {
    margin-bottom: 20px;
}

.form-row-v9 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.label-v9 {
    display: block;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-v9,
.select-v9 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: white;
}

.mobile-box-v9 {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-pre-v9 {
    background: #f8fafc;
    padding: 12px 15px;
    border-right: 1px solid #cbd5e1;
    font-weight: 700;
    color: #64748b;
    font-size: 0.85rem;
}

.mobile-in-v9 {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    outline: none;
}

.btn-submit-v9 {
    width: 100%;
    background: #e8a202;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: auto;
}

.btn-submit-v9:hover {
    background: #c48901;
    transform: translateY(-2px);
}

.section-v9 {
    padding: 80px 0;
}

.container-v9 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.green-banner-v9 {
    background: #e8a202;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 800;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-family: auto;
}

.title-bar-navy {
    background: var(--primary);
    color: white;
    padding: 20px 40px;
    text-align: center;
    font-weight: 900;
    border-radius: 12px;
    margin-bottom: 50px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 6px solid var(--secondary);
    display: inline-block;
    width: 100%;
}

.content-block-v9 {
    margin-bottom: 50px;
}

.content-block-v9 h3 {
    color: #011B47;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-left: 5px solid #e8a202;
    padding-left: 15px;
}

.content-block-v9 p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bullet-list-v9 {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bullet-item-v9 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #444;
}

.bullet-item-v9 i {
    color: var(--secondary);
    margin-top: 5px;
    font-size: 1.1rem;
}

.mission-vision-v9 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.vision-card-v9 {
    background: #f0fdf4;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #dcfce7;
}

.vision-card-v9 h4 {
    color: #011B47;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.vision-card-v9 p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-grid-v9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.step-grid-v9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-item-v9 {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid transparent;
}

.step-item-v9:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--secondary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(233, 163, 1, 0.3);
}

.step-item-v9 i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
    transition: 0.3s;
}

.step-item-v9:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

.step-item-v9 p {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {

    .mission-vision-v9,
    .step-grid-v9,
    .form-row-v9 {
        grid-template-columns: 1fr;
    }

    .hero-box h1 {
        font-size: 1.8rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(1, 27, 71, 0.7), rgba(1, 27, 71, 0.7)), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

.hero-box {
    /* background: rgba(255, 255, 255, 0.98); */
    display: inline-block;
    padding: 30px 80px;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
    animation: fadeInUp 0.8s ease;
}

.hero-box h1 {
    color: #e8a202;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 100;
}

.info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #e9a303;
}

.info-card i {
    font-size: 2.2rem;
    color: #e9a303;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    color: #011B47;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.main-contact-section {
    padding: 100px 0 150px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-side {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-side h2 {
    color: #011B47;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.label-v10 {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.input-v10,
.textarea-v10 {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fcfdfe;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-v10:focus,
.textarea-v10:focus {
    border-color: #e9a303;
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 138, 57, 0.1);
}

.btn-contact {
    background: #e9a303;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: auto;
}

.btn-contact:hover {
    background: #236b2c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-map-side {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 450px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    margin-top: 30px;
}

.location-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.location-item i {
    color: #e9a303;
    font-size: 1.5rem;
    margin-top: 4px;
}

.location-item h5 {
    color: #011B47;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.location-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }

    .contact-form-side {
        padding: 30px;
    }

    .hero-box {
        padding: 20px 30px;
    }

    .hero-box h1 {
        font-size: 1.8rem;
    }
}

/* Utility & Helper Classes */
.bg-light-blue {
    background: #eff6ff !important;
}

.border-light-blue {
    border-color: #dbeafe !important;
}

.bg-navy {
    background: #011B47 !important;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

.font-bold {
    font-weight: 800 !important;
}

.italic {
    font-style: italic !important;
}

.text-muted {
    color: #666 !important;
}

.p-15 {
    padding: 15px !important;
}

.rounded-8 {
    border-radius: 8px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

/* Page Specific Helper Classes */
.vision-card-v9.blue-alt {
    background: #eff6ff;
    border-color: #dbeafe;
}

.title-bar-navy {
    background: #011B47;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    font-family: auto;
}

.note-footer {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* More Utilities */
.text-secondary {
    color: #f7b924 !important;
}

.text-gold {
    color: #f7b924 !important;
    font-family: auto;
}

.inline-block {
    display: inline-block !important;
}

.mt-0-5rem {
    margin-top: 0.5rem !important;
}

.mt-1rem {
    margin-top: 1rem !important;
}

.mt-1-5rem {
    margin-top: 1.5rem !important;
}

.mt-2rem {
    margin-top: 2rem !important;
    font-family: auto;
}

.ml-10 {
    margin-left: 10px !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.no-border-top {
    border-top: none !important;
}

.no-decoration {
    text-decoration: none !important;
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.btn-learn-more {
    color: #f7b924;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
}

.btn-learn-more:hover {
    text-decoration: underline;
}

/* Page-Specific Utilities & Blocks */
.max-1100 {
    max-width: 1100px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.lh-1-6 {
    line-height: 1.6 !important;
}

.lh-1-8 {
    line-height: 1.8 !important;
}

.text-slate {
    color: #475569 !important;
}

.text-gray {
    color: #555 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.fs-0-9 {
    font-size: 0.9rem !important;
}

.fs-1-8rem {
    font-size: 1.8rem !important;
}

.p-20 {
    padding: 20px !important;
}

.p-40 {
    padding: 40px !important;
}

.rounded-12 {
    border-radius: 12px !important;
}

.rounded-20 {
    border-radius: 20px !important;
}

.border-eee {
    border: 1px solid #eee !important;
}

.white-info-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.white-summary-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #eee;
    margin-bottom: 60px;
}

/* Domestic & Shared Utilities */
.max-1000 {
    max-width: 1000px !important;
}

.fs-1-4rem {
    font-size: 1.4rem !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

/* Ecommerce & General Utilities */
.mt-10 {
    margin-top: 10px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

/* Tracking & Shared Utilities */
.text-right {
    text-align: right !important;
}

.text-primary {
    color: #e9a303 !important;
}

/* International & General Utilities */
.max-800 {
    max-width: 800px !important;
}

.z-10 {
    z-index: 10 !important;
}

.relative {
    position: relative !important;
}

.p-1rem {
    padding: 1rem !important;
}

.p-1-2rem {
    padding: 1rem 2rem !important;
}

.gap-1rem {
    gap: 1rem !important;
}

.w-auto {
    width: auto !important;
}

.fs-1-2rem {
    font-size: 1.2rem !important;
}

.mb-1-5rem {
    margin-bottom: 1.5rem !important;
}

.mb-2rem {
    margin-bottom: 2rem !important;
}

.mb-4rem {
    margin-bottom: 4rem !important;
}

.mt-neg-60 {
    margin-top: -60px !important;
}

.booking-card-overlap {
    max-width: 800px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
}

.partner-grid-alt {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
}

/* Admin & Dashboard Utilities */
.avatar-span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin Login Utilities */
.pr-50 {
    padding-right: 50px !important;
}

.password-toggle-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #64748b;
    font-size: 1.1rem;
}

/* Admin Login Page Styles */
.admin-login-body {
    background: linear-gradient(135deg, #011B47 0%, #002b70 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.admin-login-card img {
    width: 180px;
    margin-bottom: 30px;
}

.admin-login-card h2 {
    color: #011B47;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.admin-login-card p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.admin-login-group {
    text-align: left;
    margin-bottom: 20px;
}

.admin-login-group label {
    display: block;
    font-weight: 700;
    color: #011B47;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.admin-login-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
    font-size: 1rem;
}

.admin-login-group input:focus {
    border-color: #E9A301;
    background: #fffdf5;
}

.admin-btn-login {
    background: #E9A301;
    color: #011B47;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
}

.admin-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 163, 1, 0.4);
}

.admin-error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 600;
}

/* Final Admin Utilities */
.logo-img-lg {
    height: 40px !important;
}

.logo-img-sm {
    height: 30px !important;
}

.d-none-important {
    display: none !important;
}

.avatar-img-admin {
    width: 40px !important;
    border-radius: 50% !important;
}

/* Admin Layout Styles */
.admin-sidebar {
    width: 260px;
    height: 100vh;
    background: #011B47;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.admin-sidebar-logo {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.admin-sidebar-logo img {
    width: 150px;
}

.admin-nav-links {
    list-style: none;
}

.admin-nav-links li {
    margin-bottom: 0.5rem;
}

.admin-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.admin-nav-links a:hover,
.admin-nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #E9A301;
}

.admin-main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
}

.admin-header {
    background: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #011B47;
}

.admin-container {
    padding: 2rem;
}

.admin-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-main-content {
        margin-left: 0;
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }
}

/* Domestic Page Modern Styles (v11) */
.domestic-hero-v11 {
    height: auto;
    padding: 100px 0 140px;
    background: linear-gradient(rgba(1, 27, 71, 0.65), rgba(1, 27, 71, 0.65)), url('https://images.unsplash.com/photo-1590602847861-f357a9332bbc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.breadcrumb-v11 {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0.9;
}

.breadcrumb-v11 a {
    color: #E9A301;
    text-decoration: none;
}

.breadcrumb-v11 span {
    color: white;
}

.booking-card-v11 {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header-v11 {
    background: var(--primary);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.card-header-v11 h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.card-header-v11 p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.tab-nav-v11 {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn-v11 {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: auto;
}

.tab-btn-v11.active {
    color: var(--primary);
    background: white;
    border-bottom: 3px solid var(--secondary);
    font-family: auto;
}

.card-body-v11 {
    padding: 40px;
}

.pane-v11 {
    display: none;
}

.pane-v11.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-group-v11 {
    margin-bottom: 25px;
}

.label-v11 {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.select-v11,
.input-v11 {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 1rem;
    color: #1e293b;
    outline: none;
    transition: 0.3s;
    background: #f8fafc;
}

.select-v11:focus,
.input-v11:focus {
    border-color: var(--secondary);
    background: white;
}

.form-row-v11 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.mobile-box-v11 {
    display: flex;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.mobile-pre-v11 {
    background: #e2e8f0;
    padding: 14px 18px;
    font-weight: 700;
    color: #475569;
    font-size: 0.9rem;
}

.mobile-in-v11 {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.btn-submit-v11 {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(1, 27, 71, 0.2);
    font-family: auto;
}

.btn-submit-v11:hover {
    background: #002b70;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(1, 27, 71, 0.3);
}

/* Info Section Modern */
.info-section-v11 {
    padding: 0px 0;
    background: #fff;
}

.title-bar-v11 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 60px;
}

.benefits-grid-v11 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card-v11 {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    text-align: center;
}

.benefit-card-v11:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.benefit-card-v11 i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.benefit-card-v11 h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-card-v11 p {
    color: #64748b;
    line-height: 1.6;
}

.call-cta-v11 {
    background: var(--primary);
    padding: 60px;
    border-radius: 30px;
    color: white;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.call-cta-v11::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(233, 163, 1, 0.1);
    border-radius: 50%;
}

.call-cta-v11 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary);
}

.call-cta-v11 p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.rates-table-v11 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rates-table-v11 th {
    background: var(--primary);
    color: white;
    padding: 20px;
    font-weight: 700;
    text-align: left;
}

.rates-table-v11 td {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.rates-table-v11 tr:last-child td {
    border-bottom: none;
}

.rates-table-v11 tr:hover td {
    background: #f8fafc;
}

@media (max-width: 768px) {
    .form-row-v11 {
        grid-template-columns: 1fr;
    }

    .card-header-v11 h1 {
        font-size: 1.8rem;
    }

    .call-cta-v11 {
        padding: 40px 20px;
    }

/* Cargo Freight Page Premium Styles (v11) */
:root {
    --cargo-primary: #011B47;
    --cargo-secondary: #E9A301;
    --cargo-accent: #f8faff;
    --cargo-white: #ffffff;
    --cargo-text: #2d3436;
    --cargo-text-light: #636e72;
    --cargo-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --cargo-glass: rgba(255, 255, 255, 0.95);
}

.cargo-hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cargo-white);
    text-align: center;
    overflow: hidden;
}

.cargo-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(1, 27, 71, 0.85), rgba(1, 27, 71, 0.5));
    z-index: 1;
}

.cargo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.cargo-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.cargo-hero-content h1 span {
    color: var(--cargo-secondary);
}

.cargo-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 400;
}

.cargo-inquiry-container {
    margin-top: -120px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.cargo-glass-card {
    background: var(--cargo-glass);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 1100px;
    margin: 0 auto;
}

.cargo-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.cargo-card-header h2 {
    color: var(--cargo-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.cargo-card-header p {
    color: var(--cargo-text-light);
    font-size: 1.1rem;
}

.cargo-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.cargo-tab-btn {
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid #edf2f7;
    background: white;
    color: var(--cargo-text-light);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.cargo-tab-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cargo-tab-btn.active {
    border-color: var(--cargo-secondary);
    color: var(--cargo-primary);
    background: white;
    box-shadow: 0 10px 20px rgba(233, 163, 1, 0.15);
}

.cargo-tab-btn.active i {
    transform: scale(1.2);
}

.cargo-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.cargo-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cargo-input-group label {
    font-weight: 700;
    color: var(--cargo-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

.cargo-input-group select, 
.cargo-input-group input {
    padding: 16px 20px;
    border-radius: 15px;
    border: 2px solid #edf2f7;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--cargo-text);
}

.cargo-input-group select:focus, 
.cargo-input-group input:focus {
    border-color: var(--cargo-secondary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(233, 163, 1, 0.1);
}

.cargo-submit-btn {
    background: var(--cargo-secondary);
    color: var(--cargo-primary);
    padding: 20px;
    border-radius: 15px;
    border: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 25px rgba(233, 163, 1, 0.3);
    letter-spacing: 1px;
}

.cargo-submit-btn:hover {
    background: var(--cargo-primary);
    color: var(--cargo-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(1, 27, 71, 0.3);
}

.cargo-services-section {
    padding: 120px 0 80px;
    background: var(--cargo-accent);
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 3.2rem;
    color: var(--cargo-primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: var(--cargo-secondary);
}

.section-heading p {
    color: var(--cargo-text-light);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.cargo-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.cargo-service-card {
    background: white;
    border-radius: 30px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cargo-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--cargo-secondary);
}

.cargo-service-icon {
    width: 90px;
    height: 90px;
    background: rgba(233, 163, 1, 0.1);
    color: var(--cargo-secondary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.8rem;
    transition: all 0.3s ease;
}

.cargo-service-card:hover .cargo-service-icon {
    background: var(--cargo-secondary);
    color: var(--cargo-primary);
    transform: rotateY(360deg);
}

.cargo-service-card h3 {
    color: var(--cargo-primary);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.cargo-service-card p {
    color: var(--cargo-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.cargo-stats-wrapper {
    background: linear-gradient(135deg, var(--cargo-primary) 0%, #0a2d6b 100%);
    padding: 80px 40px;
    color: white;
    border-radius: 40px;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(1, 27, 71, 0.2);
}

.cargo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box h2 {
    font-size: 3.8rem;
    color: var(--cargo-secondary);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.cargo-pricing-section {
    padding: 100px 0;
}

.cargo-table-container {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.cargo-table {
    width: 100%;
    border-collapse: collapse;
}

.cargo-table th {
    background: var(--cargo-primary);
    color: white;
    padding: 28px 25px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
}

.cargo-table td {
    padding: 28px 25px;
    border-bottom: 1px solid #f5f7f9;
    color: var(--cargo-text);
    font-weight: 600;
    font-size: 1.05rem;
}

.cargo-table tr:hover {
    background: #fcfdfe;
}

.price-pill {
    background: rgba(233, 163, 1, 0.12);
    color: var(--cargo-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
}

.cargo-cta {
    background: var(--cargo-primary);
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 50px 50px 0 0;
}

.cargo-cta h2 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cargo-cta p {
    font-size: 1.3rem;
    opacity: 0.85;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cargo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--cargo-secondary);
    color: var(--cargo-primary);
    padding: 22px 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(233, 163, 1, 0.3);
}

.cargo-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    background: white;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .cargo-hero-content h1 { font-size: 3.2rem; }
    .cargo-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .cargo-cta h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .cargo-hero-content h1 { font-size: 2.5rem; }
    .cargo-stats-grid { grid-template-columns: 1fr; }
    .cargo-tabs { flex-direction: column; align-items: stretch; }
    .cargo-tab-btn { justify-content: center; }
    .cargo-glass-card { padding: 30px 20px; }
}