
        /* ===== CSS Variables ===== */
        :root {
            --primary-pink: #EC4899;
            --primary-pink-light: #F472B6;
            --secondary-purple: #8B5CF6;
            --secondary-purple-light: #A78BFA;
            --gradient-romantic: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
            --gradient-subtle: linear-gradient(135deg, #FDF2F8 0%, #EDE9FE 100%);
            --bg-white: #FFFFFF;
            --bg-rose-light: #FFF1F2;
            --bg-purple-light: #F5F3FF;
            --text-dark: #1F2937;
            --text-gray: #4B5563;
            --text-light: #6B7280;
            --border-light: #E5E7EB;
            --shadow-soft: 0 10px 25px -5px rgba(236, 72, 153, 0.1);
            --shadow-medium: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
            --shadow-strong: 0 20px 50px -10px rgba(236, 72, 153, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-full: 50px;
            --transition-fast: 0.3s ease;
            --transition-medium: 0.5s ease;
        }

        /* ===== Reset & Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        input, select, textarea {
            font-family: inherit;
            font-size: 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: var(--gradient-romantic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-fast);
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--gradient-romantic);
            color: white;
            box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-pink);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-pink);
            color: var(--primary-pink);
        }

        .btn-outline:hover {
            background: var(--primary-pink);
            color: white;
        }

        .btn-gradient {
            background: var(--gradient-romantic);
            color: white;
            box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
        }

        /* ===== Header ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition-fast);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Pacifico', cursive;
            font-size: 1.5rem;
            color: var(--primary-pink);
        }

        .logo i {
            font-size: 1.8rem;
            color: var(--primary-pink);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            position: relative;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-romantic);
            transition: var(--transition-fast);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary-pink);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: var(--transition-fast);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.05) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-2%, 2%); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            color: var(--primary-pink);
            margin-bottom: 25px;
            box-shadow: var(--shadow-soft);
        }

        .hero-badge i {
            color: #10B981;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: var(--gradient-romantic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating Hearts Animation */
        .floating-hearts {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .heart {
            position: absolute;
            font-size: 1.5rem;
            color: var(--primary-pink);
            opacity: 0.3;
            animation: floatHeart 15s linear infinite;
        }

        .heart:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; font-size: 1rem; }
        .heart:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; font-size: 2rem; }
        .heart:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; font-size: 1.2rem; }
        .heart:nth-child(4) { left: 50%; top: 70%; animation-delay: 1s; font-size: 1.8rem; }
        .heart:nth-child(5) { left: 65%; top: 25%; animation-delay: 3s; font-size: 1.5rem; }
        .heart:nth-child(6) { left: 75%; top: 55%; animation-delay: 5s; font-size: 1.3rem; }
        .heart:nth-child(7) { left: 85%; top: 40%; animation-delay: 2.5s; font-size: 1.7rem; }
        .heart:nth-child(8) { left: 90%; top: 75%; animation-delay: 4.5s; font-size: 1.4rem; }

        @keyframes floatHeart {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* ===== About Section ===== */
        .about {
            background: var(--bg-white);
        }

        .about-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: var(--gradient-romantic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: var(--bg-rose-light);
            border-radius: var(--radius-md);
            transition: var(--transition-fast);
        }

        .about-feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-romantic);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .about-feature-text h4 {
            font-size: 1rem;
            margin-bottom: 3px;
        }

        .about-feature-text p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-strong);
        }

        .about-stats {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: white;
            padding: 25px 35px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-medium);
            display: flex;
            gap: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-pink);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* ===== Categories Section ===== */
        .categories {
            background: var(--bg-rose-light);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .category-card {
            position: relative;
            height: 250px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition-medium);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-strong);
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-medium);
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
        }

        .category-overlay h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .category-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .category-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gradient-romantic);
            color: white;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* ===== Why Choose Us Section ===== */
        .why-us {
            background: var(--bg-white);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .why-us-card {
            text-align: center;
            padding: 40px 25px;
            background: var(--bg-purple-light);
            border-radius: var(--radius-lg);
            transition: var(--transition-medium);
        }

        .why-us-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            background: white;
        }

        .why-us-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-romantic);
            color: white;
            border-radius: 50%;
            font-size: 2rem;
            transition: var(--transition-fast);
        }

        .why-us-card:hover .why-us-icon {
            transform: scale(1.1);
        }

        .why-us-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .why-us-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ===== Latest Profiles Section ===== */
        .profiles {
            background: var(--bg-purple-light);
        }

        .profiles-carousel {
            position: relative;
            overflow: hidden;
        }

        .profiles-track {
            display: flex;
            gap: 25px;
            transition: transform 0.5s ease;
        }

        .profile-card {
            flex: 0 0 280px;
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-medium);
        }

        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-strong);
        }

        .profile-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-medium);
        }

        .profile-card:hover .profile-image img {
            transform: scale(1.05);
        }

        .online-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #10B981;
            color: white;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .online-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }

        .profile-info {
            padding: 20px;
        }

        .profile-name {
            font-size: 1.2rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .profile-verified {
            color: #10B981;
            font-size: 0.9rem;
        }

        .profile-details {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .profile-bio {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .profile-actions {
            display: flex;
            gap: 10px;
        }

        .profile-actions .btn {
            flex: 1;
            padding: 10px 15px;
            font-size: 0.85rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .carousel-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--primary-pink);
            color: var(--primary-pink);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .carousel-btn:hover {
            background: var(--primary-pink);
            color: white;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            background: var(--gradient-romantic);
            color: white;
        }

        .testimonials .section-header h2 {
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .testimonials-carousel {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            flex: 0 0 100%;
            text-align: center;
            padding: 40px;
        }

        .testimonial-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid white;
        }

        .testimonial-quote {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .testimonial-age {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .testimonial-dot.active {
            background: white;
        }

        /* ===== Register Section ===== */
        .register {
            background: var(--bg-white);
        }

        .register-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .register-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: var(--gradient-romantic);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .register-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .register-benefits {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .register-benefit {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .register-benefit-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-rose-light);
            color: var(--primary-pink);
            border-radius: 50%;
        }

        .register-form-wrapper {
            background: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-medium);
        }

        .register-form h3 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-md);
            transition: var(--transition-fast);
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-pink);
            box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
        }

        .form-group input.error,
        .form-group select.error {
            border-color: #EF4444;
        }

        .error-message {
            color: #EF4444;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .form-group input.error + .error-message,
        .form-group select.error + .error-message {
            display: block;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary-pink);
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-light);
            cursor: pointer;
        }

        .checkbox-group a {
            color: var(--primary-pink);
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            font-size: 1.1rem;
        }

        .form-footer {
            text-align: center;
            margin-top: 20px;
            color: var(--text-light);
        }

        .form-footer a {
            color: var(--primary-pink);
            font-weight: 500;
        }

        /* Form Success Message */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .form-success.show {
            display: block;
        }

        .form-success-icon {
            width: 80px;
            height: 80px;
            background: #10B981;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 20px;
        }

        .form-success h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .form-success p {
            color: var(--text-light);
        }

        /* ===== Footer ===== */
        .footer {
            background: #1F2937;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 15px;
        }

        .footer-brand .logo i {
            color: var(--primary-pink);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition-fast);
        }

        .social-link:hover {
            background: var(--primary-pink);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition-fast);
        }

        .footer-link:hover {
            color: var(--primary-pink);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
        }

        .footer-contact i {
            color: var(--primary-pink);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== Modals ===== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-fast);
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: var(--radius-lg);
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            transform: translateY(20px);
            transition: var(--transition-fast);
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-header h3 {
            font-size: 1.3rem;
        }

        .modal-close {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--bg-rose-light);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .modal-close:hover {
            background: var(--primary-pink);
            color: white;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-body h4 {
            margin-bottom: 15px;
            color: var(--primary-pink);
        }

        .modal-body p {
            color: var(--text-gray);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        /* ===== Newsletter Section ===== */
        .newsletter {
            background: var(--bg-rose-light);
        }

        .newsletter-inner {
            background: var(--gradient-romantic);
            border-radius: var(--radius-lg);
            padding: 60px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .newsletter-inner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .newsletter p {
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: var(--radius-full);
            font-size: 1rem;
        }

        .newsletter-form input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
        }

        .newsletter-form .btn {
            white-space: nowrap;
        }

        .newsletter-checkbox {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-checkbox input {
            width: 18px;
            height: 18px;
            accent-color: white;
        }

        .newsletter-checkbox label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Newsletter Success */
        .newsletter-success {
            display: none;
            padding: 40px;
        }

        .newsletter-success.show {
            display: block;
        }

        .newsletter-success i {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .newsletter-success h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* ===== Community Policy Section ===== */
        .community-policy {
            background: var(--bg-white);
        }

        .policy-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .policy-card {
            background: var(--bg-purple-light);
            padding: 30px;
            border-radius: var(--radius-lg);
            margin-bottom: 25px;
        }

        .policy-card h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .policy-card h3 i {
            color: var(--primary-pink);
        }

        .policy-card ul {
            padding-left: 20px;
            list-style: disc;
        }

        .policy-card li {
            margin-bottom: 8px;
            color: var(--text-gray);
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 40px 40px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transition: var(--transition-medium);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-inner,
            .register-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                order: -1;
            }

            .about-stats {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 20px;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .newsletter-inner {
                padding: 40px 25px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 60px 0;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .register-form-wrapper {
                padding: 25px;
            }

            .footer-stats {
                flex-direction: column;
                gap: 20px;
            }
        }
    