/* ==========================================
   ABOUT PAGE
========================================== */

:root {
    --red: #e02020;
    --red-dark: #c81e1e;
    --ink: #1a1a1a;
    --gray-text: #6b6b6b;
    --card-bg: #ffffff;
    --soft-bg: #f6f6f8;
    --icon-bg: #fbe3e3;
    --radius-lg: 28px;
    --radius-md: 18px;
}

/** {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #eef0f3;
    padding: clamp(16px, 4vw, 48px) 0;
}*/
.about-section-inside {
    max-width: 1200px;
    min-width: 280px;
    width: 92%;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 56px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(24px);
    animation: sectionReveal 0.8s ease-out forwards;
    box-sizing: border-box;
}
.about-section {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #eef0f3;
    padding: clamp(16px, 4vw, 48px) 0;
    box-sizing: border-box;
}

@keyframes sectionReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Top area: text + image ---------- */
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.9s ease-out 0.15s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: clamp(12px, 1vw, 14px);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--red);
    margin-bottom: 20px;
}

.about-heading {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 20px 0;
}

    .about-heading span {
        color: var(--red);
    }

.about-desc {
    color: var(--gray-text);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 560px;
}

    .about-desc:last-of-type {
        margin-bottom: 28px;
    }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 1vw, 15px);
    padding: 14px 26px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 20px rgba(224,32,32,0.25);
}

    .cta-btn:hover {
        background: var(--red-dark);
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(224,32,32,0.35);
    }

    .cta-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.25s ease;
    }

    .cta-btn:hover svg {
        transform: translateX(4px);
    }

/* ---------- Image + quote card ---------- */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    animation: fadeInRight 0.9s ease-out 0.25s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image-wrap img {
    display: block;
    width: 100%;
    height: clamp(260px, 30vw, 400px);
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.04);
}

.quote-card {
    position: absolute;
    top: 8%;
    left: 6%;
    right: 12%;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.quote-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.quote-text strong {
    display: block;
    font-size: clamp(13px, 1vw, 15px);
    color: var(--ink);
    margin-bottom: 2px;
}

.quote-text span {
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--gray-text);
}

/* ---------- Bottom stats row ---------- */
.about-bottom {
    margin-top: clamp(28px, 4vw, 48px);
    background: var(--soft-bg);
    border-radius: var(--radius-md);
    padding: clamp(20px, 3vw, 36px);
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: clamp(20px, 3vw, 32px);
    align-items: start;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .feature-icon img {
        width: 90px;
        height: 90px;
        object-fit: contain;
    }

.feature:hover .feature-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--red);
}

    .feature:hover .feature-icon img {
        filter: brightness(0) invert(1);
    }

.feature h3 {
    margin: 0;
    font-size: clamp(15px, 1.1vw, 17px);
    color: var(--ink);
    font-weight: 700;
}

.feature p {
    margin: 0;
    font-size: clamp(13px, 0.95vw, 14px);
    color: var(--gray-text);
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: clamp(18px, 2.5vw, 32px);
}

.stat {
    text-align: center;
    min-width: 70px;
}

    .stat .num {
        font-size: clamp(20px, 2vw, 28px);
        font-weight: 800;
        color: var(--red);
        display: block;
    }

    .stat .label {
        font-size: clamp(11px, 0.85vw, 13px);
        color: var(--gray-text);
        line-height: 1.4;
    }

/* ---------- Responsive: 600px - 1200px full range ---------- */
@media (max-width: 900px) {
    .about-top {
        grid-template-columns: 1fr;
    }

    .about-bottom {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats {
        grid-column: 1 / -1;
        justify-content: space-between;
    }
}

@media (max-width: 700px) {
    .about-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-card {
        flex-direction: row;
        padding: 12px 14px;
    }

    .stats {
        flex-wrap: wrap;
        row-gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        
        transition: none !important;
    }
}