        :root {
            /* Updated color variables to match airlinesgroupbooking.com (Professional Blue Theme) */
            
            --ac-black: #1e2129; /* Dark grey/black for sidebar/footer */
            --ac-blue: #0165fb; /* Legacy blue for compatibility */
            --ac-main: #fc511b; /* Orange main color */
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            display: flex;
            flex-direction: column; /* Always column to let top-nav span full width */
            min-height: 100vh;
            padding-top: 119px; /* Space for fixed navbar (4px strip + 45px orange header + 70px main navbar) */
        }

        @media (max-width: 992px) {
            body {
                padding-top: 103px; /* Space for fixed navbar on mobile (3px strip + 40px orange header + 60px main navbar) */
            }
        }

        @media (max-width: 576px) {
            body {
                padding-top: 0px !important; /* Space for fixed navbar on small mobile (3px strip + 40px orange header + 55px main navbar) */
            }
        }

       

        /* Dark Blue Top Strip */
        .top-brown-strip {
            background: #f94108;
            height: 4px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1070; /* Highest z-index */
            width: 100%;
        }

        /* Blue Header Bar */
        .orange-header-bar {
            background: var(--ac-main);
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            color: white;
            position: fixed;
            top: 4px; /* Below top strip */
            left: 0;
            right: 0;
            z-index: 1060; /* Above main-navbar */
            width: 100%;
        }

        .orange-header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .email-icon-circle {
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ac-main);
            font-size: 0.9rem;
        }

        .email-text {
            font-size: 0.9rem;
            font-weight: 500;
            color: white;
        }

        .orange-header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .orange-nav-link {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .orange-nav-link:hover {
            opacity: 0.8;
        }

        .nav-divider {
            color: white;
            font-size: 0.9rem;
        }

        .social-icons-group {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 10px;
        }

        .social-icon-circle {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ac-main);
            text-decoration: none;
            font-size: 0.85rem;
            transition: transform 0.2s;
        }

        .social-icon-circle:hover {
            transform: scale(1.1);
        }

        /* White Main Navigation Bar */
        .main-navbar {
            background: white;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: fixed;
            top: 49px; /* Below orange header bar (4px strip + 45px header) */
            left: 0;
            right: 0;
            z-index: 1050;
            width: 100%;
        }

        .navbar-toggler-mobile {
            background: none;
            border: none;
            color: #333;
            font-size: 1.5rem;
            padding: 0.5rem;
            margin-right: 1rem;
            cursor: pointer;
            display: none;
        }

        .navbar-toggler-mobile:focus {
            outline: none;
            box-shadow: none;
        }

        .navbar-toggler-mobile:hover {
            color: var(--ac-main);
        }

        .main-nav-left {
            display: flex;
            align-items: center;
        }

        .main-logo {
            display: flex;
            align-items: center;
        }

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

        .nav-service-item {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #4a4a4a;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: color 0.2s;
            height: 100%;
        }

        .nav-service-item i {
            font-size: 0.85rem;
            color: #4a4a4a;
            transition: color 0.2s;
        }

        .nav-service-item:hover {
            color: var(--ac-main);
        }

        .nav-service-item:hover i {
            color: var(--ac-main);
        }

        .nav-service-item.active {
            color: var(--ac-main);
        }

        .nav-service-item.active i {
            color: var(--ac-main);
        }

        .nav-service-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -5px;
            right: -5px;
            height: 3px;
            background: var(--ac-main);
            z-index: 2;
        }

        .nav-service-item .new-tag {
            position: absolute;
            top: -8px;
            right: -20px;
            background: #47a1de;
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Hero Area */
        .hero-area {
            position: relative;
            color: white;
            overflow: visible;
        }

        /* Hero Banner Carousel - Full Width */
        #heroBannerCarousel {
            width: 100%;
            position: relative;
        }

        #heroBannerCarousel .carousel-item {
            position: relative;
        }

        #heroBannerCarousel .carousel-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        #heroBannerCarousel .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            bottom: 30px;
        }

        #heroBannerCarousel .carousel-control-prev,
        #heroBannerCarousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(252, 81, 27, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        #heroBannerCarousel .carousel-control-prev {
            left: 20px;
        }

        #heroBannerCarousel .carousel-control-next {
            right: 20px;
        }

        #heroBannerCarousel .carousel-control-prev:hover,
        #heroBannerCarousel .carousel-control-next:hover {
            opacity: 1;
            background: rgba(252, 81, 27, 1);
        }

        #heroBannerCarousel .carousel-indicators {
            bottom: 20px;
        }

        #heroBannerCarousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid white;
        }

        #heroBannerCarousel .carousel-indicators button.active {
            background-color: var(--ac-main);
            border-color: var(--ac-main);
        }

        @media (max-width: 768px) {
            body {
                padding-top: 0 !important;
            }

            .hero-area {
                display: flex;
                align-items: center;
                padding-bottom: 2rem;
                margin-top: 0 !important;
                padding-top: 0 !important;
            }

            #heroBannerCarousel {
                height: 100%;
                margin-top: 0;
            }

            #heroBannerCarousel .carousel-item {
                margin-top: 0;
            }

            #heroBannerCarousel .carousel-item img {
                height: 700px;
                object-fit: cover;
            }

            .search-card-overlay {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                transform: translateY(-50%);
                bottom: auto;
                z-index: 20;
            }

            .search-card {
                margin: 0 auto;
                padding: 1.5rem;
            }

            #heroBannerCarousel .carousel-control-prev,
            #heroBannerCarousel .carousel-control-next {
                width: 40px;
                height: 40px;
            }

            #heroBannerCarousel .carousel-control-prev {
                left: 10px;
            }

            #heroBannerCarousel .carousel-control-next {
                right: 10px;
            }
            .spacer {
                padding: 0px 0 !important;
            }
        }

        /* Search Card Overlay Container */
        .search-card-overlay {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 20;
            width: 100%;
        }

        .search-card-overlay .container {
            max-width: 1200px;
        }

        .spacer {
            padding: 16px 0 !important;
        }

        .search-card {
            background: white;
            border-radius: 12px;
            color: var(--ac-black);
            padding: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Flight Booking Form - Left Side Positioning & Styling */
        /* Position form on left side */
        .search-card-overlay .row {
            justify-content: flex-start;
        }

        .search-card-overlay .col-lg-8 {
            margin-left: 0;
            max-width: 800px;
        }

        .probootstrap-form {
            position: relative;
            overflow: visible;
            width: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(252, 81, 27, 0.1);
            backdrop-filter: blur(10px);
        }

        .probootstrap-form:hover {
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        /* Trip Type Labels Styling - Tabs Design (Half above, half below form border) */
        .probootstrap-form .row > .col-lg-3:first-child {
            position: absolute;
            top: -20px;
            left: 2rem;
            z-index: 11;
            margin-bottom: 0;
        }

        .probootstrap-form .row > .col-lg-3:nth-child(2) {
            position: absolute;
            top: -20px;
            left: calc(2rem + 120px);
            z-index: 11;
            margin-bottom: 0;
        }

        /* Remove inline styles that position tabs */
        .probootstrap-form .label[style*="top: -24px"] {
            position: relative !important;
            top: -24px !important;
        }

        .probootstrap-form .label {
            display: inline-block;
            padding: 0.6rem 1.8rem;
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.2;
            color: #666;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 10px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%) !important;
            border: 2px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 0.5rem;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .probootstrap-form .label:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }

        .probootstrap-form .label label {
            margin: 0;
            cursor: pointer;
            display: block;
        }

        .probootstrap-form .label input[type="radio"] {
            display: none;
        }

        /* Active trip type - Orange for both Oneway and Round */
        .probootstrap-form .label-default {
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%) !important;
            background-color: var(--ac-main) !important;
            color: white !important;
            border-color: var(--ac-main) !important;
            box-shadow: 0 4px 15px rgba(252, 81, 27, 0.3) !important;
        }

        /* Inactive trip type - Grey */
        .probootstrap-form .label-primary {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%) !important;
            background-color: #f0f0f0 !important;
            color: #666 !important;
            border-color: #e0e0e0 !important;
        }

        .probootstrap-form .label-primary:hover {
            background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%) !important;
            border-color: #c0c0c0 !important;
        }

        /* Override inline styles for inactive Oneway */
        .probootstrap-form .label-primary[style*="background-color"] {
            background-color: #f0f0f0 !important;
        }

        /* Override inline styles for active tabs */
        .probootstrap-form .label-default[style*="background-color"] {
            background-color: #fc5119 !important;
        }

        .probootstrap-form .label-primary:hover {
            background: #e0e0e0 !important;
        }

        /* Special styling for Oneway when active (orange) */
        .probootstrap-form .label:has(#oneway:checked),
        .probootstrap-form #oneway:checked + label,
        .probootstrap-form label:has(#oneway:checked) {
            background: #fc5119 !important;
            color: white !important;
        }

        /* Special styling for Round when active (orange) */
        .probootstrap-form .label:has(#round:checked),
        .probootstrap-form #round:checked + label,
        .probootstrap-form label:has(#round:checked) {
            background: #fc5119 !important;
            color: white !important;
        }

        /* Fallback for browsers without :has() support */
        .probootstrap-form .label input[type="radio"]:checked ~ label,
        .probootstrap-form .label:has(input[type="radio"]:checked) {
            background: #fc5119 !important;
            color: white !important;
        }

        /* Add Multi-city tab styling (if exists) */
        .probootstrap-form .label:not(.label-default):not(.label-primary) {
            background: #f0f0f0 !important;
            color: #666 !important;
        }

        /* Form Groups */
        .probootstrap-form .form-group.m-t-15 {
            margin-bottom: 1.2rem;
            position: relative;
        }

        /* Labels Styling */
        .probootstrap-form .skt {
            display: block;
            font-size: 0.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.4rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            float: none !important;
            position: relative;
            padding-left: 0.5rem;
        }

        .probootstrap-form .skt::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 14px;
            background: linear-gradient(135deg, var(--ac-main), #ff6b3d);
            border-radius: 2px;
        }

        /* FROM and TO Fields - Add swap icon between them */
        .probootstrap-form .row {
            position: relative;
        }

        /* Swap icon between FROM and TO */
        .probootstrap-form .row > .col-lg-6:nth-child(4) {
            position: relative;
        }

        .probootstrap-form .row > .col-lg-6:nth-child(4)::before {
            content: "";
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z'/%3E%3C/svg%3E");
            background-size: 18px;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .probootstrap-form .row > .col-lg-6:nth-child(4):hover::before {
            background-color: var(--ac-main);
            border-color: var(--ac-main);
            transform: translateY(-50%) rotate(180deg);
        }

        /* Select Fields Styling */
        .probootstrap-form .form-control {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            background: #ffffff;
            color: #2c3e50;
        }

        .probootstrap-form .form-control:hover {
            border-color: #c0c0c0;
            background: #fafafa;
        }

        .probootstrap-form .form-control:focus {
            outline: none;
            border-color: var(--ac-main);
            box-shadow: 0 0 0 4px rgba(252, 81, 27, 0.12), 0 2px 8px rgba(252, 81, 27, 0.1);
            background: #ffffff;
            transform: translateY(-1px);
        }

        .probootstrap-form select.form-control option:first-child {
            color: #999;
        }

        /* Date Fields - Add green calendar icon */
        .probootstrap-form .form-group.m-t-15 {
            position: relative;
        }

        .probootstrap-form .form-group.m-t-15 input[type="date"] {
            position: relative;
            padding-right: 2.5rem;
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .probootstrap-form .form-group.m-t-15 input[type="date"]:hover {
            border-color: #c0c0c0;
            background: #fafafa;
        }

        .probootstrap-form .form-group.m-t-15 input[type="date"]:focus {
            border-color: var(--ac-main);
            box-shadow: 0 0 0 4px rgba(252, 81, 27, 0.12), 0 2px 8px rgba(252, 81, 27, 0.1);
            background: #ffffff;
            transform: translateY(-1px);
        }

        .probootstrap-form .icon.ion-calendar {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #28a745;
            font-size: 1.1rem;
            pointer-events: none;
            z-index: 5;
        }

        /* If icon doesn't exist, add via CSS */
        .probootstrap-form .form-group.m-t-15:has(input[type="date"]):not(:has(.icon))::after {
            content: "\f073";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #28a745;
            font-size: 1.1rem;
            pointer-events: none;
            z-index: 5;
        }

        /* Return Date - Grey background when disabled (Oneway), white when enabled (Round) */
        .probootstrap-form input#probootstrap-date-arrival:disabled {
            background-color: #d3d3d3 !important;
            cursor: not-allowed;
        }

        .probootstrap-form input#probootstrap-date-arrival:not(:disabled) {
            background-color: white !important;
            cursor: pointer;
        }

        /* Passenger Inputs - Style as counter inputs with +/- buttons */
        .probootstrap-form .col-lg-4:has(input.number) .form-group.m-t-15 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
        }

        .probootstrap-form input.number {
            padding: 0.7rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            text-align: center;
            font-size: 1rem;
            font-weight: 700;
            background: #ffffff;
            order: 2;
            flex-shrink: 0;
            transition: all 0.3s ease;
            color: #2c3e50;
        }

        .probootstrap-form input.number:hover {
            border-color: #c0c0c0;
            background: #fafafa;
        }

        .probootstrap-form input.number:focus {
            outline: none;
            border-color: var(--ac-main);
            box-shadow: 0 0 0 4px rgba(252, 81, 27, 0.12), 0 2px 8px rgba(252, 81, 27, 0.1);
            background: #ffffff;
            transform: translateY(-1px);
        }


        /* Fallback for browsers without :has() support */
        .probootstrap-form .col-lg-6 input#c_num {
            position: relative;
        }

        /* Submit Button Styling - Red design matching image */
        .probootstrap-form .btn-arrow {
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%) !important;
            background-color: var(--ac-main) !important;
            color: white !important;
            border: none !important;
            padding: 0.85rem 3rem !important;
            border-radius: 12px !important;
            font-size: 1rem !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 15px rgba(252, 81, 27, 0.3) !important;
            transition: all 0.3s ease !important;
            width: 100%;
            min-width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .probootstrap-form .btn-arrow::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .probootstrap-form .btn-arrow:hover::before {
            left: 100%;
        }

        .probootstrap-form .btn-arrow:hover {
            background: linear-gradient(135deg, #ff6b3d 0%, var(--ac-main) 100%) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(252, 81, 27, 0.4) !important;
        }

        .probootstrap-form .btn-arrow:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(252, 81, 27, 0.3) !important;
        }

        .probootstrap-form .btn-arrow span {
            color: white !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* WhatsApp Submit Button - Show "Submit" text with WhatsApp icon */
        .probootstrap-form #whatsapp_share.btn-arrow span {
            font-size: 1rem;
            font-weight: 700;
        }

        .probootstrap-form #whatsapp_share.btn-arrow span i {
            display: none !important;
        }

        .probootstrap-form #whatsapp_share.btn-arrow span img {
            display: inline-block !important;
            width: 20px !important;
            height: auto;
            margin-left: 0.5rem;
            vertical-align: middle;
        }

        /* Main Submit Button - Show "Search Flights" text with Gmail icon */
        .probootstrap-form #btnSubmit.btn-arrow span {
            position: relative;
            font-weight: 700;
            color: transparent;
        }

        .probootstrap-form #btnSubmit.btn-arrow span i {
            display: none !important;
        }

        .probootstrap-form #btnSubmit.btn-arrow span img {
            display: inline-block !important;
            width: 22px !important;
            height: auto;
            margin-left: 0.5rem;
            vertical-align: middle;
            position: relative;
            z-index: 1;
        }

        /* Button container styling */
        .probootstrap-form .col-lg-12.d-flex {
            gap: 1rem;
        }

        .probootstrap-form .col-lg-6:has(#btnSubmit),
        .probootstrap-form .col-lg-6:has(#whatsapp_share) {
            display: flex;
            justify-content: center;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .search-card-overlay .col-lg-8 {
                max-width: 100%;
            }

            .probootstrap-form {
                padding: 2rem;
            }

            .probootstrap-form .label {
                padding: 0.4rem 1rem;
                font-size: 0.85rem;
            }

            .probootstrap-form .row > .col-lg-3:first-child {
                left: 1rem;
            }

            .probootstrap-form .row > .col-lg-3:nth-child(2) {
                left: calc(1rem + 120px);
            }
        }

        @media (max-width: 768px) {
            /* Form container adjustments */
            .probootstrap-form {
                padding: 1.5rem !important;
                padding-top: 3rem !important;
                margin: 0 auto;
                max-width: 100%;
            }

            .search-card-overlay {
                padding: 0 10px;
            }

            .search-card-overlay .container {
                padding: 0;
            }

            .search-card-overlay .col-lg-8 {
                max-width: 100%;
                padding: 0;
            }

            /* Tabs positioning */
            .probootstrap-form .row > .col-lg-3:first-child {
                left: 1rem;
                top: -18px;
            }

            .probootstrap-form .row > .col-lg-3:nth-child(2) {
                left: calc(1rem + 110px);
                top: -18px;
            }

            /* Swap icon adjustments */
            .probootstrap-form .row > .col-lg-6:nth-child(4)::before {
                right: -15px;
                width: 30px;
                height: 30px;
                background-size: 14px;
            }

            /* Labels and form controls */
            .probootstrap-form .skt {
                font-size: 0.75rem;
            }

            .probootstrap-form .form-control {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }

            .probootstrap-form .label {
                padding: 0.35rem 0.8rem;
                font-size: 0.8rem;
                margin-right: 0.15rem;
            }
            .probootstrap-form .label[style*="top: -24px"] {
                position: relative !important;
                top: -34px !important;
            }

            /* FROM and TO fields - side by side on mobile */
            .probootstrap-form .row > .col-lg-6.mt-3 {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6.mt-3:first-of-type {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6.mt-3:last-of-type {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* DEPARTURE DATE and RETURN DATE - side by side on mobile */
            .probootstrap-form .row > .col-lg-6:has(input[type="date"]) {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#probootstrap-date-departure) {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#probootstrap-date-arrival) {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* Other col-lg-6 fields (Contact, Email) - full width */
            .probootstrap-form .row > .col-lg-6:has(input#c_num),
            .probootstrap-form .row > .col-lg-6:has(input#c_email) {
                width: 100% !important;
                flex: 0 0 100% !important;
                max-width: 100% !important;
                padding-left: 0;
                padding-right: 0;
            }

            /* Passenger columns - 3 columns side by side */
            .probootstrap-form .row > .col-lg-4 {
                width: 33.333% !important;
                flex: 0 0 33.333% !important;
                max-width: 33.333% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-4:first-of-type {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-4:last-of-type {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            .probootstrap-form input.number {
                width: 100%;
                padding: 0.5rem;
                font-size: 0.9rem;
            }

            .probootstrap-form .col-lg-4:has(input.number) .form-group.m-t-15 {
                display: block;
            }

            .probootstrap-form .col-lg-4:has(input.number) .form-group.m-t-15::before,
            .probootstrap-form .col-lg-4:has(input.number) .form-group.m-t-15::after {
                display: none;
            }

            /* Contact and Email fields - side by side on mobile */
            .probootstrap-form .row > .col-lg-6:has(input#c_num),
            .probootstrap-form .row > .col-lg-6:has(input#c_email) {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#c_num) {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#c_email) {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* Submit buttons - side by side on mobile */
            .probootstrap-form .col-lg-12.d-flex {
                flex-direction: row;
                gap: 0.75rem;
            }

            .probootstrap-form .col-lg-6:has(#btnSubmit),
            .probootstrap-form .col-lg-6:has(#whatsapp_share) {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .col-lg-6:has(#whatsapp_share) {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .col-lg-6:has(#btnSubmit) {
                padding-left: 0.5rem;
            }

            .probootstrap-form .btn-arrow {
                width: 100% !important;
                padding: 0.6rem 1rem !important;
                font-size: 0.85rem !important;
                min-width: auto !important;
            }

            /* Select2 responsive */
            .probootstrap-form .select2-container {
                width: 100% !important;
            }
        }

        @media (max-width: 576px) {
            /* Hero area for small mobile */
            .hero-area {
                margin-top: 0 !important;
                padding-top: 0 !important;
            }

            #heroBannerCarousel .carousel-item img {
                height: 650px !important;
            }

            /* Form container responsive */
            .probootstrap-form {
                padding: 1rem !important;
                padding-top: 3rem !important;
                margin: 0 10px;
                width: calc(100% - 20px) !important;
            }

            /* Search card overlay responsive */
            .search-card-overlay {
                padding: 0;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
            }

            .search-card-overlay .container {
                padding: 0 10px;
            }

            .search-card-overlay .col-lg-8 {
                max-width: 100%;
                padding: 0;
            }

            /* Tabs positioning on mobile */
            .probootstrap-form .row > .col-lg-3:first-child {
                position: absolute;
                left: 1rem;
                top: -15px;
                width: auto !important;
                max-width: 45%;
            }

            .probootstrap-form .row > .col-lg-3:nth-child(2) {
                position: absolute;
                left: calc(1rem + 45%);
                top: -15px;
                width: auto !important;
                max-width: 45%;
            }

            .probootstrap-form .label {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
                white-space: nowrap;
            }

            /* FROM and TO fields - side by side on mobile */
            .probootstrap-form .row > .col-lg-6.mt-3 {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
                margin-top: 0 !important;
                margin-bottom: 1rem;
            }

            .probootstrap-form .row > .col-lg-6.mt-3:first-of-type {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6.mt-3:last-of-type {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* Remove swap icon on very small mobile */
            .probootstrap-form .row > .col-lg-6:nth-child(4)::before {
                display: none;
            }

            /* DEPARTURE DATE and RETURN DATE - side by side on mobile */
            .probootstrap-form .row > .col-lg-6:has(input[type="date"]) {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#probootstrap-date-departure) {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#probootstrap-date-arrival) {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* Contact and Email fields - side by side on mobile */
            .probootstrap-form .row > .col-lg-6:has(input#c_num),
            .probootstrap-form .row > .col-lg-6:has(input#c_email) {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
                margin-bottom: 1rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#c_num) {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-6:has(input#c_email) {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* Passenger columns - 3 columns side by side */
            .probootstrap-form .row > .col-lg-4 {
                width: 33.333% !important;
                flex: 0 0 33.333% !important;
                max-width: 33.333% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-4:first-of-type {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .row > .col-lg-4:last-of-type {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            /* Form groups spacing */
            .probootstrap-form .form-group.m-t-15 {
                margin-bottom: 1rem;
            }

            /* Labels */
            .probootstrap-form .skt {
                font-size: 0.7rem;
                margin-bottom: 0.4rem;
            }

            /* Form controls */
            .probootstrap-form .form-control {
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }

            /* Date inputs */
            .probootstrap-form input[type="date"] {
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }

            /* Passenger inputs */
            .probootstrap-form input.number {
                width: 100%;
                padding: 0.7rem;
                font-size: 0.9rem;
            }

            .probootstrap-form .col-lg-4:has(input.number) .form-group.m-t-15 {
                display: block;
            }

            .probootstrap-form .col-lg-4:nth-of-type(5) .form-group.m-t-15::before,
            .probootstrap-form .col-lg-4:nth-of-type(6) .form-group.m-t-15::before,
            .probootstrap-form .col-lg-4:nth-of-type(7) .form-group.m-t-15::before {
                font-size: 0.7rem;
                top: -1.2rem;
            }

            .probootstrap-form .col-lg-6:has(input#c_num)::before {
                font-size: 0.75rem;
            }

            /* Submit buttons - side by side on mobile */
            .probootstrap-form .col-lg-12.d-flex {
                flex-direction: row;
                gap: 0.75rem;
            }

            .probootstrap-form .col-lg-6:has(#btnSubmit),
            .probootstrap-form .col-lg-6:has(#whatsapp_share) {
                width: 50% !important;
                max-width: 50% !important;
                flex: 0 0 50% !important;
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .probootstrap-form .col-lg-6:has(#whatsapp_share) {
                padding-left: 0;
                padding-right: 0.5rem;
            }

            .probootstrap-form .col-lg-6:has(#btnSubmit) {
                padding-left: 0.5rem;
                padding-right: 0;
            }

            .probootstrap-form .btn-arrow {
                width: 100% !important;
                padding: 0.6rem 1rem !important;
                font-size: 0.85rem !important;
                min-width: auto !important;
            }

            /* Select2 responsive */
            .probootstrap-form .select2-container {
                width: 100% !important;
            }

            .probootstrap-form .select2-container--default .select2-selection--single {
                height: auto;
                min-height: 45px;
            }

            .probootstrap-form .select2-container--default .select2-selection--single .select2-selection__rendered {
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }

            /* Calendar icon adjustments */
            .probootstrap-form .icon.ion-calendar,
            .probootstrap-form .form-group.m-t-15:has(input[type="date"]):not(:has(.icon))::after {
                right: 10px;
                font-size: 1rem;
            }
        }

        /* Tablet responsive (768px - 991px) */
        @media (min-width: 577px) and (max-width: 991px) {
            .probootstrap-form {
                padding: 1.5rem !important;
                padding-top: 3rem !important;
            }

            .search-card-overlay .col-lg-8 {
                max-width: 100%;
            }

            .probootstrap-form .row > .col-lg-6 {
                width: 50% !important;
                flex: 0 0 50% !important;
            }

            .probootstrap-form .row > .col-lg-4 {
                width: 33.333% !important;
                flex: 0 0 33.333% !important;
            }

            .probootstrap-form .row > .col-lg-3 {
                width: 25% !important;
                flex: 0 0 25% !important;
            }

            .probootstrap-form .col-lg-12.d-flex {
                flex-direction: row;
                gap: 1rem;
            }

            .probootstrap-form .col-lg-6:has(#btnSubmit),
            .probootstrap-form .col-lg-6:has(#whatsapp_share) {
                width: 50% !important;
                flex: 0 0 50% !important;
            }
        }

        /* Select2 Dropdown Styling to Match Image Design */
        .probootstrap-form .select2-container--default .select2-selection--single {
            height: auto;
            min-height: auto;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0;
            background: white;
            transition: all 0.3s ease;
        }

        .probootstrap-form .select2-container--default .select2-selection--single .select2-selection__rendered {
            padding: 0.75rem 1rem;
            padding-right: 2rem;
            line-height: 1.5;
            color: #333;
            font-size: 0.95rem;
        }

        .probootstrap-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
            color: #999;
        }

        .probootstrap-form .select2-container--default .select2-selection--single:focus,
        .probootstrap-form .select2-container--default.select2-container--focus .select2-selection--single {
            border-color: #28a745;
            outline: none;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
        }

        .probootstrap-form .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 100%;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
        }

        .probootstrap-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #666 transparent transparent transparent;
            border-width: 5px 4px 0 4px;
            margin-top: -2px;
            margin-left: -4px;
        }

        /* Select2 Dropdown */
        .select2-container--default .select2-dropdown {
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-top: 4px;
        }

        .select2-container--default .select2-results__option {
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            color: #333;
        }

        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: #28a745;
            color: white;
        }

        .select2-container--default .select2-results__option[aria-selected=true] {
            background-color: #f0f0f0;
            color: #333;
        }

        .select2-container--default .select2-search--dropdown .select2-search__field {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 0.5rem;
            font-size: 0.95rem;
        }

        .select2-container--default .select2-search--dropdown .select2-search__field:focus {
            border-color: #28a745;
            outline: none;
        }

        /* Active state - Green border for focused field */
        .select2-container--default.select2-container--open .select2-selection--single {
            border-color: #28a745;
        }

        /* Inactive state - Gray border */
        .select2-container--default .select2-selection--single {
            border-color: #ddd;
        }

        .search-filters {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            align-items: center;
        }

        .filter-dropdown {
            background: #f8f9fa;
            border: none;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--ac-black);
        }

        .location-box {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            flex: 1;
            position: relative;
        }

        .exchange-icon {
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            color: var(--ac-blue);
        }

        .input-label {
            display: block;
            color: var(--ac-blue);
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        .date-input {
            border: none;
            border-bottom: 2px solid #ddd;
            width: 100%;
            padding: 8px 0;
            font-weight: 600;
            outline: none;
        }

        .btn-search-ac {
            background-color: var(--ac-blue);
            color: white;
            border-radius: 25px;
            padding: 10px 40px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
        }

        /* Mobile navbar styles - kept for compatibility but not used */
        .mobile-navbar {
            display: none;
        }

        /* Bottom Navigation Styling */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--ac-black);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            z-index: 1100;
            border-top: 1px solid #333;
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #999;
            text-decoration: none;
            font-size: 0.7rem;
            font-weight: 600;
            flex: 1;
        }

        .bottom-nav-item i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .bottom-nav-item.active {
            color: var(--ac-main);
            border-top: 3px solid var(--ac-main);
            margin-top: -8px;
            padding-top: 5px;
        }

        /* Refined mobile search card */
        .mobile-search-blocks {
            display: flex;
            gap: 10px;
            position: relative;
            margin-bottom: 20px;
        }

        .mobile-location-block {
            background: white;
            border-radius: 12px;
            padding: 20px 10px;
            flex: 1;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .mobile-exchange-btn {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
            color: var(--ac-blue);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Mobile Sidebar Styles */
        .mobile-nav-menu {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            color: #4a4a4a;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-nav-item i {
            font-size: 1.1rem;
            color: #4a4a4a;
            width: 20px;
            text-align: center;
        }

        .mobile-nav-item:hover {
            background: #f8f9fa;
            color: var(--ac-main);
        }

        .mobile-nav-item:hover i {
            color: var(--ac-main);
        }

        .mobile-nav-item.active {
            background: #fff5eb;
            color: var(--ac-main);
        }

        .mobile-nav-item.active i {
            color: var(--ac-main);
        }

        .offcanvas {
            z-index: 1045;
        }

        .offcanvas-header {
            border-bottom: 1px solid #e9ecef;
            padding: 1.5rem;
        }

        .offcanvas-title {
            font-weight: 700;
            color: var(--ac-black);
        }

        .offcanvas-body {
            padding: 1rem;
        }

        @media (max-width: 992px) {
            #sidebar { display: none; }
            #content { margin-left: 0 !important; }
            .search-card { padding: 1rem; box-shadow: none; background: transparent; }
            .hero-area { padding: 0rem 0rem !important; }
            .desktop-search-rows { display: none; }

            /* Responsive Navbar Styles */
            .top-brown-strip {
                height: 3px;
            }

            .orange-header-bar {
                height: auto;
                min-height: 40px;
                padding: 0.5rem 1rem;
                flex-wrap: wrap;
            }

            .orange-header-left {
                width: 100%;
                margin-bottom: 0.5rem;
            }

            .orange-header-right {
                width: 100%;
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .orange-nav-link {
                font-size: 0.8rem;
            }

            .nav-divider {
                display: none;
            }

            .social-icons-group {
                margin-left: 0;
                margin-top: 0.5rem;
            }

            .main-navbar {
                top: auto;
                height: 60px;
                padding: 0 1rem;
            }

            .navbar-toggler-mobile {
                display: block;
            }

            .main-logo img {
                height: 25px;
                width: auto;
                max-width: 200px;
            }

            .main-nav-right {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .orange-header-bar {
                padding: 0.5rem;
            }

            .email-text {
                font-size: 0.75rem;
            }

            .orange-nav-link {
                font-size: 0.7rem;
            }

            .main-navbar {
                height: 55px;
                padding: 0 0.75rem;
            }

            .main-logo img {
                height: 22px;
            }
        }

        @media (min-width: 993px) {
            /* Removed body flex-direction row to allow navbar to be top-level full-width block */
            .bottom-nav, .mobile-search-blocks { display: none !important; }
            .navbar-toggler-mobile { display: none !important; }
        }

        /* Added footer specific styling */
        .main-footer {
            background-color: var(--ac-black);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

        .footer-heading {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--ac-main);
        }

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

        .social-links a {
            color: white;
            font-size: 1.25rem;
            transition: transform 0.2s;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            color: var(--ac-main);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 3rem;
            font-size: 0.8rem;
            color: #888;
        }

        /* Features Section - Banner ke just neeche */
        .features-section {
            padding: 3rem 0;
            margin-top: -2rem;
            position: relative;
            z-index: 15;
            background-color: #f8f9fa;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .feature-item {
            padding: 1rem;
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-3px);
        }

        .feature-icon-wrapper {
            flex-shrink: 0;
            padding: 0.75rem;
            background: white;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .feature-item:hover .feature-icon-wrapper {
            background: #fff5eb;
            box-shadow: 0 4px 12px rgba(252, 81, 27, 0.2);
        }

        .feature-item h5 {
            color: var(--ac-black);
            font-size: 1rem;
            margin: 0;
        }

        .feature-item p {
            margin: 0;
        }

        .feature-item .text-primary {
            color: var(--ac-main);
        }

        .feature-item .text-success {
            color: #28a745;
        }

        .feature-item .text-info {
            color: #17a2b8;
        }

        @media (max-width: 768px) {
            .features-section {
                margin-top: -1rem;
                padding: 2rem 0;
            }

            .feature-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .feature-icon-wrapper i {
                font-size: 1.5rem !important;
            }

            .feature-item h5 {
                font-size: 0.9rem;
            }
        }

        /* Top Routes Section - Via.com Style */
        .top-routes-section {
            padding: 4rem 0;
        }

        .route-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            margin: 0;
        }

        .route-card:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--ac-main);
        }

        .route-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 0;
            background: var(--ac-main);
            transition: height 0.6s ease;
            z-index: 1;
        }

        .route-card:hover::after {
            height: 100%;
        }

        .route-icon-wrapper {
            flex-shrink: 0;
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .route-icon-wrapper i {
            font-size: 1.8rem;
            color: var(--ac-main);
            transition: all 0.3s ease;
        }

        .route-card:hover .route-icon-wrapper {
            background: var(--ac-main);
        }

        .route-card:hover .route-icon-wrapper i {
            color: white;
            transform: scale(1.1);
        }

        .route-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .route-name {
            font-size: 1rem;
            font-weight: 700;
            color: #333;
            margin: 0;
            transition: color 0.3s ease;
        }

        .route-card:hover .route-name {
            color: var(--ac-main);
        }

        .route-card .click-here-text {
            color: #666;
            font-size: 0.85rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .route-card:hover .click-here-text {
            color: var(--ac-main);
        }

        /* Top Destinations Section - Via.com Style */
        .top-destinations-section {
            padding: 4rem 0;
        }

        .destination-card {
            display: block;
            transition: transform 0.3s ease;
        }

        .destination-card:hover {
            transform: translateY(-5px);
        }

        .destination-image-wrapper {
            width: 100%;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .destination-card:hover .destination-image-wrapper {
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .destination-card h6 {
            color: var(--ac-black);
            font-size: 0.95rem;
            margin: 0;
        }

        @media (max-width: 768px) {
            .route-image-wrapper {
                height: 150px;
            }

            .destination-image-wrapper {
                height: 100px;
            }

            /* Mobile Route Card Styles */
            .top-routes-section {
                padding: 2.5rem 0;
            }

            .top-routes-section .container {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .top-routes-section .row {
                margin-left: -0.5rem;
                margin-right: -0.5rem;
                display: flex;
                flex-wrap: wrap;
            }

            .top-routes-section .row > .col-6 {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
                flex: 0 0 50%;
                max-width: 50%;
                width: 50% !important;
            }

            .route-card {
                padding: 0.75rem;
                gap: 0.75rem;
                min-height: auto;
                flex-wrap: nowrap;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                display: flex;
            }

            .route-icon-wrapper {
                width: 50px;
                height: 50px;
                min-width: 50px;
                flex-shrink: 0;
            }

            .route-icon-wrapper i {
                font-size: 1.4rem;
            }

            .route-name {
                font-size: 0.85rem;
                line-height: 1.3;
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

            .route-card .click-here-text {
                font-size: 0.75rem;
            }

            .route-info {
                gap: 0.2rem;
                min-width: 0;
                flex: 1;
                overflow: hidden;
            }
        }

        @media (max-width: 576px) {
            .top-routes-section {
                padding: 2rem 0;
            }

            .top-routes-section .container {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .top-routes-section .row {
                margin-left: -0.375rem;
                margin-right: -0.375rem;
                display: flex;
                flex-wrap: wrap;
            }

            .top-routes-section .row > .col-6 {
                padding-left: 0.375rem;
                padding-right: 0.375rem;
                flex: 0 0 50%;
                max-width: 50%;
                width: 50% !important;
            }

            .route-card {
                padding: 0.65rem;
                gap: 0.65rem;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                display: flex;
            }

            .route-icon-wrapper {
                width: 45px;
                height: 45px;
                min-width: 45px;
            }

            .route-icon-wrapper i {
                font-size: 1.2rem;
            }

            .route-name {
                font-size: 0.8rem;
                line-height: 1.2;
            }

            .route-card .click-here-text {
                font-size: 0.7rem;
            }

            /* Ensure proper touch targets on mobile */
            .route-card:active {
                transform: scale(0.98);
            }
        }

        /* Added trending styles for new group booking sections */
        .group-section {
            padding: 3rem 0;
            background-color: #fff;
        }

        .group-section .col-md-4 {
            margin-bottom: 2rem;
        }

        .section-tag {
            color: var(--ac-main);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 2px;
        }

        .benefit-card {
            position: relative;
            height: 230px;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 3px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 50px rgba(252, 81, 27, 0.3);
            border-color: var(--ac-main);
        }

        .benefit-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .benefit-card:hover .benefit-card-bg {
            transform: scale(1.1);
        }

        .benefit-card-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
            transition: background 0.4s ease;
        }

        .benefit-card:hover .benefit-card-bg::after {
            background: linear-gradient(180deg, rgba(252, 81, 27, 0.3) 0%, rgba(0,0,0,0.8) 100%);
        }

        .benefit-content-overlay {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem 0.65rem;
            text-align: center;
            color: white;
        }

        .benefit-card h5 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
            text-shadow: 0 3px 15px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .benefit-card:hover h5 {
            transform: translateY(-5px);
            text-shadow: 0 5px 20px rgba(252, 81, 27, 0.6);
        }

        .benefit-card p {
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            margin: 0;
            font-size: 0.9rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
        }

        .benefit-card:hover p {
            color: rgba(255, 255, 255, 1);
        }

        @media (max-width: 992px) {
            .benefit-card {
                height: auto;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 768px) {
            .benefit-card {
                height: auto;
            }
            .btn-req{
                font-size: 0.8rem;
                border: 0px solid var(--ac-main);
                padding: 0.5rem 1rem;
            }
            .btn-read-more{
                padding: 6px 12px !important;
                font-size: 0.8rem !important;
                
            }
            .group-section {
                padding: 1.5rem 0;
                background-color: #fff;
            }

            .benefit-card h5 {
                font-size: 1.1rem;
            }

            .benefit-card p {
                font-size: 0.85rem;
            }

            .benefit-content-overlay {
                padding: 1.5rem 1rem;
            }
        }

        /* Modern Group Section Design */
        .group-section-modern {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .group-section-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(252, 81, 27, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .service-visual-wrapper {
            position: relative;
            z-index: 1;
        }

        .service-visual-wrapper img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

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

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--ac-main);
        }

        /* Modern Service Cards */
        .service-card-modern {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .service-card-modern:hover {
            box-shadow: 0 12px 40px rgba(252, 81, 27, 0.2);
            transform: translateY(-10px);
        }

        .service-img-wrapper-modern {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .service-img-wrapper-modern img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card-modern:hover .service-img-wrapper-modern img {
            transform: scale(1.15);
        }

        .service-content-modern {
            padding: 1.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: white;
        }

        .service-card-modern h5 {
            color: var(--ac-black);
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .service-card-modern:hover h5 {
            color: var(--ac-main);
        }

        .service-card-modern p {
            color: #666;
            line-height: 1.6;
            margin: 0;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .group-section-modern {
                padding: 4rem 0;
            }

            .service-img-wrapper-modern {
                height: 180px;
            }

            .service-content-modern {
                padding: 1.5rem;
            }

            .stat-item h3 {
                font-size: 2rem;
            }
        }

        .airline-logo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            align-items: stretch;
        }

        .airline-logo-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .airline-logo-item::after {
            content: '';
            color: #0000;
            background-color: var(--ac-main);
            width: 4px;
            height: 0;
            transition: all 0.6s ease;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            z-index: 1;
        }

        .airline-logo-item:hover {
            box-shadow: 0 8px 25px rgba(252, 81, 27, 0.15);
            border-color: var(--ac-main);
            transform: translateY(-5px);
        }

        .airline-logo-item:hover::after {
            height: 100%;
        }

        .airline-logo-wrapper {
            flex-shrink: 0;
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 10px;
            position: relative;
            z-index: 2;
        }

        .airline-logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(30%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .airline-logo-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        .airline-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .airline-name {
            color: var(--ac-black);
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            transition: color 0.3s ease;
        }

        .airline-logo-item:hover .airline-name {
            color: var(--ac-main);
        }

        .click-here-text {
            color: #666;
            font-size: 0.85rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .airline-logo-item:hover .click-here-text {
            color:var(--ac-main);
        }
        .btn-req{
            background: var(--ac-main);
            color: white;
            border: 2px solid var(--ac-main);
        }

        /* Read More Button */
        .btn-read-more {
            display: inline-block;
            background: var(--ac-main);
            color: white;
            padding: 12px 35px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--ac-main);
        }

        .btn-read-more:hover {
            background: white;
            color: var(--ac-main);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(252, 81, 27, 0.3);
        }

        @media (max-width: 992px) {
            .airline-logo-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .airline-logo-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .airline-logo-item {
                padding: 1rem;
                gap: 1rem;
            }

            .airline-logo-wrapper {
                width: 60px;
                height: 60px;
            }

            .airline-name {
                font-size: 1rem;
            }
        }

        .promo-banner {
            background: linear-gradient(135deg, var(--ac-black) 0%, #333 100%);
            color: white;
            border-radius: 20px;
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        .promo-banner::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: var(--ac-main);
            opacity: 0.1;
            border-radius: 50%;
        }

        /* added styles for "More Services" and "About Provider" */
        /* More Services Section */
        .more-services-section {
            padding: 5rem 0;
            background: #f5f1e8;
        }

        .more-services-card {
            background: #fff;
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            text-align: left;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .more-services-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .service-illustration {
            width: 100%;
            height: 200px;
            margin-bottom: 1.5rem;
            position: relative;
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .service-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        .highlight-text {
            color: #e91e63;
            font-weight: 600;
        }

        /* Illustration 1: No Hidden Charges - Character behind door */
        .illustration-no-hidden {
            background: #f0f0f0;
            display: flex;
            align-items: center;
            padding: 20px;
        }

        .illustration-door {
            position: absolute;
            right: 25%;
            top: 0;
            width: 100px;
            height: 100%;
            background: var(--ac-main);
            border-radius: 0 8px 8px 0;
        }

        .illustration-door::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 15px;
            width: 30px;
            height: 40px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }

        .illustration-character {
            position: absolute;
            right: 20%;
            top: 30%;
            width: 70px;
            height: 70px;
            background: var(--ac-main);
            border-radius: 50%;
            z-index: 2;
        }

        .illustration-character::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 18px;
            width: 18px;
            height: 18px;
            background: #fff;
            border-radius: 50%;
        }

        .illustration-character::after {
            content: '';
            position: absolute;
            top: 22px;
            left: 12px;
            width: 45px;
            height: 6px;
            background: #fff;
            border-radius: 3px;
        }

        /* Illustration 2: Connect With Us - Two characters communicating */
        .illustration-connect {
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .connect-character {
            position: absolute;
            width: 55px;
            height: 55px;
            background: var(--ac-main);
            border-radius: 50%;
        }

        .connect-character::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 15px;
            width: 15px;
            height: 15px;
            background: #fff;
            border-radius: 50%;
        }

        .connect-character::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 10px;
            width: 35px;
            height: 5px;
            background: #fff;
            border-radius: 3px;
        }

        .connect-character.char-1 {
            top: 20%;
            left: 20%;
        }

        .connect-character.char-2 {
            bottom: 20%;
            right: 20%;
        }

        .connect-line {
            position: absolute;
            top: 50%;
            left: 25%;
            right: 25%;
            height: 2px;
            border-top: 2px dashed var(--ac-main);
            transform: translateY(-50%);
        }

        .speech-bubble {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
        }

        .speech-bubble.bubble-1 {
            top: 15%;
            left: 30%;
        }

        .speech-bubble.bubble-2 {
            bottom: 15%;
            right: 30%;
        }

        /* Illustration 3: Secured Payments - Character behind counter with rupee */
        .illustration-secured {
            background: #e3f2fd;
            position: relative;
        }

        .secured-counter {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: #9e9e9e;
            border-radius: 0 0 8px 8px;
        }

        .secured-character {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 65px;
            height: 65px;
            background: var(--ac-main);
            border-radius: 50%;
            z-index: 2;
        }

        .secured-character::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 12px;
            width: 40px;
            height: 35px;
            background: #2196f3;
            border-radius: 50% 50% 0 0;
        }

        .secured-character::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 20px;
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            z-index: 3;
        }

        .rupee-symbol {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffc107;
            z-index: 3;
        }

        /* Illustration 4: Cheap Group AirFare - Passports and document */
        .illustration-cheap-fare {
            background: #f5f5f5;
            position: relative;
            padding: 20px;
        }

        .passport-stack {
            position: absolute;
            left: 8%;
            top: 50%;
            transform: translateY(-50%);
        }

        .passport {
            width: 45px;
            height: 65px;
            background: #2196f3;
            border-radius: 3px;
            position: relative;
            margin-bottom: -35px;
        }

        .passport-1 {
            z-index: 3;
        }

        .passport-2 {
            z-index: 2;
            margin-left: 4px;
        }

        .passport-3 {
            z-index: 1;
            margin-left: 8px;
        }

        .passport::before {
            content: '✈';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 18px;
            height: 18px;
            background: #ffc107;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            color: #fff;
        }

        .document-paper {
            position: absolute;
            right: 12%;
            top: 15%;
            width: 90px;
            height: 75px;
            background: #fff;
            border-radius: 3px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            padding: 8px;
        }

        .document-paper::before {
            content: 'Group Booking';
            position: absolute;
            top: 8px;
            left: 8px;
            font-size: 0.55rem;
            font-weight: 700;
            color: #333;
        }

        .document-paper::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 8px;
            right: 8px;
            height: 1px;
            background: #ddd;
        }

        .document-paper {
            background-image: 
                linear-gradient(to bottom, transparent 20px, #ddd 20px, #ddd 21px, transparent 21px),
                linear-gradient(to bottom, transparent 28px, #ddd 28px, #ddd 29px, transparent 29px),
                linear-gradient(to bottom, transparent 36px, #ddd 36px, #ddd 37px, transparent 37px);
        }

        .guarantee-stamp {
            position: absolute;
            bottom: 12%;
            right: 18%;
            width: 45px;
            height: 45px;
            background: var(--ac-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.45rem;
            font-weight: 700;
            color: #fff;
            text-align: center;
            line-height: 1.1;
            padding: 2px;
        }

        .guarantee-stamp::before {
            content: 'GUARANTEED';
        }

        /* About Us Content Section Styles - Modern Design */
        .about-content-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 5rem 0;
        }

        /* Modern About Section */
        .about-section-modern {
            margin-bottom: 5rem;
        }

        .about-image-modern {
            position: relative;
            overflow: visible;
        }

        .about-image-modern img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

        .about-image-modern:hover img {
            transform: scale(1.02);
        }

        .about-badge-modern {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: #2c3e50;
            padding: 0.75rem 1.25rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .about-badge-modern i {
            font-size: 1.2rem;
            color: var(--ac-main);
        }

        .about-content-modern {
            padding: 2rem 0 2rem 2rem;
        }

        @media (max-width: 992px) {
            .about-content-modern {
                padding: 2rem 0;
            }
        }

        .section-tag {
            display: inline-block;
            background: transparent;
            color: var(--ac-main);
            padding: 0;
            border-radius: 0;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-title-modern {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-top: 1rem;
        }

        .about-text-modern {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #495057;
            margin-bottom: 0;
        }

        .about-stats-modern {
            display: flex;
            gap: 4rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }

        .stat-item-modern {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .mission-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .mission-feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #495057;
            font-size: 1rem;
        }

        .mission-feature-item i {
            color: var(--ac-main);
            font-size: 1.2rem;
        }

        /* Modern Service Cards */
        .service-card-modern {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(252, 81, 27, 0.1);
            height: 100%;
            text-align: center;
        }

        .service-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(252, 81, 27, 0.15);
            border-color: var(--ac-main);
        }

        .service-title-modern {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .service-description-modern {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Modern Benefit Cards */
        .why-choose-section-modern {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 4rem 0;
            border-radius: 30px;
            margin: 3rem 0;
        }

        .benefit-card-modern {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
            text-align: center;
        }

        .benefit-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(252, 81, 27, 0.15);
            border-color: var(--ac-main);
        }

        .benefit-icon-modern {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(252, 81, 27, 0.1) 0%, rgba(255, 107, 61, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .benefit-card-modern:hover .benefit-icon-modern {
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
        }

        .benefit-icon-modern i {
            font-size: 1.8rem;
            color: var(--ac-main);
            transition: color 0.3s ease;
        }

        .benefit-card-modern:hover .benefit-icon-modern i {
            color: white;
        }

        .benefit-title-modern {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.75rem;
        }

        .benefit-description-modern {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        /* Modern Process Timeline */
        .process-timeline-modern {
            position: relative;
            padding: 2rem 0;
        }

        .process-step-modern {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
            position: relative;
            text-align: center;
        }

        .process-step-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(252, 81, 27, 0.15);
            border-color: var(--ac-main);
        }

        .process-step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }

        .process-step-modern:hover .process-step-number {
            transform: scale(1.15) rotate(5deg);
        }

        .process-step-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .process-step-description {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .process-arrow {
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            color: var(--ac-main);
            font-size: 1.2rem;
        }

        .process-step-modern:last-child .process-arrow {
            display: none;
        }

        .section-header-modern {
            margin-bottom: 3rem;
        }

        .about-section {
            margin-bottom: 4rem;
        }

        .section-header {
            margin-bottom: 2.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            position: relative;
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
            margin: 0 auto;
            border-radius: 2px;
        }

        .about-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(252, 81, 27, 0.1);
        }

        .about-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .about-card .lead {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #495057;
        }

        /* Services Table Styles */
        .services-table-wrapper {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .services-table {
            margin-bottom: 0;
            border-collapse: separate;
            border-spacing: 0;
        }

        .services-table thead {
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
            color: white;
        }

        .services-table thead th {
            padding: 1rem 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
        }

        .services-table tbody tr {
            transition: all 0.3s ease;
        }

        .services-table tbody tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.01);
        }

        .services-table tbody td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #e9ecef;
            vertical-align: middle;
            color: #495057;
        }

        .services-table tbody tr:last-child td {
            border-bottom: none;
        }

        .services-table tbody td strong {
            color: #2c3e50;
            font-weight: 600;
        }

        /* Feature Cards Styles */
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(252, 81, 27, 0.1);
            text-align: center;
        }

        .feature-card:hover {
            box-shadow: 0 10px 35px rgba(252, 81, 27, 0.15);
            transform: translateY(-5px);
            border-color: var(--ac-main);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Process Cards Styles */
        .process-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(252, 81, 27, 0.1);
            text-align: center;
            position: relative;
            height: 100%;
        }

        .process-card:hover {
            box-shadow: 0 10px 35px rgba(252, 81, 27, 0.15);
            transform: translateY(-5px);
            border-color: var(--ac-main);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
        }

        .process-card:hover .process-number {
            transform: scale(1.15) rotate(5deg);
        }

        .process-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .process-description {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2rem;
            }

            .about-card .lead {
                font-size: 1rem;
            }

            .services-table-wrapper {
                padding: 1.5rem;
            }

            .services-table thead th,
            .services-table tbody td {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .more-services-section {
                padding: 3rem 0;
            }

            .more-services-card {
                padding: 1.5rem;
            }

            .service-illustration {
                height: 150px;
            }

            .service-title {
                font-size: 1.25rem;
            }

            .about-content-section {
                padding: 3rem 0;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .about-card {
                padding: 1.5rem !important;
            }

            .about-card .lead {
                font-size: 0.95rem;
            }

            .services-table-wrapper {
                padding: 1rem;
                overflow-x: auto;
            }

            .services-table {
                min-width: 600px;
            }

            .services-table thead th,
            .services-table tbody td {
                padding: 0.75rem;
                font-size: 0.85rem;
            }

            .feature-card,
            .process-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .feature-icon,
            .process-number {
                width: 60px;
                height: 60px;
                margin-bottom: 1rem;
            }

            .feature-icon i {
                font-size: 1.5rem;
            }

            .process-number {
                font-size: 1.5rem;
            }

            .feature-title,
            .process-title {
                font-size: 1.1rem;
            }

            .feature-description,
            .process-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.5rem;
            }

            .about-card {
                padding: 1.25rem !important;
            }

            .services-table-wrapper {
                padding: 0.75rem;
            }

            .services-table {
                min-width: 500px;
            }

            .feature-card,
            .process-card {
                padding: 1.25rem;
            }
        }

        .social-link-modern img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

        /* Client FAQs Section Modern - Simple Clean Design */
        .client-faqs-section-modern {
            background: #f5f5f5;
            padding: 4rem 0;
        }

        .client-faqs-heading-modern {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .client-faqs-list-modern {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .client-faq-item-modern {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .client-faq-question-modern {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.75rem;
            line-height: 1.5;
            text-align: left;
        }

        .client-faq-answer-modern {
            font-size: 1rem;
            font-weight: 400;
            color: #6c757d;
            line-height: 1.7;
            margin: 0;
            text-align: left;
        }

        /* Summary Section Modern - Simple Clean Design */
        .summary-section-modern {
            background: #f5f5f5;
            padding: 4rem 0;
        }

        .summary-heading-modern {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .summary-text-modern {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.8;
            color: #6c757d;
            margin-bottom: 0;
            text-align: left;
        }

        .summary-text-modern strong {
            color: #2c3e50;
            font-weight: 600;
        }

        /* Frequently Asked Section Modern - Enhanced Design */
        .frequently-asked-section-modern {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 5rem 0;
        }

        .frequently-asked-heading-modern {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.75rem;
            text-align: left;
            position: relative;
            padding-bottom: 1rem;
        }

        .frequently-asked-heading-modern::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
            border-radius: 2px;
        }

        .frequently-asked-subtitle-modern {
            font-size: 1.1rem;
            font-weight: 400;
            color: #6c757d;
            margin-bottom: 3rem;
            text-align: left;
            margin-top: 1rem;
        }

        /* Accordion Modern Styles - Matching Reference Site Design */
        .row.g-3 {
            margin-left: -0.75rem;
            margin-right: -0.75rem;
        }

        .row.g-3 > .col-6 {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }

        .accordion-item-modern {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            margin-bottom: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
        }

        .accordion-item-modern:hover {
            box-shadow: 0 4px 15px rgba(252, 81, 27, 0.1);
            border-color: rgba(252, 81, 27, 0.2);
        }

        .accordion-button-modern {
            background: white;
            color: #2c3e50;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 1.5rem 1.75rem;
            border: none;
            box-shadow: none;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: all 0.3s ease;
            width: 100%;
            text-align: left;
        }

        .accordion-button-modern:not(.collapsed) {
            background: rgba(252, 81, 27, 0.03);
            color: #2c3e50;
        }

        .accordion-button-modern:hover {
            background: rgba(252, 81, 27, 0.05);
            color: var(--ac-main);
        }

        .accordion-button-modern:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-button-modern::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.3s ease;
            filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
            margin-left: auto;
            flex-shrink: 0;
        }

        .accordion-button-modern:not(.collapsed)::after {
            transform: rotate(180deg);
            filter: brightness(0) saturate(100%) invert(50%) sepia(95%) saturate(2000%) hue-rotate(350deg) brightness(100%) contrast(100%);
        }

        .accordion-button-modern:hover::after {
            filter: brightness(0) saturate(100%) invert(50%) sepia(95%) saturate(2000%) hue-rotate(350deg) brightness(100%) contrast(100%);
        }

        .faq-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: var(--ac-main);
            color: white;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(252, 81, 27, 0.2);
        }

        .accordion-button-modern:not(.collapsed) .faq-number {
            background: var(--ac-main);
            box-shadow: 0 4px 12px rgba(252, 81, 27, 0.3);
        }

        .accordion-button-modern:hover .faq-number {
            background: #ff6b3d;
            transform: scale(1.05);
        }

        .faq-question-text {
            flex: 1;
            text-align: left;
            line-height: 1.5;
        }

        .accordion-body-modern {
            padding: 0 1.75rem 1.75rem 1.75rem;
            padding-left: calc(38px + 1.25rem + 1.75rem);
            color: #6c757d;
            line-height: 1.8;
            font-size: 1rem;
            background: white;
        }

        /* Responsive Styles for FAQ Sections */
        @media (max-width: 768px) {
            .client-faqs-section-modern,
            .frequently-asked-section-modern {
                padding: 3rem 0;
            }

            .client-faqs-heading-modern {
                font-size: 1.75rem;
                margin-bottom: 2rem;
            }

            .client-faqs-list-modern {
                gap: 1.5rem;
            }

            .client-faq-question-modern {
                font-size: 1rem;
            }

            .client-faq-answer-modern {
                font-size: 0.95rem;
            }

            .frequently-asked-heading-modern {
                font-size: 1.75rem;
                margin-bottom: 0.5rem;
            }

            .frequently-asked-subtitle-modern {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .row.g-3 {
                margin-left: -0.5rem;
                margin-right: -0.5rem;
            }

            .row.g-3 > .col-6 {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }

            .accordion-button-modern {
                font-size: 1rem;
                padding: 1.25rem 1.5rem;
            }

            .faq-number {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
            }

            .accordion-body-modern {
                padding-left: calc(34px + 1rem + 1.5rem);
                padding-right: 1.5rem;
                padding-bottom: 1.25rem;
                font-size: 0.95rem;
            }

            .summary-heading-modern {
                font-size: 1.75rem;
                margin-bottom: 1.25rem;
            }

            .summary-text-modern {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .client-faqs-section-modern,
            .frequently-asked-section-modern {
                padding: 2.5rem 0;
            }

            .client-faqs-heading-modern {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .client-faqs-list-modern {
                gap: 1.25rem;
            }

            .client-faq-question-modern {
                font-size: 0.95rem;
            }

            .client-faq-answer-modern {
                font-size: 0.9rem;
            }

            .frequently-asked-heading-modern {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }

            .frequently-asked-subtitle-modern {
                font-size: 0.9rem;
                margin-bottom: 1.75rem;
            }

            .row.g-3 {
                margin-left: -0.375rem;
                margin-right: -0.375rem;
            }

            .row.g-3 > .col-6 {
                padding-left: 0.375rem;
                padding-right: 0.375rem;
                width: 100% !important;
                flex: 0 0 100% !important;
                max-width: 100% !important;
            }

            .accordion-button-modern {
                font-size: 0.95rem;
                padding: 1rem 1.25rem;
                flex-wrap: wrap;
            }

            .faq-number {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }

            .accordion-body-modern {
                padding-left: calc(30px + 0.75rem + 1.25rem);
                padding-right: 1.25rem;
                padding-bottom: 1rem;
                font-size: 0.9rem;
            }

            .summary-heading-modern {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .summary-text-modern {
                font-size: 0.9rem;
            }
        }

        .about-provider-content {
            border-left: 5px solid #f18f1e;
            padding-left: 2rem;
        }

        @media (max-width: 991px) {
            .orange-wave { width: 100%; height: 40%; border-top-left-radius: 50%; border-top-right-radius: 50%; }
            .main-circle { width: 300px; height: 300px; margin: 2rem auto; }
            .sub-circle { width: 180px; height: 180px; bottom: -30px; left: 0; }
        }
/* Partners Section */
  .partners-section {
    padding: 20px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }

  .partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  .partners-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  
  .client-col-modern {
    text-align: center;
    padding: 15px;
  }
  
  .client-logo-modern {
    width: 100%;
    max-width: 130px;
    height: auto;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .client-logo-modern:hover {
    filter: grayscale(0%) brightness(1.1);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(74, 144, 226, 0.5);
  }

  /* Frequently Asked Section - Modern Design */
  .frequently-asked-section-modern {
    padding: 4rem 0;
    background: #f8f9fa;
  }

  .frequently-asked-header-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }

  .frequently-asked-heading-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
  }

  .frequently-asked-heading-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--ac-main) 0%, #ff6b3d 100%);
    border-radius: 2px;
  }

  .frequently-asked-subtext-modern {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
  }

  /* Responsive Design for Frequently Asked Section */
  @media (max-width: 992px) {
    .frequently-asked-section-modern {
      padding: 3rem 0;
    }

    .frequently-asked-heading-modern {
      font-size: 2rem;
    }
  }

  @media (max-width: 768px) {
    .frequently-asked-section-modern {
      padding: 2.5rem 0;
    }

    .frequently-asked-heading-modern {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
    }

    .frequently-asked-subtext-modern {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 576px) {
    .frequently-asked-section-modern {
      padding: 2rem 0;
    }

    .frequently-asked-heading-modern {
      font-size: 1.5rem;
    }

    .frequently-asked-subtext-modern {
      font-size: 0.9rem;
    }
  }
  