:root {
    --primary-gradient: linear-gradient(135deg, #11998E 0%, #38EF7D 100%);
    --accent-gradient: linear-gradient(135deg, #06BEB6 0%, #48B1BF 100%);
    --soft-pink: #E0FFF4;
    --warm-cream: #F7FFF9;
    --deep-purple: #054F40;
    --text-dark: #102A25;
    --text-muted: #5E7C6B;
    --glass-bg: rgba(247, 255, 249, 0.75);
    --glass-border: rgba(247, 255, 249, 0.4);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 60px -15px rgba(17, 153, 142, 0.25);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            background: var(--warm-cream);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Animated Background Blobs */
        .bg-blobs {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .blob-1 {
            width: 600px;
            height: 600px;
            background: #FFE4EC;
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .blob-2 {
            width: 500px;
            height: 500px;
            background: #E8DCFF;
            bottom: -150px;
            left: -150px;
            animation-delay: -5s;
        }

        .blob-3 {
            width: 400px;
            height: 400px;
            background: #FFE4EC;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.02); }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--warm-cream);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #8E2DE2, #DD2476);
            border-radius: 10px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: rgba(253, 251, 247, 0.9);
            backdrop-filter: blur(20px);
            padding: 15px 5%;
            box-shadow: var(--shadow-soft);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--accent-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #8E2DE2;
        }

        .cta-btn {
            background: var(--accent-gradient);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(221, 36, 118, 0.35);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(221, 36, 118, 0.45);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--deep-purple);
            margin-bottom: 25px;
            box-shadow: var(--shadow-soft);
        }

        .hero-badge i {
            color: #FF512F;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .hero h1 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 25px rgba(221, 36, 118, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(221, 36, 118, 0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-dark);
            padding: 18px 40px;
            border: 2px solid var(--deep-purple);
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: var(--deep-purple);
            color: white;
        }

        .hero-visual {
            position: relative;
            height: 600px;
        }

        .floating-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 25px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--glass-border);
            animation: cardFloat 6s ease-in-out infinite;
        }

        .card-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .card-2 {
            top: 30%;
            right: 5%;
            animation-delay: -2s;
        }

        .card-3 {
            bottom: 20%;
            left: 20%;
            animation-delay: -4s;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .card-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .card-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .card-info {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .card-match {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FFE4EC, #E8DCFF);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--deep-purple);
        }

        .heart-animation {
            position: absolute;
            font-size: 24px;
            color: #FF512F;
            animation: heartPulse 1.5s ease-in-out infinite;
        }

        @keyframes heartPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Wave Divider */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .section-header h2 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--text-muted);
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .about-card {
            background: var(--warm-cream);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(142, 45, 226, 0.1);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .about-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--soft-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #DD2476;
            transition: all 0.4s ease;
        }

        .about-card:hover .about-icon {
            background: var(--accent-gradient);
            color: white;
            transform: rotateY(180deg);
        }

        .about-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .about-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* Categories Section */
        .categories {
            background: linear-gradient(180deg, white 0%, var(--soft-pink) 100%);
        }

        .categories-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            border: 2px solid rgba(142, 45, 226, 0.2);
            background: white;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            color: var(--text-dark);
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .category-card {
            position: relative;
            height: 280px;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s ease;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .category-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 105, 0.8) 100%);
            z-index: 1;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            z-index: 2;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .category-card:hover .category-content {
            transform: translateY(0);
        }

        .category-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .category-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .category-card:hover .category-content p {
            opacity: 1;
            transform: translateY(0);
        }

        .category-count {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--deep-purple);
            z-index: 2;
        }

        /* Why Choose Us */
        .why-us {
            background: var(--warm-cream);
        }

        .why-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }

        .why-card {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-soft);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #FFE4EC, #E8DCFF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #8E2DE2;
        }

        .why-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .why-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Profiles Section */
        .profiles {
            background: white;
            overflow: hidden;
        }

        .profiles-carousel {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .carousel-container {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .profile-card {
            min-width: 320px;
            background: var(--warm-cream);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-soft);
        }

        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .profile-image {
            height: 320px;
            position: relative;
            overflow: hidden;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .profile-card:hover .profile-image img {
            transform: scale(1.05);
        }

        .profile-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-gradient);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .profile-online {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 12px;
            height: 12px;
            background: #2ECC71;
            border-radius: 50%;
            border: 2px solid white;
        }

        .profile-info {
            padding: 25px;
        }

        .profile-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .profile-verified {
            color: #2ECC71;
            font-size: 1rem;
        }

        .profile-details {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .profile-bio {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .profile-actions {
            display: flex;
            gap: 10px;
        }

        .btn-like {
            flex: 1;
            padding: 12px;
            border: 2px solid #FF512F;
            background: transparent;
            color: #FF512F;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-like:hover {
            background: #FF512F;
            color: white;
        }

        .btn-message {
            flex: 1;
            padding: 12px;
            border: none;
            background: var(--primary-gradient);
            color: white;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-message:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 20px rgba(142, 45, 226, 0.4);
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid rgba(142, 45, 226, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--deep-purple);
        }

        .carousel-btn:hover {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        /* Register Section */
        .register {
            background: linear-gradient(135deg, #2D1B69 0%, #8E2DE2 100%);
            position: relative;
            overflow: hidden;
        }

        .register::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .register-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .register-content {
            color: white;
        }

        .register-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .register-content h2 span {
            background: linear-gradient(135deg, #FFE4EC, #FF9A9E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .register-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .register-benefits {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .benefit-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FF9A9E;
        }

        .benefit-text {
            font-size: 1rem;
        }

        .register-form-card {
            background: white;
            border-radius: 28px;
            padding: 50px 40px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .form-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: var(--text-dark);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(142, 45, 226, 0.15);
            border-radius: 12px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--warm-cream);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8E2DE2;
            background: white;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6B80' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
        }

        .interests-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .interest-tag {
            padding: 10px 20px;
            border: 2px solid rgba(142, 45, 226, 0.2);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: white;
        }

        .interest-tag:hover,
        .interest-tag.selected {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
        }

        .checkbox-group input {
            width: 20px;
            height: 20px;
            accent-color: #8E2DE2;
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .checkbox-group a {
            color: #8E2DE2;
            text-decoration: none;
        }

        .form-submit {
            width: 100%;
            padding: 18px;
            background: var(--accent-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(221, 36, 118, 0.4);
        }

        .form-message {
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            margin-top: 20px;
            display: none;
        }

        .form-message.success {
            display: block;
            background: #D4EDDA;
            color: #155724;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(180deg, var(--soft-pink) 0%, white 100%);
        }

        .testimonials-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 380px;
            background: white;
            border-radius: 24px;
            padding: 40px;
            margin: 0 15px;
            box-shadow: var(--shadow-soft);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-meta h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .testimonial-meta span {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .testimonial-rating {
            color: #FFB800;
            margin-bottom: 20px;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-style: italic;
            line-height: 1.8;
            position: relative;
            padding-left: 25px;
        }

        .testimonial-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: rgba(142, 45, 226, 0.2);
            font-family: 'Dancing Script', cursive;
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(142, 45, 226, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-gradient);
            width: 30px;
            border-radius: 10px;
        }

        /* Newsletter */
        .newsletter {
            background: var(--warm-cream);
            padding: 0 0%;
        }

        .newsletter-card {
            max-width: 1400px;
            margin: 0 ;
            background: white;
            border-radius: 28px;
            padding: 60px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .newsletter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-gradient);
        }

        .newsletter h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .newsletter p {
            color: var(--text-muted);
            margin-bottom: 35px;
            font-size: 1.05rem;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 25px;
            border: 2px solid rgba(142, 45, 226, 0.15);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #8E2DE2;
        }

        .newsletter-btn {
            padding: 16px 35px;
            background: var(--accent-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: scale(1.02);
        }

        .newsletter-checkbox {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .newsletter-checkbox input {
            accent-color: #8E2DE2;
        }

        .newsletter-message {
            margin-top: 15px;
            padding: 12px;
            border-radius: 10px;
            display: none;
        }

        .newsletter-message.success {
            display: block;
            background: #D4EDDA;
            color: #155724;
        }

        /* Footer */
        footer {
            background: var(--deep-purple);
            color: white;
            padding: 80px 5% 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo-text {
            color: white;
            -webkit-text-fill-color: white;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-gradient);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .footer-contact i {
            color: #FF9A9E;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: white;
        }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #8E2DE2;
        }

        .mobile-close {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }

            .about-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-subtitle {
                margin: 0 auto 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .about-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .register-container {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .cta-btn {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .about-grid,
            .category-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .register-form-card {
                padding: 35px 25px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .profile-card {
                min-width: 280px;
            }
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            padding: 50px;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlide 0.4s ease;
        }

        @keyframes modalSlide {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--text-dark);
        }

        .modal-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .modal-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 25px 0 15px;
            color: var(--deep-purple);
        }

        .modal-content p {
            color: var(--text-muted);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .modal-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .modal-content li {
            color: var(--text-muted);
            margin-bottom: 10px;
        }
   