/* Hero Section Styles for Homepage */
.hero-section {
    background-color: #ffffff;
    padding: 4rem 5vw 2rem 5vw; /* Changed from 3rem to 2rem bottom padding */
}

.hero-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* PREVENT WRAPPING */
    align-items: center !important;
    gap: 4rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-col {
    flex: 1 1 70% !important;
    min-width: 0 !important; /* Prevent flex items from overflowing */
}

.hero-col-text {
    order: 1;
    max-width: 50%; /* Force it to stay within half the container */
}

.hero-col-media {
    order: 2;
    max-width: 50%; /* Force it to stay within half the container */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

/* Clean image container - NO dark background */
.hero-media-card {
    width: 100%;
    max-width: 500px;
    background: transparent; /* Remove dark box */
    padding: 0;
    box-shadow: none;
    border: none;
}

/* FORCE CLEAN IMAGE DISPLAY - HIGHEST PRIORITY */
.hero-media-card,
.hero-col-media > div {
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block; /* Prevents inline spacing issues */
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Interactive Filter Styles */
.interactive-filter {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.filter-intro {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #334155;
}

.filter-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.filter-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-choice-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.filter-choice-btn:hover {
    border-color: #3b82f6;
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Why Section Styles */
.why-section {
    padding: 4rem 5vw;
    background: #f8fafc;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    color: #0f172a;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0 auto 1rem auto;
    max-width: 600px;
}

.why-sub {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 3rem;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.why-icon {
    color: #3b82f6;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.why-card h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.why-card p {
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column-reverse !important;
    }
    
    .hero-col {
        flex: 1 1 100% !important;
    }
    
    .hero-col-text {
        padding-right: 0;
    }

    .filter-choices {
        flex-direction: column;
    }

    .filter-choice-btn {
        min-width: 100%;
    }

    .hero-illustration {
        max-height: 300px; /* Smaller limit for mobile screens */
    }
}