
        /* ===== CSS Variables ===== */
        :root {
            --primary-dark: #333333;
            --primary-medium: #666666;
            --primary-light: #999999;
            --bg-light: #F5F5F5;
            --white: #ffffff;
            --accent: #4A90D9;
            --text-dark: #222222;
            --text-light: #777777;
            --shadow: 0 10px 40px rgba(51, 51, 51, 0.1);
            --shadow-hover: 0 20px 60px rgba(51, 51, 51, 0.15);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ===== Reset & Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--white);
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--primary-dark);
            color: var(--white);
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .btn::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.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(51, 51, 51, 0.25);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-dark);
            color: var(--primary-dark);
        }

        .btn-outline:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #3a7bc8;
        }

        /* ===== Section Title ===== */
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 46px;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 18px;
            margin-top: 28px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        /* ===== Navbar ===== */
        .navbar {
            padding: 22px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            position: relative;
            border-bottom: 1px solid rgba(153, 153, 153, 0.15);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
        }

        .logo i {
            font-size: 32px;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 38px;
        }

        .nav-links a {
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.3px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-cta {
            background: var(--primary-dark) !important;
            color: var(--white) !important;
            padding: 12px 28px !important;
            border-radius: 6px !important;
            font-weight: 600 !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--accent) !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(74, 144, 217, 0.35);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-dark);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 92vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(245, 245, 245, 0.97) 0%, rgba(255, 255, 255, 0.95) 100%),
                        url('https://images.pexels.com/photos/4476390/pexels-photo-4476390.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(74, 144, 217, 0.06) 0%, transparent 70%);
            animation: heroGlow 8s ease-in-out infinite alternate;
        }

        @keyframes heroGlow {
            from { transform: translate(0, 0); }
            to { transform: translate(-30px, 30px); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.15;
            margin-bottom: 28px;
            animation: fadeInUp 1s ease;
        }

        .hero-text h1 span {
            color: var(--accent);
        }

        .hero-text p {
            font-size: 19px;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.85;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-image {
            position: relative;
            animation: floatImage 4s ease-in-out infinite;
        }

        .hero-image img {
            border-radius: 16px;
            box-shadow: 0 30px 80px rgba(51, 51, 51, 0.2);
        }

        .hero-floating-card {
            position: absolute;
            background: var(--white);
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: var(--shadow-hover);
            animation: floatCard 3s ease-in-out infinite;
        }

        .hero-floating-card.card-1 {
            bottom: 30px;
            left: -40px;
            animation-delay: 0s;
        }

        .hero-floating-card.card-2 {
            top: 30px;
            right: -40px;
            animation-delay: 1.5s;
        }

        .hero-floating-card i {
            font-size: 28px;
            color: var(--accent);
            margin-right: 12px;
        }

        .hero-floating-card span {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 15px;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes floatImage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .hero-stats {
            display: flex;
            gap: 45px;
            margin-top: 45px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
        }

        .stat-item p {
            font-size: 13px;
            color: var(--primary-light);
            margin-top: 8px;
            margin-bottom: 0;
            font-weight: 500;
        }

        /* ===== About Us Section ===== */
        .about {
            padding: 110px 0;
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .about-image .experience-badge {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: var(--primary-dark);
            color: white;
            padding: 28px 32px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow-hover);
        }

        .experience-badge h3 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }

        .experience-badge p {
            font-size: 13px;
            margin: 0;
            opacity: 0.9;
            letter-spacing: 0.5px;
        }

        .about-text h3 {
            font-size: 18px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 28px;
            line-height: 1.25;
        }

        .about-text p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 32px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-item i {
            color: var(--accent);
            font-size: 18px;
        }

        .about-feature-item span {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 15px;
        }

        /* ===== Counter Section ===== */
        .counter-section {
            padding: 90px 0;
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 35px,
                rgba(255,255,255,0.02) 35px,
                rgba(255,255,255,0.02) 70px
            );
        }

        .counters {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            position: relative;
            z-index: 1;
        }

        .counter-item {
            text-align: center;
            color: var(--white);
        }

        .counter-item i {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.9;
            color: var(--accent);
        }

        .counter-item h3 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .counter-item p {
            font-size: 16px;
            opacity: 0.85;
            font-weight: 400;
        }

        /* ===== Vision & Mission ===== */
        .vision-mission {
            padding: 110px 0;
            background: var(--bg-light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .vm-card {
            background: var(--white);
            padding: 55px 45px;
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--accent);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .vm-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--bg-light), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .vm-icon i {
            font-size: 32px;
            color: var(--primary-dark);
        }

        .vm-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 22px;
        }

        .vm-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.9;
        }

        /* ===== Why Choose Us ===== */
        .why-choose {
            padding: 110px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .feature-card {
            background: var(--bg-light);
            padding: 45px 35px;
            border-radius: 16px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .feature-emoji {
            font-size: 55px;
            margin-bottom: 22px;
            display: block;
        }

        .feature-card h4 {
            font-size: 21px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
        }

        /* ===== Work Process ===== */
        .work-process {
            padding: 110px 0;
            background: var(--bg-light);
            position: relative;
        }

        .process-timeline {
            position: relative;
            max-width: 950px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-dark), var(--accent));
            transform: translateY(-50%);
            border-radius: 10px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 72px;
            height: 72px;
            background: var(--primary-dark);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            margin: 0 auto 22px;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(51, 51, 51, 0.25);
            transition: var(--transition);
        }

        .step-number:hover {
            transform: scale(1.1);
            background: var(--accent);
        }

        .step-icon {
            font-size: 48px;
            margin-bottom: 16px;
            display: block;
        }

        .process-step h4 {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .process-step p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }

        /* ===== Services Section ===== */
        .services {
            padding: 110px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .service-card {
            background: var(--bg-light);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-emoji {
            font-size: 62px;
            text-align: center;
            padding: 32px 0 18px;
            display: block;
        }

        .service-card-body {
            padding: 0 38px 38px;
        }

        .service-card-body h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 18px;
            text-align: center;
        }

        .service-card-body p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.88;
            margin-bottom: 26px;
            text-align: center;
        }

        .service-link {
            display: block;
            text-align: center;
            color: var(--accent);
            font-weight: 600;
            font-size: 16px;
        }

        .service-link i {
            transition: var(--transition);
            margin-left: 6px;
        }

        .service-link:hover i {
            transform: translateX(6px);
        }

        /* ===== Booking Form Section ===== */
        .booking-section {
            padding: 110px 0;
            background: linear-gradient(135deg, rgba(51, 51, 51, 0.96) 0%, rgba(102, 102, 102, 0.94) 100%),
                        url('https://images.pexels.com/photos/4476390/pexels-photo-4476390.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            position: relative;
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 65px;
            align-items: center;
        }

        .booking-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 26px;
            line-height: 1.25;
        }

        .booking-info p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 17px;
            line-height: 1.85;
            margin-bottom: 35px;
        }

        .contact-info-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
        }

        .contact-info-mini div {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-size: 15px;
        }

        .contact-info-mini i {
            color: var(--accent);
            font-size: 20px;
        }

        .booking-form {
            background: var(--white);
            padding: 48px 42px;
            border-radius: 16px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.25);
        }

        .booking-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 32px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.12);
            background: var(--white);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* ===== Service Plans ===== */
        .plans {
            padding: 110px 0;
            background: var(--bg-light);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .plan-card {
            background: var(--white);
            border-radius: 16px;
            padding: 48px 36px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .plan-card.featured {
            border: 3px solid var(--primary-dark);
            transform: scale(1.05);
        }

        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 22px;
            right: -32px;
            background: var(--primary-dark);
            color: white;
            padding: 8px 42px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            transform: rotate(45deg);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-icon {
            font-size: 56px;
            margin-bottom: 22px;
            display: block;
        }

        .plan-card h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 18px;
        }

        .plan-price {
            font-size: 44px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 28px;
            font-family: 'Playfair Display', serif;
        }

        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-light);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .plan-features li {
            padding: 11px 0;
            border-bottom: 1px solid #eee;
            color: var(--text-light);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: var(--accent);
            font-size: 14px;
        }

        /* ===== Reviews Section ===== */
        .reviews {
            padding: 110px 0;
            background: var(--white);
        }

        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .review-card {
            background: var(--bg-light);
            padding: 42px 36px;
            border-radius: 16px;
            transition: var(--transition);
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .review-stars {
            color: #f4b400;
            font-size: 19px;
            margin-bottom: 22px;
        }

        .review-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 28px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-dark), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }

        .author-info span {
            font-size: 13px;
            color: var(--primary-light);
        }

        .quote-icon {
            position: absolute;
            top: 26px;
            right: 32px;
            font-size: 52px;
            color: var(--primary-light);
            opacity: 0.15;
        }

        /* ===== FAQ Section ===== */
        .faq {
            padding: 110px 0;
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(51, 51, 51, 0.06);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 24px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            color: var(--primary-dark);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--accent);
            font-size: 14px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 30px 26px;
            color: var(--text-light);
            line-height: 1.85;
            font-size: 15px;
        }

        .faq-item.active .faq-answer {
            max-height: 350px;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            padding: 110px 0;
            background: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 40px,
                rgba(255,255,255,0.02) 40px,
                rgba(255,255,255,0.02) 80px
            );
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 22px;
        }

        .cta-content p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 38px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .cta-content .btn-accent {
            font-size: 17px;
            padding: 18px 48px;
        }

        /* ===== Contact Section ===== */
        .contact {
            padding: 110px 0;
            background: var(--white);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 65px;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 22px;
        }

        .contact-info > p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 38px;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            background: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: var(--accent);
            font-size: 22px;
        }

        .contact-details li h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 6px;
        }

        .contact-details li p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }

        .contact-form {
            background: var(--bg-light);
            padding: 48px 42px;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 32px;
            text-align: center;
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 85px 0 35px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
            gap: 55px;
            margin-bottom: 55px;
        }

        .footer-col h3 {
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 26px;
            position: relative;
            padding-bottom: 14px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 26px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--accent);
            transform: translateY(-4px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 13px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        .footer-links a i {
            font-size: 11px;
            color: var(--accent);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 15px 18px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            color: white;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-form button {
            padding: 15px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form button:hover {
            background: #3a7bc8;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 217, 0.35);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 32px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 28px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom-links a:hover {
            color: var(--accent);
        }

        /* ===== Scroll to Top Button ===== */
        .scroll-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 52px;
            height: 52px;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(51, 51, 51, 0.25);
            transition: var(--transition);
            z-index: 999;
        }

        .scroll-top:hover {
            background: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(74, 144, 217, 0.4);
        }

        .scroll-top.show {
            display: flex;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 46px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 55px;
            }
            
            .process-timeline::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 290px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 85px 30px;
                gap: 22px;
                box-shadow: -8px 0 35px rgba(0,0,0,0.12);
                transition: right 0.35s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 38px;
            }

            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                order: -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .hero-floating-card {
                display: none;
            }

            .about-content,
            .vm-grid,
            .booking-wrapper,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .counters {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid,
            .reviews-slider {
                grid-template-columns: 1fr;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 30px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .counters {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
