
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #ff4081; /* Vibrant Pink */
            --primary-dark: #f50057;
            --secondary: #7c4dff; /* Deep Purple */
            --accent: #ffd740; /* Amber */
            --bg-light: #fff8e1; /* Soft Yellow/Cream */
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-gray: #607d8b;
            --shadow: 0 10px 25px rgba(255, 64, 129, 0.2);
            --radius: 16px;
            --transition: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); background-color: #fafafa; line-height: 1.6; }
        h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); }
        h1 { font-family: 'Dancing Script', cursive; font-size: 4rem; color: var(--white); }
        p { color: var(--text-gray); margin-bottom: 1rem; font-size: 1.05rem; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        input, select, textarea { font-family: 'Montserrat', sans-serif; }

        /* --- UTILITIES --- */
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .grid { display: grid; }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 64, 129, 0.6); }
        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--white);
        }
        .btn-secondary:hover { background: var(--accent); color: var(--text-dark); border-color: var(--accent); }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover { background: var(--primary); color: white; }

        /* --- HEADER --- */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; }
        .logo span { color: var(--secondary); font-family: 'Dancing Script', cursive; font-size: 2rem; }
        
        .nav-menu { display: flex; gap: 25px; align-items: center; }
        .nav-link { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; position: relative; }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary);
            transition: var(--transition);
        }
        .nav-link:hover::after { width: 100%; }
        
        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, rgba(255, 64, 129, 0.85), rgba(124, 77, 255, 0.8)), url('../img/hero.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
        .hero h2 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 2.5rem; margin-bottom: 10px; color: var(--white); }
        .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

        /* Floating Hearts Animation */
        .heart-float {
            position: absolute;
            color: rgba(255, 255, 255, 0.3);
            animation: floatUp 10s infinite linear;
            z-index: 1;
        }
        @keyframes floatUp {
            0% { transform: translateY(110vh) scale(0.5); opacity: 0; }
            50% { opacity: 0.8; }
            100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
        }

        /* --- ABOUT SECTION --- */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .about-img { border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(-2deg); }
        .feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
        .feature-item { display: flex; align-items: center; gap: 10px; font-weight: 600; }
        .feature-item i { color: var(--primary); background: #ffebee; padding: 10px; border-radius: 50%; }

        /* --- CATEGORIES --- */
        .categories { background: var(--bg-light); }
        .cat-container { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
        .cat-card {
            min-width: 280px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            scroll-snap-align: center;
            transition: var(--transition);
        }
        .cat-card:hover { transform: translateY(-10px); }
        .cat-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
        .cat-title { font-weight: 700; margin-bottom: 10px; }

        /* --- WHY CHOOSE US --- */
        .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
        .why-item { text-align: center; padding: 30px 20px; background: white; border-radius: var(--radius); border: 1px solid #eee; transition: var(--transition); }
        .why-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
        .why-icon { width: 70px; height: 70px; background: linear-gradient(45deg, var(--primary), var(--secondary)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.8rem; }

        /* --- LATEST PROFILES (CAROUSEL) --- */
        .profiles-section { background: #fce4ec; } /* Light Pink */
        .carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 40px auto 0;
            overflow: hidden;
        }
        .carousel-track { display: flex; gap: 25px; transition: transform 0.5s ease-in-out; }
        
        .profile-card {
            min-width: 280px;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .profile-img { width: 100%; height: 300px; object-fit: cover; }
        .profile-details { padding: 20px; text-align: center; }
        .p-name { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }
        .p-meta { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 10px; }
        .p-bio { font-size: 0.9rem; margin-bottom: 15px; }
        .p-actions { display: flex; justify-content: center; gap: 10px; }
        .action-btn { padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; cursor: pointer; border: 1px solid var(--primary); color: var(--primary); background: white; transition: 0.3s; }
        .action-btn:hover { background: var(--primary); color: white; }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--white);
            width: 50px; height: 50px;
            border-radius: 50%;
            border: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            color: var(--primary);
            font-size: 1.2rem;
            z-index: 10;
        }
        .prev-btn { left: -25px; }
        .next-btn { right: -25px; }

        /* --- REGISTER FORM --- */
        .register-container {
            background: var(--white);
            max-width: 650px;
            margin: 0 auto;
            padding: 50px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-top: 5px solid var(--secondary);
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: #f9f9f9;
        }
        .form-control:focus { outline: none; border-color: var(--secondary); background: white; }
        .checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }

        /* --- TESTIMONIALS --- */
        .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .testi-card {
            background: linear-gradient(135deg, #fff, #fff0f5);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .testi-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); margin-bottom: 15px; }
        .testi-quote { font-style: italic; font-size: 1.1rem; margin-bottom: 15px; color: var(--text-dark); }
        .testi-name { font-weight: 700; color: var(--primary); }

        /* --- FOOTER --- */
        footer { background: #222; color: #ccc; padding: 60px 0 20px; font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
        .contact-item i { color: var(--primary); margin-top: 4px; }
        .social-icons { display: flex; gap: 15px; margin-top: 20px; }
        .social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; }
        .social-icons a:hover { background: var(--primary); }
        .footer-bottom { border-top: 1px solid #333; text-align: center; padding-top: 20px; }

        /* --- MODALS --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0; top: 0;
            width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.7);
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .modal.open { display: flex; opacity: 1; }
        .modal-content {
            background-color: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            width: 90%;
            max-width: 550px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s;
        }
        .modal.open .modal-content { transform: scale(1); }
        .close-modal {
            position: absolute;
            top: 15px; right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #999;
        }
        .close-modal:hover { color: var(--primary); }

        /* --- TOAST --- */
        .toast {
            position: fixed;
            bottom: 30px; left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #333;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 3000;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .toast.show { transform: translateX(-50%) translateY(0); }
        .toast i { color: var(--accent); }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            h1 { font-size: 3rem; }
            .nav-menu {
                position: fixed;
                top: 80px; left: -100%;
                width: 100%; height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 40px;
                transition: 0.3s;
            }
            .nav-menu.active { left: 0; }
            .hamburger { display: block; }
            .about-grid { grid-template-columns: 1fr; text-align: center; }
            .feature-list { text-align: left; }
            .form-row { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; }
            .hero-btns .btn { width: 100%; }
            .carousel-btn { display: none; }
            .carousel-track { overflow-x: auto; padding-bottom: 20px; }
        }
    