/* CSS Variables & Theme Setup */
:root {
    /* Colors - Vibrant Modern Palette */
    --color-charcoal: #0f172a; /* Slate 900 */
    --color-charcoal-light: #1e293b; /* Slate 800 */
    --color-rose: #ff3d7f; /* Brand Primary */
    --color-rose-hover: #e02868;
    --color-sand: #f8fafc; /* Slate 50 */
    --color-white: #ffffff;
    --color-text: #475569; /* Slate 600 */
    --color-text-light: #64748b; /* Slate 500 */
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Fonts */
    --font-display: 'Outfit', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Layout */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Utilities */
.display-text {
    font-family: var(--font-display);
}
.text-center {
    text-align: center;
}
.text-white {
    color: var(--color-white);
}
.bg-light {
    background-color: var(--color-sand);
}
.bg-charcoal {
    background-color: var(--color-charcoal);
}
.bg-rose {
    background-color: var(--color-rose);
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
.section {
    padding: 3rem 0;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-charcoal);
}
.bg-charcoal .section-title {
    color: var(--color-white);
}
.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-sans);
    font-size: 1rem;
}
.btn-primary {
    background-color: var(--color-rose);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: var(--color-rose-hover);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
}
.btn-outline:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.brand-logo img {
    height: 55px !important;
    width: auto !important;
    object-fit: contain;
    background-color: var(--color-white);
    border-radius: 50%;
    padding: 2px;
}
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--color-rose);
}
.nav-login {
    margin-left: 1rem;
}
.btn-nav {
    background-color: var(--color-rose);
    color: var(--color-white) !important;
    padding: 0.5rem 1.25rem;
}
.btn-nav:hover {
    background-color: var(--color-rose-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 61, 127, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-charcoal);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: radial-gradient(circle at top right, #ffe4e6 0%, #f8fafc 40%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: rgba(255, 61, 127, 0.2);
    filter: blur(120px);
    animation: pulse-slow 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: rgba(255, 126, 179, 0.25);
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}
.hero-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}
.avatar-group-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar-group {
    display: flex;
}
.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    margin-left: -15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}
.avatar-circle:first-child {
    margin-left: 0;
}
.avatar-group-text {
    display: flex;
    flex-direction: column;
}
.avatar-group-text .stars {
    color: #FFD700;
    font-size: 0.9rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.avatar-group-text p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}
.hero-text-col {
    flex: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-image-col.left-image {
    transform: translateY(-3rem);
}
.hero-image-col:not(.left-image) {
    transform: translateY(3rem);
}
.hero-image-col img {
    width: 100%;
    max-width: 400px;
    height: 550px;
    object-fit: cover;
    object-position: top;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    mix-blend-mode: multiply;
    animation: float 6s ease-in-out infinite;
}
.hero-image-col img:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.15);
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    font-weight: 700;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 80%;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-width: 200px;
}
.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 61, 127, 0.1);
    background: rgba(255, 255, 255, 0.9);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-rose), #ff7eb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--color-charcoal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* How It Works (Steps) - Timeline */
.steps-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-rose), transparent);
    box-shadow: 0 0 15px rgba(255, 61, 127, 0.3);
    opacity: 0.6;
}
.step-card {
    background: transparent;
    padding: 1.5rem;
    width: calc(50% - 3.5rem);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
}
.step-card:nth-child(odd) {
    align-self: flex-start;
}
.step-card:nth-child(even) {
    align-self: flex-end;
    margin-top: -6rem; /* Interleave vertically */
}
/* Horizontal connecting line */
.step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 3.5rem;
    height: 1px;
    background: var(--color-rose);
    box-shadow: 0 0 10px rgba(255, 61, 127, 0.2);
    opacity: 0.5;
    z-index: -1;
}
.step-card:nth-child(odd)::before {
    right: -3.5rem;
}
.step-card:nth-child(even)::before {
    left: -3.5rem;
}

