/* Modern Dating Website Styles - COMPLETE CODE */
:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --accent: #ff4d6d;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #495057;
    --text-light: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ff758c 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light);
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Typography (unchanged) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
p { margin-bottom: 1rem; color: var(--text); }
a { text-decoration: none; color: var(--primary); transition: color var(--transition-fast); }
a:hover { color: var(--secondary); }

/* ==================== */
/* UPDATED NAVIGATION */
/* ==================== */
.sticky-nav {
    background: var(--gradient-primary);
    padding: 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    flex-grow: 1;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
    height: 100%;
    position: relative;
    background: transparent;
    border: none;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-link i {
    font-size: 24px; /* Increased from 1.6rem */
    margin-bottom: 4px;
    font-weight: 700; /* Bolder */
    display: block;
    transition: transform var(--transition-fast);
}

.nav-link.active i {
    transform: scale(1.1);
}

.nav-link span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* ==================== */
/* ALL OTHER ORIGINAL STYLES */
/* ==================== */

/* Chat Points Container (unchanged) */
.chat-points-container {
    position: fixed;
    top: 80px;
    right: 2rem;
    z-index: 999;
}

.chat-points-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    width: 280px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.points-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.points-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(255, 77, 109, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points-display {
    margin-bottom: 1.5rem;
}

.points-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.points-value span:first-child {
    color: var(--primary);
}

.points-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.points-progress {
    margin-top: 1rem;
}

.progress-bar {
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: right;
}

.points-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.points-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.earn-points {
    background-color: rgba(106, 17, 203, 0.1);
    color: var(--primary);
}

.redeem-points {
    background-color: rgba(255, 77, 109, 0.1);
    color: var(--accent);
}

.points-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.points-tooltip {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Hero Section (unchanged) */
.hero {
    background: linear-gradient(135deg, rgba(106,17,203,0.8) 0%, rgba(37,117,252,0.8) 100%), 
                url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 90vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.primary-btn {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 77, 109, 0.4);
}

.secondary-btn:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Stats Section (unchanged) */
.stats-section {
    background: white;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(106, 17, 203, 0.03);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    background: rgba(106, 17, 203, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Features Section (unchanged) */
.features {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary);
    font-size: 1.75rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.card-link:hover {
    color: var(--secondary);
    gap: 0.75rem;
}

/* Steps Section (unchanged) */
.steps-section {
    padding: 5rem 0;
    background: white;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
}

.steps-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
}

/* Testimonials Section (unchanged) */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(248,249,250,1) 0%, rgba(241,243,245,1) 100%);
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(106, 17, 203, 0.05);
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(106, 17, 203, 0.1);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
    display: block;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section (unchanged) */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.cta-image:hover img {
    transform: scale(1.03);
}

/* Footer (unchanged) */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-brand {
    grid-column: 1 / -1;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 1rem 0 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.link-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.link-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
}

.link-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-apps {
    display: flex;
    gap: 1rem;
}

.app-link {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.app-link:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive Design (unchanged) */
@media (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-link i {
        font-size: 22px;
    }
    
    .nav-link span {
        font-size: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .chat-points-container {
        position: static;
        margin: 1rem auto;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .nav-link i {
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .nav-link span {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .btn-hero, .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes (unchanged) */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Profile Images (unchanged) */
.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: var(--shadow-sm);
}

.profile-pic-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}