
        :root {
            --pink-light: #FFF1F2;
            --pink-200: #FECDD3;
            --pink-300: #FBCFE8;
            --pink-400: #F9A8D4;
            --pink-500: #F472B6;
            --pink-600: #DB2777;
            --pink-700: #BE185D;
            --text-dark: #1F2937;
            --text-gray: #4B5563;
            --text-light: #6B7280;
            --white: #FFFFFF;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--pink-light);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            line-height: 1.2;
            font-weight: 700;
        }

        /* Navigation */
        nav {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            background: transparent;
            transition: var(--transition);
        }

        nav.scrolled {
            position: fixed;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow);
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--pink-700);
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--pink-400), var(--pink-700));
            border-radius: 2px;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--pink-700);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: rgb(14, 14, 14) !important;
            padding: 0.875rem 1.75rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(244, 114, 182, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 114, 182, 0.5);
        }

        .cta-btn::after {
            display: none;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-200) 100%);
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem 4rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 168, 212, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 207, 232, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--pink-700), #9D174D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 90%;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: white;
            color: var(--pink-700);
            border: 2px solid var(--pink-400);
            padding: 0.875rem 1.75rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: var(--pink-400);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 168, 212, 0.4);
        }

        .hero-image {
            position: relative;
            animation: floatImage 6s ease-in-out infinite;
        }

        @keyframes floatImage {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
            object-fit: cover;
            height: 550px;
        }

        .hero-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .badge-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .badge-text h4 {
            color: var(--text-dark);
            font-size: 1.25rem;
        }

        .badge-text p {
            color: var(--text-light);
            font-size: 0.875rem;
            margin: 0;
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.75rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--pink-400), var(--pink-700));
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .experience-badge h3 {
            font-size: 3rem;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .about-content p {
            color: var(--text-gray);
            line-height: 1.9;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        /* Counter Section */
        .counter {
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .counter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .counter-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .counter-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .counter-item h3 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .counter-item p {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 500;
        }

        /* Vision Mission */
        .vision-mission {
            background: var(--pink-light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .vm-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            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: linear-gradient(90deg, var(--pink-400), var(--pink-700));
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--pink-200), var(--pink-400));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .vm-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .vm-card p {
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Why Choose Us */
        .features {
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .feature-card {
            background: var(--pink-light);
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--pink-200), var(--pink-300));
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
        }

        .feature-card:hover {
            border-color: var(--pink-400);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            font-size: 1.25rem;
        }

        .feature-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Work Process */
        .process {
            background: linear-gradient(135deg, var(--pink-light), var(--pink-200));
            position: relative;
            overflow: hidden;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 4rem;
            gap: 2rem;
        }

        .process-line {
            position: absolute;
            top: 60px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: linear-gradient(90deg, var(--pink-300), var(--pink-500));
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 120px;
            height: 120px;
            background: white;
            border: 4px solid var(--pink-400);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--pink-700);
            position: relative;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
        }

        .step:hover .step-number {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            border-color: transparent;
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .step p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Service Plans */
        .plans {
            background: white;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .plan-card {
            background: var(--pink-light);
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            border: 3px solid transparent;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .plan-card.featured {
            border-color: var(--pink-400);
            transform: scale(1.05);
            background: white;
            box-shadow: var(--shadow-xl);
        }

        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-weight: 700;
            font-size: 0.85rem;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--pink-200), var(--pink-400));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
        }

        .plan-name {
            font-size: 1.75rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 3rem;
            color: var(--pink-700);
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .plan-features li {
            padding: 0.75rem 0;
            color: var(--text-gray);
            border-bottom: 1px solid var(--pink-200);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--pink-700);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Services Section */
        .services {
            background: var(--pink-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            flex-direction: column;
            text-align: center;
            height: 100%;
           
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--pink-400), var(--pink-700));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--pink-200), var(--pink-400));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.8;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        /* Booking Form */
        .booking {
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .booking .section-title,
        .booking .section-subtitle {
            color: white;
            position: relative;
            z-index: 1;
        }

        .booking .section-title::after {
            background: white;
        }

        .booking-form {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 3.5rem;
            border-radius: 30px;
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 1;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--pink-200);
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--pink-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--pink-400);
            background: white;
            box-shadow: 0 0 0 4px rgba(249, 168, 212, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Reviews */
        .reviews {
            background: white;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .review-card {
            background: var(--pink-light);
            padding: 2.5rem;
            border-radius: 25px;
            position: relative;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .review-card:hover {
            border-color: var(--pink-300);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .review-card::before {
            content: '"';
            font-size: 6rem;
            color: var(--pink-400);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .stars {
            color: #FBBF24;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .review-text {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .reviewer-details h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        .reviewer-details p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq {
            background: var(--pink-light);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-lg);
        }

        .faq-question {
            padding: 1.75rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--pink-light);
        }

        .faq-answer {
            padding: 0 1.75rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.75rem 1.75rem;
            max-height: 500px;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--pink-200), var(--pink-400));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 1.25rem;
            color: var(--pink-700);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--pink-700);
            color: white;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            text-align: center;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-btn {
            background: white;
            color: var(--pink-700);
            font-size: 1.1rem;
            padding: 1.25rem 3rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-section .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Contact Section */
        .contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact-info h3 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: var(--pink-light);
            border-radius: 20px;
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--pink-400), var(--pink-700));
            color: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--text-dark);
            margin-bottom: 0.25rem;
            font-size: 1.25rem;
        }

        .contact-details p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        .contact-details a {
            color: var(--pink-700);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-details a:hover {
            color: var(--pink-400);
        }

        .contact-form {
            background: var(--pink-light);
            padding: 3rem;
            border-radius: 30px;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 5rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--pink-400), var(--pink-700));
            border-radius: 2px;
        }

        .footer-col p {
            color: #9CA3AF;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--pink-400);
            padding-left: 5px;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-form input {
            padding: 1rem;
            border: none;
            border-radius: 12px;
            background: #374151;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }

        .newsletter-form input::placeholder {
            color: #9CA3AF;
        }

        .newsletter-form input:focus {
            outline: none;
            background: #4B5563;
            box-shadow: 0 0 0 3px rgba(249, 168, 212, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-bottom p {
            color: #9CA3AF;
        }

        .footer-links-inline {
            display: flex;
            gap: 2.5rem;
        }

        .footer-links-inline a {
            color: #9CA3AF;
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .footer-links-inline a:hover {
            color: var(--pink-400);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-content h1 {
                font-size: 2.75rem;
            }

            .hero-image {
                order: -1;
            }

            .hero-image img {
                height: 400px;
            }

            .counter-grid,
            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid,
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                flex-direction: column;
            }

            .process-line {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.25rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .counter-grid,
            .features-grid,
            .reviews-grid,
            .plans-grid,
            .vm-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: none;
            }

            .plan-card.featured:hover {
                transform: translateY(-10px);
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: white;
            z-index: 2000;
            padding: 2rem;
            transition: var(--transition);
            box-shadow: var(--shadow-xl);
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--pink-200);
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-dark);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .close-menu:hover {
            background: var(--pink-light);
            color: var(--pink-700);
        }

        .mobile-nav-links {
            list-style: none;
        }

        .mobile-nav-links li {
            margin-bottom: 1.5rem;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1.25rem;
            font-weight: 600;
            display: block;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--pink-200);
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--pink-700);
            padding-left: 10px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