.step-card img {
    width: 100%;
    max-width: 300px;
    height: 380px;
    margin: 0 auto 2rem;
    border-radius: 150px 150px 15px 15px; /* Elegant arch shape */
    object-fit: cover;
    object-position: top;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.step-card:hover img {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}
.step-icon {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-rose);
    border: 2px solid var(--color-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    z-index: 2;
    transform: translateY(-50%);
    margin: 0;
    box-shadow: 0 0 20px rgba(255, 61, 127, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.8);
}
.step-card:nth-child(odd) .step-icon {
    right: -3.5rem;
    transform: translate(50%, -50%);
}
.step-card:nth-child(even) .step-icon {
    left: -3.5rem;
    transform: translate(-50%, -50%);
}
.step-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}
.step-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile responsive timeline */
@media (max-width: 768px) {
    .steps-grid::before {
        left: 2rem;
        transform: none;
    }
    .step-card {
        width: calc(100% - 4rem);
        align-self: flex-end !important;
        text-align: left !important;
        margin-top: 0 !important;
        margin-left: 4rem;
    }
    .step-card::before {
        width: 4rem;
        left: -4rem !important;
        right: auto !important;
    }
    .step-card:nth-child(odd) .step-icon,
    .step-card:nth-child(even) .step-icon {
        left: -4rem;
        right: auto;
        transform: translate(calc(2rem - 50%), -50%);
    }
}

/* Features Grid Layout */
#features {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background-color: var(--color-sand);
}
#features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 61, 127, 0.15) 0%, rgba(255, 126, 179, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.features-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}
.feature-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 8s ease-in-out infinite;
}
.feature-img img {
    width: 100%;
    height: auto;
    /* Fade the edges to blend into the background */
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}
.features-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.feature-card:hover {
    box-shadow: 0 25px 50px rgba(255, 61, 127, 0.15);
    transform: translateY(-10px);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    position: relative;
    padding-bottom: 0.75rem;
}
.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-rose);
    border-radius: 2px;
}

/* Discover Grid */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.discover-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: var(--color-charcoal-light);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    cursor: pointer;
}
.discover-card img.discover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.discover-card:hover img.discover-img {
    transform: scale(1.08);
}
.discover-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    text-align: left;
}
.discover-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #10B981;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
}
.discover-tag {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}
.match-badge {
    display: inline-block;
    background-color: var(--color-rose);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

/* Responsive Discover Grid */
@media (max-width: 1024px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .discover-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 3.5rem 4rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.testimonial-carousel::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 10rem;
    font-family: var(--font-display);
    color: var(--color-rose);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}
.carousel-content {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}
.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 8px 20px rgba(255, 61, 127, 0.2);
    border: 4px solid var(--color-white);
}
.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}
.testimonial.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}
.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    letter-spacing: 3px;
}
.quote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}
.author {
    font-weight: 700;
    color: var(--color-charcoal-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-charcoal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
}
.carousel-arrow:hover {
    background: var(--color-rose);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(255, 61, 127, 0.3);
    transform: translateY(-50%) scale(1.05);
}
.carousel-arrow.prev {
    left: -27.5px;
}
.carousel-arrow.next {
    right: -27.5px;
}

/* Footer */
.footer {
    background-color: var(--color-charcoal);
    background-image: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.7)), url('assets/3.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.footer-logo img {
    height: 65px !important;
    width: auto !important;
    object-fit: contain;
    background-color: var(--color-white);
    border-radius: 50%;
    padding: 2px;
}
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--color-sand);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.75rem;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--color-white);
}
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem var(--spacing-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}
.social-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 1rem;
}
.social-links a:hover {
    color: var(--color-white);
}

/* FAQ Section */
#faq {
    background-image: url('assets/kkjpg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
#faq .section-title {
    color: var(--color-white);
}
#faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* very light dark overlay to make image pop while keeping text readable */
    z-index: -1;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--color-rose);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Modals & Banners */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}
.modal-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    max-width: 450px;
    width: 90%;
}
.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.error-text {
    color: #d32f2f;
    margin-top: 1rem;
    font-size: 0.9rem;
}



/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-split {
        gap: 2rem;
    }
    .hero-image-col img {
        max-width: 320px;
        height: 480px;
    }
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .features-wrapper {
        gap: 1.5rem;
    }
    .features-grid {
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-login {
        margin-left: 0;
    }
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 3rem;
    }
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-image-col {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-image-col.left-image, .hero-image-col:not(.left-image) {
        transform: none;
    }
    .hero-text-col {
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features-wrapper {
        flex-direction: column;
    }
    .feature-img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .steps-grid {
        margin-top: 2rem;
    }
    .step-card {
        padding: 1.25rem;
    }
    
    .testimonial-carousel {
        padding: 0 1rem;
    }
    .quote {
        font-size: 1.2rem;
    }
    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .modal-actions {
        flex-direction: column;
    }
}
