
        :root {
            --primary: #1E3A8A;
            --secondary: #3B82F6;
            --light-blue: #BFDBFE;
            --snow: #F1F5F9;
            --white: #ffffff;
            --dark: #0F172A;
            --gray: #64748B;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

        a { text-decoration: none; transition: all 0.3s ease; }

        img { max-width: 100%; height: 100%; object-fit: cover; }

        /* ===== NAVBAR ===== */
        .navbar {
            padding: 20px 0;
            background: transparent !important;
            position: relative;
            z-index: 1000;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-brand .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
        }
        .navbar-nav .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 18px !important;
            border-radius: 8px;
            position: relative;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
            background: rgba(59, 130, 246, 0.08);
        }
        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
            color: #fff !important;
            padding: 10px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5) !important;
            color: #fff !important;
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, var(--snow) 0%, var(--light-blue) 40%, #DBEAFE 70%, var(--snow) 100%);
            overflow: hidden;
            padding: 100px 0 80px;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
            border-radius: 50%;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 58, 138, 0.1), transparent 70%);
            border-radius: 50%;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 24px;
        }
        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: #22C55E;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }
        .hero-title {
            font-size: 3.8rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        .hero-title span {
            background: linear-gradient(135deg, var(--secondary), #60A5FA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 1.15rem;
            color: var(--gray);
            margin-bottom: 36px;
            max-width: 540px;
            font-weight: 400;
        }
        .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
            color: #fff;
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--primary);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--light-blue);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .hero-image-wrap {
            position: relative;
        }
        .hero-image-wrap img {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(30, 58, 138, 0.15);
        }
        .hero-float-card {
            position: absolute;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 3s ease-in-out infinite;
        }
        .hero-float-card.card-1 { top: 10%; left: -40px; }
        .hero-float-card.card-2 { bottom: 15%; right: -30px; animation-delay: 1.5s; }
        .hero-float-card .icon-box {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
        }
        .hero-float-card .card-text-sm { font-size: 0.75rem; color: var(--gray); }
        .hero-float-card .card-text-lg { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ===== SECTION COMMON ===== */
        .section-padding { padding: 100px 0; }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--snow);
            color: var(--secondary);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
            border: 1px solid var(--light-blue);
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray);
            max-width: 600px;
        }

        /* ===== ABOUT ===== */
        .about-section { background: var(--white); }
        .about-image-wrap {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }
        .about-image-wrap img {
            border-radius: 24px;
            min-height: 450px;
        }
        .about-exp-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 20px 28px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
        }
        .about-exp-badge .number { font-size: 2.5rem; font-weight: 900; line-height: 1; }
        .about-exp-badge .text { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }
        .about-desc {
            color: var(--gray);
            font-size: 0.98rem;
            line-height: 1.85;
        }
        .about-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }
        .about-list li {
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--dark);
        }
        .about-list li i { color: var(--secondary); font-size: 1.1rem; }
        .btn-read-more {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            padding: 12px 30px;
            border: 2px solid var(--primary);
            border-radius: 50px;
        }
        .btn-read-more:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ===== COUNTER ===== */
        .counter-section {
            background: linear-gradient(135deg, var(--primary), #1E40AF, var(--secondary));
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .counter-item {
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }
        .counter-item .count-number {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 8px;
        }
        .counter-item .count-label {
            font-size: 0.95rem;
            font-weight: 400;
            opacity: 0.85;
        }

        /* ===== VISION MISSION ===== */
        .vm-section { background: var(--snow); }
        .vm-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px 36px;
            height: 100%;
            border: 1px solid var(--light-blue);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 100%;
            border-radius: 4px 0 0 4px;
        }
        .vm-card.vision::before { background: linear-gradient(180deg, var(--primary), var(--secondary)); }
        .vm-card.mission::before { background: linear-gradient(180deg, var(--secondary), #60A5FA); }
        .vm-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.12);
        }
        .vm-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 24px;
        }
        .vm-card.vision .vm-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
        .vm-card.mission .vm-icon { background: linear-gradient(135deg, var(--secondary), #60A5FA); }
        .vm-card h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; }
        .vm-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; }

        /* ===== WHY CHOOSE US ===== */
        .why-section { background: var(--white); }
        .why-feature {
            display: flex;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid var(--snow);
        }
        .why-feature:last-child { border-bottom: none; }
        .why-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(191, 219, 254, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
        }
        .why-feature h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
        .why-feature p { font-size: 0.88rem; color: var(--gray); margin: 0; }
        .why-image-wrap {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }
        .why-image-wrap img {
            border-radius: 24px;
            min-height: 500px;
        }
        .why-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px 30px;
            background: linear-gradient(transparent, rgba(30, 58, 138, 0.85));
            border-radius: 0 0 24px 24px;
            color: #fff;
        }
        .why-image-overlay h4 { font-weight: 700; margin-bottom: 8px; }
        .why-image-overlay p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

        /* ===== WORK PROCESS ===== */
        .process-section {
            background: linear-gradient(180deg, var(--snow), var(--white));
            position: relative;
        }
        .process-step {
            position: relative;
            text-align: center;
            padding: 30px 20px;
        }
        .process-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
        }
        .process-connector {
            position: absolute;
            top: 65px;
            left: calc(50% + 45px);
            width: calc(100% - 10px);
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--light-blue));
            z-index: 1;
        }
        .process-step:last-child .process-connector { display: none; }
        .process-step h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .process-step p { font-size: 0.88rem; color: var(--gray); max-width: 220px; margin: 0 auto; }
        .process-icon-wrap {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: var(--snow);
            border: 1px solid var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.3rem;
            color: var(--secondary);
        }

        /* ===== BOOKING FORM ===== */
        .booking-section {
            background: linear-gradient(135deg, var(--primary), #1E40AF, var(--secondary));
            position: relative;
            overflow: hidden;
        }
        .booking-section::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
            border-radius: 50%;
        }
        .booking-form-wrap {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            padding: 48px 40px;
            position: relative;
            z-index: 2;
        }
        .booking-form-wrap .section-title { color: var(--primary); }
        .booking-form-wrap .section-subtitle { color: var(--gray); }
        .booking-form .form-control,
        .booking-form .form-select {
            border: 2px solid var(--light-blue);
            border-radius: 14px;
            padding: 13px 18px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s;
            background: var(--snow);
        }
        .booking-form .form-control:focus,
        .booking-form .form-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
            background: #fff;
        }
        .booking-form .form-label {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .booking-form .btn-submit {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            width: 100%;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
        }
        .booking-form .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
        }
        .booking-info { color: #fff; position: relative; z-index: 2; }
        .booking-info h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
        .booking-info p { opacity: 0.9; font-size: 1.05rem; line-height: 1.8; }
        .booking-info-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }
        .booking-info-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            font-size: 1rem;
            font-weight: 500;
        }
        .booking-info-list li .bi {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        /* ===== SERVICES ===== */
        .services-section { background: var(--snow); }
        .service-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid var(--light-blue);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 60px rgba(30, 58, 138, 0.12);
        }
        .service-card-img {
            height: 350px;
            overflow: hidden;
        }
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .service-card:hover .service-card-img img {
            transform: scale(1.08);
        }
        .service-card-body {
            padding: 28px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card-body h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .service-card-body p {
            font-size: 0.92rem;
            color: var(--gray);
            line-height: 1.75;
            flex: 1;
        }
        .btn-service-read {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.92rem;
            display: block;
            margin: auto;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 10px 24px;
            border: 2px solid var(--light-blue);
            border-radius: 50px;
            transition: all 0.3s;
            width:50%;

        }
        .btn-service-read:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* ===== REVIEWS ===== */
        .reviews-section { background: var(--white); }
        .review-card {
            background: var(--snow);
            border-radius: 24px;
            padding: 32px 28px;
            height: 100%;
            border: 1px solid var(--light-blue);
            transition: all 0.4s ease;
            position: relative;
        }
        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
        }
        .review-card .quote-icon {
            position: absolute;
            top: 24px;
            right: 24px;
            font-size: 2.5rem;
            color: var(--light-blue);
            line-height: 1;
        }
        .review-stars { color: #F59E0B; font-size: 0.95rem; margin-bottom: 16px; }
        .review-text {
            font-size: 0.93rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--light-blue);
        }
        .review-author h6 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .review-author span {
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* ===== FAQ ===== */
        .faq-section { background: var(--snow); }
        .accordion-item {
            border: 1px solid var(--light-blue) !important;
            border-radius: 16px !important;
            margin-bottom: 14px;
            overflow: hidden;
        }
        .accordion-button {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--dark);
            background: var(--white);
            padding: 20px 24px;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            background: var(--white);
            color: var(--primary);
        }
        .accordion-button::after {
            background-image: none;
            content: '\F282';
            font-family: 'bootstrap-icons';
            font-size: 1rem;
            color: var(--secondary);
            width: auto;
            height: auto;
            transition: transform 0.3s;
        }
        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        .accordion-body {
            font-size: 0.93rem;
            color: var(--gray);
            line-height: 1.8;
            padding: 0 24px 20px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #1E40AF, var(--secondary));
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
            border-radius: 50%;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -80px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
            border-radius: 50%;
        }
        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }
        .cta-section p {
            color: rgba(255,255,255,0.85);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 32px;
            position: relative;
            z-index: 2;
        }
        .btn-cta {
            background: #fff;
            color: var(--primary);
            padding: 16px 44px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            position: relative;
            z-index: 2;
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
            color: var(--primary);
        }

        /* ===== CONTACT ===== */
        .contact-section { background: var(--white); }
        .contact-info-card {
            background: linear-gradient(135deg, var(--primary), #1E40AF, var(--secondary));
            border-radius: 28px;
            padding: 48px 36px;
            color: #fff;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .contact-info-card::before {
            content: '';
            position: absolute;
            top: -50px; right: -50px;
            width: 200px; height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
            border-radius: 50%;
        }
        .contact-info-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }
        .contact-info-card > p {
            opacity: 0.85;
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
        }
        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-top: 28px;
            position: relative;
            z-index: 2;
        }
        .contact-detail .icon-circle {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 14px;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .contact-detail h6 {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 4px;
        }
        .contact-detail p, .contact-detail a {
            font-size: 0.95rem;
            font-weight: 500;
            color: #fff;
            margin: 0;
        }
        .contact-detail a:hover { opacity: 0.85; }
        .contact-form-wrap {
            background: var(--snow);
            border-radius: 28px;
            padding: 48px 40px;
            border: 1px solid var(--light-blue);
        }
        .contact-form .form-control {
            border: 2px solid var(--light-blue);
            border-radius: 14px;
            padding: 13px 18px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            background: var(--white);
            transition: all 0.3s;
        }
        .contact-form .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
        }
        .contact-form .form-label {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .contact-form .btn-submit {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
        }
        .contact-form .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
            color: #fff;
        }

        /* ===== FORM MESSAGES ===== */
        .form-success-msg {
            display: none;
            background: #ECFDF5;
            border: 1px solid #A7F3D0;
            border-radius: 14px;
            padding: 18px 24px;
            margin-top: 20px;
            text-align: center;
        }
        .form-success-msg.show { display: block; animation: fadeInUp 0.5s ease; }
        .form-success-msg i { color: #22C55E; font-size: 1.5rem; }
        .form-success-msg p { color: #065F46; font-weight: 600; margin: 8px 0 0; font-size: 0.95rem; }
        .invalid-feedback { font-size: 0.8rem; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 0;
        }
        .footer h5 {
            color: #fff;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
        }
        .footer p { font-size: 0.92rem; line-height: 1.8; }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            color: rgba(255,255,255,0.65);
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover { color: var(--secondary); transform: translateX(4px); }
        .footer-links a .bi { font-size: 0.7rem; }
        .newsletter-form .form-control {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 14px 0 0 14px;
            padding: 14px 18px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 0.92rem;
        }
        .newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
        .newsletter-form .form-control:focus {
            background: rgba(255,255,255,0.12);
            border-color: var(--secondary);
            box-shadow: none;
            color: #fff;
        }
        .newsletter-form .btn-newsletter {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border: none;
            border-radius: 0 14px 14px 0;
            padding: 14px 24px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .newsletter-form .btn-newsletter:hover { opacity: 0.9; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 0;
            margin-top: 60px;
        }
        .footer-bottom p { margin: 0; font-size: 0.88rem; }
        .footer-bottom a { color: var(--secondary); font-weight: 500; }
        .footer-bottom a:hover { color: #60A5FA; }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.8rem; }
            .section-title { font-size: 2.2rem; }
            .hero-image-wrap { margin-top: 40px; }
            .hero-float-card { display: none; }
            .process-connector { display: none; }
            .cta-section h2 { font-size: 2rem; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
            .hero-section { padding: 80px 0 60px; }
            .section-padding { padding: 60px 0; }
            .booking-form-wrap, .contact-form-wrap { padding: 32px 24px; }
            .contact-info-card { padding: 36px 28px; }
            .counter-item .count-number { font-size: 2.2rem; }
        }

        .navbar-toggler {
            border: 2px solid var(--light-blue);
            padding: 6px 10px;
        }
        .navbar-toggler-icon {
            background-image: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .navbar-toggler-icon::after {
            content: '\F479';
            font-family: 'bootstrap-icons';
            font-size: 1.3rem;
            color: var(--primary);
        }
