/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* ── Hero Banner ── */
.about-hero {
    position: relative;
    height: 65vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--navbar-height);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 700px;
}

.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    /* line-height: 1.2; */
    margin: 1rem 0 0.75rem;
}

.about-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    /* line-height: 1.7; */
}

/* ── Shared label badge ── */
.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(192,21,15,0.1);
    border: 1px solid rgba(192,21,15,0.25);
    padding: 0.28rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

/* ── Story section ── */
.about-story {
    padding: 5rem 0;
    background: var(--color-background);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 420px;
}

.about-img-big {
    width: 85%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
    display: block;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.about-img-small {
    width: 52%;
    height: 210px;
    object-fit: cover;
    border-radius: 1.25rem;
    position: absolute;
    bottom: -2rem;
    right: 0;
    border: 5px solid var(--color-background);
    box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-primary);
    /* line-height: 1.25; */
    margin-bottom: 1.25rem;
}

.about-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    /* line-height: 1.75; */
    margin-bottom: 1.25rem;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.75rem 0;
    padding: 1.25rem;
    background: var(--color-background-secondary);
    border-radius: 1.25rem;
}

.about-stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-accent);
    /* line-height: 1; */
    margin-bottom: 0.25rem;
}
.stat-plus { font-size: 1.1rem; }
.stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.about-cta i { font-size: 1.1rem; }

/* ── Why Us section ── */
.about-why-section {
    padding: 5rem 0;
    background: var(--color-background-secondary);
}

.about-why-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3rem;
}

.about-why-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-primary);
    /* line-height: 1.25; */
    margin-top: 0.5rem;
}

.about-why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    list-style: none;
}

.about-why-list li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 1.4rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-why-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(192,21,15,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.4rem;
    color: var(--color-accent);
}

.about-why-list li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.35rem;
}

.about-why-list li p {
    font-size: 0.83rem;
    color: var(--color-text-secondary);
    /* line-height: 1.6; */
    margin: 0;
}

/* ── Values section ── */
.about-values-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    background: var(--color-background-secondary);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.avc-icon {
    width: 58px;
    height: 58px;
    background: rgba(192,21,15,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.avc-icon i {
    font-size: 1.55rem;
    color: var(--color-accent);
}

.about-value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.55rem;
}

.about-value-card p {
    font-size: 0.83rem;
    color: var(--color-text-secondary);
    /* line-height: 1.65; */
}

/* ── Gallery ── */
.about-gallery-section {
    padding: 5rem 0;
    background: var(--color-background-secondary);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.about-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* ── CTA Banner ── */
.about-cta-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.about-cta-box {
    background: var(--color-accent);
    border-radius: 1.75rem;
    padding: 3.5rem 2.5rem;
    text-align: center;
    color: #fff;
}

.about-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 0.85rem;
    /* line-height: 1.2; */
}

.about-cta-box p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 2rem;
    /* line-height: 1.6; */
}

.about-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btns .btn {
    background: #fff;
    color: var(--color-accent);
    font-weight: 700;
}

.about-cta-btns .btn:hover {
    background: #f5f5f5;
}

.about-wa-btn {
    background: #25D366 !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.about-wa-btn:hover {
    background: #1ebe5d !important;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-hero-content h1 { font-size: 2.4rem; }
    .about-main { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 1rem; }
    .about-images { min-height: 300px; }
    .about-img-big { width: 100%; height: 300px; }
    .about-img-small { width: 46%; height: 170px; }
    .about-why-list { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .about-gallery { grid-template-columns: repeat(2, 1fr); }
    .about-cta-box h2 { font-size: 1.9rem; }
}

@media (max-width: 600px) {
    .about-hero { height: 55vh; }
    .about-hero-content h1 { font-size: 1.25rem; 
        /* line-height: 1.5;  */
    }
    .about-hero-content p { font-size: 0.83rem; }
    .about-story,
    .about-why-section,
    .about-values-section,
    .about-gallery-section,
    .about-cta-section { padding: 1rem 0; }
    .about-content h2,
    .about-why-header h2 { font-size: 1.25rem;
         /* line-height: 1.5; */
     }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 1.4rem; }
    .about-images { min-height: 220px; }
    .about-img-big { height: 220px; }
    .about-img-small { width: 48%; height: 130px; bottom: -1rem; }
    .about-values { grid-template-columns: 1fr; }
    .about-gallery { grid-template-columns: repeat(2, 1fr); }
    .about-gallery img { height: 160px; }
    .about-cta-box { padding: 2.5rem 1.25rem; border-radius: 1.25rem; }
    .about-cta-box h2 { font-size: 1.25rem; 
        /* line-height: 1.5;  */
    }
    .about-cta-box p { font-size: 0.85rem; }
    .about-why-header {
        margin: 0 auto 1rem;
    }
}
