/* Why Us Page */

.why-us-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
    background: var(--green-darker);
}

.why-us-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-us-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
}

.why-us-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(7, 18, 12, 0.88) 0%,
        rgba(7, 18, 12, 0.75) 50%,
        rgba(7, 18, 12, 0.88) 100%
    );
    pointer-events: none;
}

.why-us-hero .container {
    position: relative;
    z-index: 2;
}

.why-us-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 12px;
}

.why-us-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Content card with background image */
.why-us-content-card {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0;
    border: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-us-content-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-us-content-card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.03);
}

.why-us-content-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(249, 246, 241, 0.96) 0%,
        rgba(249, 246, 241, 0.92) 48%,
        rgba(249, 246, 241, 0.78) 72%,
        rgba(249, 246, 241, 0.55) 100%
    );
    pointer-events: none;
}

.why-us-content-card-inner {
    position: relative;
    z-index: 2;
    padding: 48px;
}

.why-us-page-content .why-us-content-card-inner h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--green-dark);
    margin: 28px 0 12px;
}

.why-us-page-content .why-us-content-card-inner h2:first-child {
    margin-top: 0;
}

.why-us-page-content .why-us-content-card-inner p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .why-us-content-card-inner {
        padding: 28px;
    }

    .why-us-content-card-overlay {
        background: rgba(249, 246, 241, 0.94);
    }
}
