/* ---------------------------------- */
/* Why Neera Exists Section Styles    */
/* ---------------------------------- */

.why-section {
    background-color: var(--color-white); /* Pure white background */
    color: var(--color-black);
    padding: 30px 0 40px 0; /* Reduced bottom space to pull next section closer */
    position: relative;
    z-index: 20;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden; /* Hide watermark overflow */
}

/* Background leaf watermark styling */
.why-bg-watermark {
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18; /* Significantly reduced opacity for a soft, premium blend */
}

.why-bg-watermark svg {
    width: 100%;
    height: 100%;
}

.why-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr; /* Rebalanced column ratios */
    gap: 80px; /* Increased gap for spaciousness */
    align-items: center;
    max-width: 1280px; /* Matched to global container max-width */
    margin: 0 auto;
    padding: 0 24px; /* Aligned with global 24px container padding */
}

/* Left Column: Image wrapper with floating decoration */
.why-image-wrapper {
    position: relative;
    padding: 15px 0 0 15px; /* Offset to make room for dots */
}

/* Floating dot matrix outside image top-left */
.dot-matrix-decor {
    position: absolute;
    top: -6px;
    left: -6px;
    display: grid;
    grid-template-columns: repeat(2, 6px);
    gap: 6px;
    z-index: 1;
}

.dot-matrix-decor span {
    width: 6px;
    height: 6px;
    background-color: #fce8bd; /* Very light gold */
    border-radius: 50%;
    display: block;
}

.why-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3.0; /* Increased picture size box proportions */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-cinematic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-image-container:hover .why-cinematic-img {
    transform: scale(1.03);
}

/* Bottom Left Gold Play Button Overlay */
.image-play-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-gold-start);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    z-index: 5;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.image-play-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.image-play-btn:hover {
    transform: scale(1.08);
    background-color: var(--color-gold-end);
}

/* Right Column Content */
.why-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px; /* Tighter layout spacing */
}

/* Blinking Chip Badge Tag - Styled for Light Theme background */
.why-chip {
    align-self: flex-start;
    background-color: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: #2c2e30; /* Dark charcoal text */
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px; /* Added space from top */
    margin-bottom: 4px;
}

.why-chip .badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold-start);
    border-radius: 50%;
    display: inline-block;
    animation: dot-blink 1.4s infinite ease-in-out;
}

/* About Us Header */
.about-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-title-text {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--color-gold-end);
    letter-spacing: 0.1em;
}

.about-line {
    width: 32px;
    height: 1.5px;
    background-color: var(--color-gold-end);
}

/* Sans Typography matching hero */
.why-title-sans {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 2.4vw, 2.2rem);
    font-weight: 900; /* Extra bold */
    line-height: 1.15;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.highlight-gold-serif {
    color: var(--color-gold-start); /* Consistent gold color from hero */
    display: block;
    margin-top: 4px;
}

/* Muted Sub-paragraphs */
.why-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-paragraphs p {
    font-size: 0.85rem;
    color: #4b5563; /* Slate gray */
    line-height: 1.5;
    font-weight: 500;
}

/* Minimalist checked list styling */
.why-minimal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin-bottom: 6px;
}

.why-minimal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold-start);
    color: var(--color-gold-start);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-check svg {
    width: 8px;
    height: 8px;
    stroke-width: 3.5;
}

.list-item-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2e3033;
}

/* Gold Outline CTA Button */
.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--color-gold-start);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 13px 26px;
    border-radius: 2px; /* Sharp corners as in screen */
    text-decoration: none;
    max-width: max-content;
    transition: var(--transition-smooth);
}

.arrow-right-icon {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.btn-know-more:hover {
    background-color: #000000;
    color: var(--color-gold-start);
    border-color: #000000;
}

.btn-know-more:hover .arrow-right-icon {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }
    
    .why-container {
        padding: 0 24px;
    }
}
