
        :root {
            --primary: #22577A;
            --secondary: #38A3A5;
            --accent: #80ED99;
            --dark: #1A3A4A;
            --light: #F8FBFC;
            --white: #FFFFFF;
            --gray: #6B7C8C;
            --shadow: 0 10px 40px rgba(34, 87, 122, 0.15);
            --shadow-hover: 0 20px 60px rgba(34, 87, 122, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.65;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--white);
        }

        .nav-links li{
            margin-left:25px !important;
        }

        /* Navigation */
        .navbar {
            background: transparent;
            padding: 22px 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(34, 87, 122, 0.12);
            padding: 16px 0;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.3px;
        }

        .logo i {
            color: var(--accent);
            font-size: 28px;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 2px 4px rgba(128, 237, 153, 0.4));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            font-size: 0.98rem;
            padding: 8px 4px;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 70%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transition: transform 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 13px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.98rem;
            box-shadow: 0 8px 25px rgba(56, 163, 165, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(56, 163, 165, 0.45);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: var(--dark);
            box-shadow: 0 8px 25px rgba(128, 237, 153, 0.35);
        }

        .btn-accent:hover {
            box-shadow: 0 15px 40px rgba(128, 237, 153, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(34,87,122,0.94), rgba(56,163,165,0.92)), 
                        url('https://images.pexels.com/photos/1571468/pexels-photo-1571468.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 20% 80%, rgba(128,237,153,0.18) 0%, transparent 45%),
                        radial-gradient(ellipse at 85% 25%, rgba(56,163,165,0.15) 0%, transparent 50%);
            animation: pulseBg 8s ease-in-out infinite;
        }

        @keyframes pulseBg {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            color: var(--white);
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 55px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 3.6rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.15;
            animation: fadeInUp 1s ease;
            letter-spacing: -0.5px;
        }

        .hero-text h1 span {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(128, 237, 153, 0.25);
            border-radius: 8px;
            z-index: -1;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.97;
            animation: fadeInUp 1s ease 0.15s both;
            max-width: 520px;
            font-weight: 400;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            animation: fadeInUp 1s ease 0.3s both;
            flex-wrap: wrap;
        }

        .hero-form {
            background: var(--white);
            padding: 38px;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.35);
            animation: slideInRight 1s ease 0.4s both;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-form h3 {
            color: var(--primary);
            margin-bottom: 24px;
            font-size: 1.7rem;
            text-align: center;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 7px;
            font-weight: 500;
            color: var(--dark);
            font-size: 0.92rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8eef2;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: all 0.3s;
            font-size: 0.98rem;
            background: var(--light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(56, 163, 165, 0.12);
            background: var(--white);
        }

        /* About Section */
        .about {
            padding: 110px 0;
            background: var(--light);
            position: relative;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 65px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.6rem;
            color: var(--primary);
            margin-bottom: 18px;
            position: relative;
            display: inline-block;
            font-weight: 800;
            letter-spacing: -0.3px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 3px;
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.15rem;
            max-width: 620px;
            margin: 28px auto 0;
            font-weight: 400;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 55px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            aspect-ratio: 4/3;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: block;
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(34,87,122,0.15), transparent 60%);
            pointer-events: none;
        }

        .about-image:hover img {
            transform: scale(1.06);
        }

        .about-content h3 {
            font-size: 2.1rem;
            color: var(--primary);
            margin-bottom: 24px;
            font-weight: 700;
            line-height: 1.25;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 14px;
            line-height: 1.78;
            text-align: justify;
            font-size: 1rem;
        }

        /* Counter Section */
        .counter {
            padding: 75px 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .counter::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(128, 237, 153, 0.12);
            animation: float 12s ease-in-out infinite;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .counter-item {
            padding: 30px 20px;
            background: rgba(255,255,255,0.08);
            border-radius: 20px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            transition: transform 0.3s;
        }

        .counter-item:hover {
            transform: translateY(-6px);
            background: rgba(255,255,255,0.12);
        }

        .counter-item i {
            font-size: 3rem;
            margin-bottom: 18px;
            color: var(--accent);
            display: block;
            filter: drop-shadow(0 4px 12px rgba(128, 237, 153, 0.4));
        }

        .counter-item .number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
            letter-spacing: -1px;
        }

        .counter-item p {
            font-size: 1.05rem;
            opacity: 0.95;
            font-weight: 500;
        }

        /* Vision & Mission */
        .vision-mission {
            padding: 110px 0;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 45px;
        }

        .vm-card {
            padding: 50px 42px;
            border-radius: 24px;
            background: var(--light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(34, 87, 122, 0.06);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }

        .vm-card i {
            font-size: 3.4rem;
            margin-bottom: 24px;
            color: var(--primary);
            display: block;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vm-card h3 {
            font-size: 1.85rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 700;
        }

        .vm-card p {
            color: var(--gray);
            line-height: 1.82;
            font-size: 1rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 110px 0;
            background: var(--light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 22px;
            text-align: center;
            transition: all 0.35s;
            box-shadow: var(--shadow);
            border: 1px solid rgba(34, 87, 122, 0.04);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card .emoji {
            font-size: 3.6rem;
            margin-bottom: 22px;
            display: block;
            animation: bounce 2.2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .feature-card h4 {
            font-size: 1.35rem;
            margin-bottom: 16px;
            color: var(--primary);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--gray);
            font-size: 0.96rem;
            line-height: 1.68;
        }

        /* Work Process */
        .work-process {
            padding: 110px 0;
            background: var(--white);
            position: relative;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 70px;
            left: 7%;
            right: 7%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            z-index: 0;
            border-radius: 3px;
            animation: flowLine 3s ease-in-out infinite;
        }

        @keyframes flowLine {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 24px 16px;
        }

        .step-number {
            width: 120px;
            height: 120px;
            background: var(--white);
            border: 4px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 12px 35px rgba(56, 163, 165, 0.25);
            position: relative;
            overflow: hidden;
        }

        .step-number::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            opacity: 0;
            transition: opacity 0.4s;
            border-radius: 50%;
        }

        .step:hover .step-number {
            transform: scale(1.12) rotate(8deg);
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(128, 237, 153, 0.4);
        }

        .step:hover .step-number::after {
            opacity: 0.15;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 14px;
            color: var(--primary);
            font-weight: 700;
        }

        .step p {
            color: var(--gray);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        /* Services */
        .services {
            padding: 110px 0;
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .service-card {
            background: var(--white);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(34, 87, 122, 0.05);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px 26px;
            flex-grow: 1;
            flex-direction: column;
            text-align: center;
        }

        .service-content h3 {
            font-size: 1.45rem;
            margin-bottom: 16px;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.3;
        }

        .service-content p {
            color: var(--gray);
            line-height: 1.72;
            margin-bottom: 24px;
            flex-grow: 1;
            font-size: 0.95rem;
        }

        /* Service Plans */
        .service-plans {
            padding: 110px 0;
            background: var(--white);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1150px;
            margin: 0 auto;
        }

        .plan-card {
            background: var(--light);
            padding: 45px 34px;
            border-radius: 26px;
            text-align: center;
            border: 3px solid transparent;
            transition: all 0.4s;
            position: relative;
            box-shadow: var(--shadow);
        }

        .plan-card.featured {
            border-color: var(--accent);
            transform: scale(1.05);
            background: linear-gradient(145deg, #ffffff, #f0f8f5);
            box-shadow: 0 25px 70px rgba(128, 237, 153, 0.25);
        }

        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            color: var(--dark);
            padding: 7px 26px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(128, 237, 153, 0.45);
            letter-spacing: 0.3px;
        }

        .plan-card:hover {
            border-color: var(--secondary);
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-card h3 {
            font-size: 1.55rem;
            margin-bottom: 14px;
            color: var(--primary);
            font-weight: 700;
        }

        .plan-price {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 22px 0;
            display: block;
            letter-spacing: -1px;
        }

        .plan-price span {
            font-size: 1.1rem;
            color: var(--gray);
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin: 32px 0;
            text-align: left;
        }

        .plan-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(34, 87, 122, 0.08);
            color: var(--gray);
            font-size: 0.96rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .plan-features li i {
            color: var(--accent);
            font-size: 1rem;
            font-weight: 600;
        }

        /* Booking Form */
        .booking-section {
            padding: 110px 0;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: rgba(128, 237, 153, 0.1);
            animation: float 15s ease-in-out infinite;
        }

        .booking-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            padding: 55px;
            border-radius: 28px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.28);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .booking-container h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary);
            font-size: 2.2rem;
            font-weight: 700;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }

        /* Reviews */
        .reviews {
            padding: 110px 0;
            background: var(--light);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--white);
            padding: 36px;
            border-radius: 22px;
            box-shadow: var(--shadow);
            transition: transform 0.35s;
            border: 1px solid rgba(34, 87, 122, 0.04);
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 28px;
            font-size: 5rem;
            color: rgba(56, 163, 165, 0.12);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(34, 87, 122, 0.08);
        }

        .review-avatar {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 18px;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(34, 87, 122, 0.2);
        }

        .review-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .review-info .location {
            color: var(--gray);
            font-size: 0.88rem;
            margin-bottom: 7px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .review-info .stars {
            color: #FFC107;
            font-size: 0.95rem;
            letter-spacing: 2px;
        }

        .review-card p {
            color: var(--gray);
            line-height: 1.78;
            font-style: italic;
            font-size: 0.98rem;
            position: relative;
            z-index: 1;
        }

        /* FAQ */
        .faq {
            padding: 110px 0;
        }

        .faq-list {
            max-width: 880px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light);
            margin-bottom: 20px;
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.35s;
            border: 1px solid rgba(34, 87, 122, 0.05);
            box-shadow: 0 4px 15px rgba(34, 87, 122, 0.04);
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(34, 87, 122, 0.1);
            border-color: var(--secondary);
        }

        .faq-question {
            padding: 26px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 1.08rem;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(56, 163, 165, 0.06);
        }

        .faq-question i {
            color: var(--secondary);
            transition: transform 0.35s;
            font-size: 1.15rem;
            width: 24px;
            text-align: center;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.45s ease;
            color: var(--gray);
            line-height: 1.78;
            font-size: 1rem;
        }

        .faq-item.active .faq-answer {
            padding: 0 32px 28px;
            max-height: 650px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--accent), #6BD989);
            text-align: center;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -35%;
            left: -25%;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            animation: float 10s ease-in-out infinite;
        }

        .cta-section h2 {
            font-size: 2.6rem;
            margin-bottom: 22px;
            font-weight: 800;
            position: relative;
            z-index: 2;
            letter-spacing: -0.4px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 36px;
            opacity: 0.95;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        /* Contact */
        .contact {
            padding: 110px 0;
            background: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 36px;
            color: var(--primary);
            font-weight: 700;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 32px;
            padding: 22px;
            background: var(--white);
            border-radius: 18px;
            box-shadow: 0 6px 22px rgba(34, 87, 122, 0.08);
            transition: transform 0.3s;
            border: 1px solid rgba(34, 87, 122, 0.05);
        }

        .contact-item:hover {
            transform: translateX(6px);
            border-color: var(--secondary);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-right: 20px;
            margin-top: 4px;
            width: 26px;
            text-align: center;
            flex-shrink: 0;
        }

        .contact-item h4 {
            color: var(--primary);
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 1.08rem;
        }

        .contact-item p {
            color: var(--gray);
            font-size: 0.98rem;
            line-height: 1.65;
        }

        .contact-form {
            background: var(--white);
            padding: 48px;
            border-radius: 26px;
            box-shadow: var(--shadow-hover);
            border: 1px solid rgba(34, 87, 122, 0.06);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 85px 0 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.1fr 1fr 1.2fr 1.9fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 28px;
            color: var(--white);
            position: relative;
            padding-bottom: 14px;
            font-weight: 700;
            letter-spacing: -0.2px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }

        .footer-col p {
            color: #c5d4de;
            line-height: 1.88;
            margin-bottom: 20px;
            font-size: 0.98rem;
            font-weight: 300;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #c5d4de;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            font-size: 0.98rem;
            font-weight: 400;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(4px);
        }

        .footer-links a i {
            color: var(--secondary);
            font-size: 0.85rem;
            transition: transform 0.3s;
        }

        .footer-links a:hover i {
            transform: translateX(3px);
            color: var(--accent);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .newsletter-form input {
            padding: 15px 20px;
            border: none;
            border-radius: 12px;
            background: rgba(255,255,255,0.12);
            color: var(--white);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.98rem;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .newsletter-form input::placeholder {
            color: #a8b9c7;
        }

        .newsletter-form input:focus {
            outline: none;
            background: rgba(255,255,255,0.18);
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(56, 163, 165, 0.2);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.14);
            padding-top: 32px;
            text-align: center;
            color: #a8b9c7;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            font-weight: 300;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
            font-weight: 500;
        }

        .footer-bottom a:hover {
            color: var(--white);
            text-decoration: underline;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(35px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content,
            .about-grid,
            .vm-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .counter-grid,
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps::before {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-text h1 {
                font-size: 2.9rem;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 520px;
            }

            .plan-card.featured {
                transform: scale(1);
            }
            
            .plan-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .services-grid,
            .features-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .counter-grid,
            .process-steps {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-links a {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                padding: 0 20px;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 2.4rem;
            }

            .booking-container {
                padding: 40px 28px;
                margin: 0 18px;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 1.9rem;
            }

            .counter-item .number {
                font-size: 2.5rem;
            }

            .step-number {
                width: 100px;
                height: 100px;
                font-size: 2.1rem;
            }

            .hero-form {
                padding: 30px 24px;
            }
        }
