
        /* ===== CSS Variables ===== */
        :root {
            --primary-gradient: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
            --primary-color: #2F80ED;
            --secondary-color: #56CCF2;
            --text-dark: #1a1a2e;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(47, 128, 237, 0.15);
            --shadow-hover: 0 20px 40px rgba(47, 128, 237, 0.25);
            --transition: all 0.3s ease;
        }

        /* ===== Reset & Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        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: 14px 35px;
            background: var(--primary-gradient);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(86, 204, 242, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(86, 204, 242, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-gradient);
            border-color: transparent;
            color: var(--white);
        }

        /* ===== Section Title ===== */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 10px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 18px;
            margin-top: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== Navbar ===== */
        .navbar {
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            position: relative;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo i {
            font-size: 36px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-cta {
            background: var(--primary-gradient);
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(86, 204, 242, 0.5);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(86, 204, 242, 0.9) 0%, rgba(47, 128, 237, 0.9) 100%),
                        url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 58px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease;
        }

        .hero-text p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 35px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn-white {
            background: white;
            color: var(--primary-color);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .btn-white:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .hero-image {
            animation: float 3s ease-in-out infinite;
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
        }

        .stat-item p {
            font-size: 14px;
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* ===== About Us Section ===== */
        .about {
            padding: 100px 0;
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .about-image .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--primary-gradient);
            color: white;
            padding: 25px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-hover);
        }

        .experience-badge h3 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 14px;
            margin: 0;
        }

        .about-text h3 {
            font-size: 24px;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-text h2 {
            font-size: 38px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .about-text p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-item i {
            color: var(--primary-color);
            font-size: 20px;
        }

        .about-feature-item span {
            font-weight: 500;
            color: var(--text-dark);
        }

        /* ===== Counter Section ===== */
        .counter-section {
            padding: 80px 0;
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
        }

        .counters {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .counter-item {
            text-align: center;
            color: var(--white);
        }

        .counter-item i {
            font-size: 50px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .counter-item h3 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .counter-item p {
            font-size: 18px;
            opacity: 0.95;
        }

        /* ===== Vision & Mission ===== */
        .vision-mission {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .vm-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .vm-icon i {
            font-size: 36px;
            color: var(--white);
        }

        .vm-card h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .vm-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.9;
        }

        /* ===== Why Choose Us ===== */
        .why-choose {
            padding: 100px 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: 20px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--secondary-color);
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .feature-emoji {
            font-size: 55px;
            margin-bottom: 20px;
            display: block;
        }

        .feature-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
        }

        /* ===== Work Process ===== */
        .work-process {
            padding: 100px 0;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            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: 70px;
            height: 70px;
            background: var(--primary-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 20px rgba(86, 204, 242, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .process-step:nth-child(2) .step-number { animation-delay: 0.2s; }
        .process-step:nth-child(3) .step-number { animation-delay: 0.4s; }
        .process-step:nth-child(4) .step-number { animation-delay: 0.6s; }

        .step-icon {
            font-size: 45px;
            margin-bottom: 15px;
            display: block;
        }

        .process-step h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }

        /* ===== Services Section ===== */
        .services {
            padding: 100px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .service-card {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .service-card:hover {
            border-color: var(--secondary-color);
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-emoji {
            font-size: 60px;
            text-align: center;
            padding: 30px 0 15px;
            display: block;
        }

        .service-card-body {
            padding: 0 35px 35px;
        }

        .service-card-body h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .service-card-body p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 25px;
            text-align: center;
        }

        .service-link {
            display: block;
            text-align: center;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 16px;
        }

        .service-link i {
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* ===== Booking Form Section ===== */
        .booking-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(86, 204, 242, 0.95) 0%, rgba(47, 128, 237, 0.95) 100%),
                        url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            position: relative;
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .booking-info h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .booking-info p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .booking-form {
            background: var(--white);
            padding: 45px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .booking-form h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(86, 204, 242, 0.15);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* ===== Service Plans ===== */
        .plans {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .plan-card {
            background: var(--white);
            border-radius: 20px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .plan-card.featured {
            border: 3px solid var(--primary-color);
            transform: scale(1.05);
        }

        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary-gradient);
            color: white;
            padding: 8px 40px;
            font-size: 12px;
            font-weight: 600;
            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: 55px;
            margin-bottom: 20px;
            display: block;
        }

        .plan-card h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .plan-price {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-light);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: var(--text-light);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .plan-features li i {
            color: var(--primary-color);
            font-size: 14px;
        }

        /* ===== Reviews Section ===== */
        .reviews {
            padding: 100px 0;
            background: var(--white);
        }

        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .review-card {
            background: var(--bg-light);
            padding: 40px 35px;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .review-stars {
            color: #ffc107;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .review-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            background: var(--primary-gradient);
            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(--text-dark);
            margin-bottom: 3px;
        }

        .author-info span {
            font-size: 13px;
            color: var(--text-light);
        }

        .quote-icon {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 50px;
            color: var(--secondary-color);
            opacity: 0.2;
        }

        /* ===== FAQ Section ===== */
        .faq {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 22px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--primary-color);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 15px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            padding: 100px 0;
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 46px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 35px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-content .btn-white {
            font-size: 18px;
            padding: 18px 45px;
        }

        /* ===== Contact Section ===== */
        .contact {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 28px;
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: white;
            font-size: 22px;
        }

        .contact-details li h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .contact-details li p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-form {
            background: var(--bg-light);
            padding: 45px 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        /* ===== Footer ===== */
        .footer {
            background: #1a1a2e;
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 10px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary-gradient);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 12px;
            color: var(--secondary-color);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 14px 18px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary-color);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form button {
            padding: 14px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(86, 204, 242, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
        }

        .footer-bottom-links a:hover {
            color: var(--secondary-color);
        }

        /* ===== Scroll to Top Button ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(86, 204, 242, 0.4);
            transition: var(--transition);
            z-index: 999;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(86, 204, 242, 0.6);
        }

        .scroll-top.show {
            display: flex;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 44px;
            }
            
            .section-title h2 {
                font-size: 34px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
            
            .process-timeline::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px;
                gap: 20px;
                box-shadow: -5px 0 30px rgba(0,0,0,0.1);
                transition: right 0.3s 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: 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .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: 32px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 28px;
            }

            .section-title h2 {
                font-size: 26px;
            }

            .counters {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
        }
