/* ── WHY SANAI PAGE ── */

/* Breadcrumb */
.page-breadcrumb {
    padding-top: 72px; /* account for fixed navbar */
    background: #ffffff;
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}
.breadcrumb-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555f70;
}

/* Banner */
.ws-banner {
    background: #ffffff;
    padding: 0 2rem 3rem;
}
.ws-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ws-banner-bg {
    position: absolute;
    inset: 0;
}
.ws-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ws-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 30, 55, 0.82) 0%,
        rgba(20, 30, 55, 0.70) 50%,
        rgba(20, 30, 55, 0.60) 100%
    );
}
.ws-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3.5rem 2.5rem;
    max-width: 680px;
}
.ws-banner-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.ws-banner-desc {
    font-size: clamp(0.82rem, 1.4vw, 0.95rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* What We Do Section */
.ws-what-we-do {
    background: #ffffff;
    padding: 5rem 2rem;
}
.ws-wwd-inner {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.ws-wwd-content {
    flex: 1;
    min-width: 0;
}
.ws-wwd-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C9974A;
    margin-bottom: 1rem;
}
.ws-wwd-label::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 2.5px;
    background: #C9974A;
    border-radius: 2px;
}
.ws-wwd-heading {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.ws-wwd-highlight {
    color: #C9974A;
    font-style: italic;
}
.ws-wwd-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555f70;
    max-width: 480px;
}
.ws-wwd-image-wrap {
    flex: 0 0 340px;
    max-width: 340px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10);
}
.ws-wwd-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 860px) {
    .ws-wwd-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .ws-wwd-image-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ws-wwd-image {
        height: 260px;
    }
    .ws-wwd-desc {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .breadcrumb-inner {
        padding: 1rem 1.25rem;
    }
    .ws-banner {
        padding: 0 1.25rem 2rem;
    }
    .ws-banner-content {
        padding: 2.5rem 1.5rem;
    }
    .ws-what-we-do {
        padding: 3rem 1.25rem 4rem;
    }
    .ws-wwd-image {
        height: 220px;
    }
}
