/* ============================================================
   about.css — About Page
   All layout is defined here. Zero inline styles in the HTML.
   Breakpoints match style.css: tablet ≤1024px, mobile ≤640px
   ============================================================ */


/* ── HERO ─────────────────────────────────────────────────── */

.about-page-hero {
    padding-top: 150px;
    padding-bottom: 60px;
}

.about-page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 800px;
    margin-inline: auto;
}

.about-page-hero .hero-heading {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.about-page-hero .hero-text {
    max-width: 680px;
}

.about-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}


/* ── SERVICES ─────────────────────────────────────────────── */

.about-services-section {
    padding-top: 100px;
    padding-bottom: 60px;
}

.about-services-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 20px;
    border-radius: var(--radius-xl);
    background: var(--card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-service-item:hover {
    transform: translateY(-4px);
}

.about-service-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-service-item p {
    font-size: 0.9rem;
    color: var(--light);
    line-height: 1.7;
}


/* ── WHY HELPME ───────────────────────────────────────────── */

.about-why-section {
    padding-top: 100px;
    padding-bottom: 60px;
}

.about-why-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}


/* ── VISION ───────────────────────────────────────────────── */

.about-vision-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-vision-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}


/* ── PULL QUOTE ───────────────────────────────────────────── */

.about-pullquote {
    padding-top: 20px;
    padding-bottom: 80px;
}

.about-pullquote-inner {
    padding: 70px clamp(32px, 8vw, 100px);
    border-radius: var(--radius-xl);
    background: var(--card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.about-pullquote-line {
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-pullquote-text {
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.25;
    max-width: 760px;
    color: var(--text);
}

.about-pullquote-attr {
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 600;
    letter-spacing: 0.05em;
}


/* ============================================================
   RESPONSIVE — TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {

    /* Services: 4 → 2 columns */
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why: 3 → 2 columns */
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ============================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ============================================================ */
@media (max-width: 640px) {

    .about-page-hero {
        padding-top: 108px;
        padding-bottom: 40px;
    }

    .about-hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .about-hero-btns .primary-btn,
    .about-hero-btns .secondary-btn {
        width: 100%;
    }

    .about-services-section {
        padding-top: 72px;
        padding-bottom: 36px;
    }

    /* Services: 1 column */
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-why-section {
        padding-top: 72px;
        padding-bottom: 36px;
    }

    /* Why: 1 column */
    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-vision-section {
        padding-top: 48px;
        padding-bottom: 36px;
    }

    /* Vision: 1 column */
    .about-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-pullquote-inner {
        padding: 40px 20px;
    }

    .about-pullquote-text {
        font-size: clamp(1.25rem, 6vw, 1.8rem);
    }
}

.footer-address {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-address a {
    color: inherit;
    text-decoration: none;
}

.footer-address a:hover {
    text-decoration: underline;
}