/* CSS Variables & Theme Setup - Vibrant Premium Dating Aesthetic */
:root {
    /* Colors - Midnight & Gold Theme */
    --color-charcoal: #F7E7CE;
    /* Champagne for headings */
    --color-charcoal-light: #E0E6ED;
    /* Light gray */
    --color-rose: #D4AF37;
    /* Gold */
    --color-rose-hover: #C5A028;
    /* Darker Gold */
    --color-accent: #D4AF37;
    /* Gold Accent */
    --color-purple: #B8860B;
    /* Dark Goldenrod */
    --color-sand: #2e3b74;
    /* Onyx/Dark navy for card backgrounds */
    --color-white: #1a244b;
    /* Midnight blue for body background */
    --color-text: #E0E6ED;
    /* Light text */
    --color-text-light: #A0ABC0;
    /* Muted text */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    --gradient-purple: linear-gradient(135deg, var(--color-purple) 0%, var(--color-rose) 100%);

    /* Glassmorphism Variables */
    --glass-bg: rgba(26, 31, 53, 0.75);
    /* Onyx glass */
    --glass-border: rgba(212, 175, 55, 0.2);
    /* Gold border */
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 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: radial-gradient(circle at top left, var(--color-sand) 0%, var(--color-white) 50%, var(--color-sand) 100%);
    background-attachment: fixed;
    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: #ffffff !important;
}

.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: 1.5rem 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: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 42, 95, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 42, 95, 0.5);
    transform: translateY(-2px);
}

.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: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--color-rose);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo img {
    height: 40px !important;
    width: auto !important;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.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;
    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: var(--gradient-primary);
    -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: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.4);
    opacity: 0.7;
}

.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: #ffffff;
    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: var(--gradient-purple);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(139, 61, 255, 0.3);
}

/* 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;
    }
}

/* Dark Feature Cards (Why Choose CrushCircuit) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card-dark {
    background: #0a0a0a;
    border: 1px solid rgba(213, 0, 109, 0.3);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    box-shadow: 0 0 20px rgba(213, 0, 109, 0.05), inset 0 0 15px rgba(213, 0, 109, 0.05);
    transition: all 0.3s ease;
}

.feature-card-dark:hover {
    box-shadow: 0 0 30px rgba(213, 0, 109, 0.3), inset 0 0 20px rgba(213, 0, 109, 0.15);
    border-color: rgba(213, 0, 109, 0.8);
    transform: translateY(-5px);
}

.feature-icon-glow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-rose);
    box-shadow: 0 0 15px rgba(213, 0, 109, 0.4), inset 0 0 10px rgba(213, 0, 109, 0.4);
    flex-shrink: 0;
}

.feature-text-dark h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text-dark p {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}


@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;
    }
}

/* Split Section Layout (Success & CTA) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--color-sand);
}

.split-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
}

.split-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.split-content-col {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    .split-image-col {
        width: 100%;
        min-height: 350px;
    }

    .split-image-col img {
        height: 350px;
    }

/* Layout Tightening Overrides */
.footer {
    padding-top: 2rem !important;
}
.footer-bottom {
    margin-top: 2rem !important;
}}