/* ABOUT PAGE */

h1,
h2 {
    font-family: 'Playfair Display', serif;
}

.hero-left span,
.founder-text span,
.why span,
.journey span,
.mission-vision h5 {
    color: #C89A2B;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
}

/* HERO */

.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 60px 80px;
}

.hero-left {
    width: 48%;
}

.hero-left h1 {
    color: #0D2342;
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.hero-left p {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
}

.btn-dark {
    display: inline-block;
    margin-top: 15px;
    padding: 16px 30px;
    background: #0D2342;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #16335F;
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
    width: 50%;
}

.hero-right img {
    position: relative;
    width: 100%;
    z-index: 2;
}

.image-bg {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 90%;
    height: 90%;
    background: #0D2342;
    z-index: 1;
}

/* FOUNDER */

.founder {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 80px;
    background: #FAFAF8;
}

.founder-image {
    position: relative;
    width: 40%;
}

.founder-image img {
    position: relative;
    width: 100%;
    max-width: 380px;
    z-index: 3;
}

.founder-shape {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 240px;
    height: 240px;
    background: #E7E7E7;
    z-index: 1;
}

.founder-dots {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#C89A2B 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 2;
}

.founder-text {
    width: 60%;
}

.founder-text h2 {
    color: #0D2342;
    font-size: 42px;
    line-height: 1.1;
    margin: 12px 0 10px;
}

.founder-text h3 {
    color: #C89A2B;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

.founder-text p {
    color: #1A1A1A;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
    text-align: center;
}

.stats h4 {
    color: #0D2342;
    font-size: 16px;
}

.stats p {
    font-size: 12px;
    line-height: 1.5;
}

/* MISSION AND VISION */

.mission-vision {
    margin: 60px 80px;
    padding: 40px;
    background: #FAFAF8;
    text-align: center;
}

.mission-vision h5 {
    margin-bottom: 25px;
}

.mv-boxes {
    display: flex;
    gap: 50px;
    text-align: left;
}

.mv-box {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 25px;
}

.circle-icon {
    display: grid;
    place-items: center;
    min-width: 75px;
    height: 75px;
    background: #0D2342;
    border-radius: 50%;
    color: white;
    font-size: 30px;
}

.mv-box h3 {
    color: #0D2342;
    margin-bottom: 10px;
}

.mv-box p {
    color: #1A1A1A;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* WHY CHOOSE VERAVIA */

.why {
    padding: 60px 80px;
    text-align: center;
}

.why h2,
.journey h2 {
    color: #0D2342;
    font-size: 42px;
    margin: 12px 0 35px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 1px solid #C89A2B;
    border-radius: 50%;
    color: #C89A2B;
    font-size: 28px;
}

.why-card h3 {
    color: #0D2342;
    font-size: 16px;
    margin-bottom: 15px;
}

.why-card p {
    color: #1A1A1A;
    font-size: 13px;
    line-height: 1.7;
}

/* JOURNEY */

.journey {
    padding: 60px 80px;
    background: #FAFAF8;
    text-align: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}

.step h4 {
    color: #C89A2B;
    font-size: 13px;
    margin-bottom: 10px;
}

.step div {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #0D2342;
    border-radius: 50%;
    color: white;
    font-size: 22px;
}

.step h3 {
    color: #0D2342;
    font-size: 14px;
    margin-bottom: 8px;
}

.step p {
    color: #1A1A1A;
    font-size: 12px;
    line-height: 1.6;
}

/* CALL TO ACTION */

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 60px 80px;
    padding: 45px 60px;
    background: #0D2342;
    border-radius: 10px;
    color: white;
}

.cta h2 {
    font-size: 32px;
}

.cta p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-gold,
.btn-outline {
    padding: 14px 25px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.btn-gold {
    background: #C89A2B;
    color: white;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn-gold:hover,
.btn-outline:hover {
    transform: translateY(-3px);
}

/* TABLET AND MOBILE ABOUT RESPONSIVE */

@media (max-width: 900px) {
    .about-hero,
    .founder,
    .cta {
        flex-direction: column;
        padding: 45px 30px;
        gap: 40px;
    }

    .hero-left,
    .hero-right,
    .founder-image,
    .founder-text {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-right img,
    .founder-image img {
        width: 100%;
        max-width: 520px;
        display: block;
        margin: 0 auto;
    }

    .image-bg,
    .founder-shape,
    .founder-dots {
        display: none;
    }

    .stats,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-boxes {
        flex-direction: column;
        gap: 30px;
    }

    .mission-vision {
        margin: 45px 30px;
        padding: 35px 25px;
    }

    .why,
    .journey {
        padding: 45px 30px;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cta {
        margin: 45px 30px;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .about-hero,
    .founder,
    .why,
    .journey {
        padding: 35px 18px;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .founder-text h2,
    .why h2,
    .journey h2 {
        font-size: 30px;
    }

    .stats,
    .why-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .mv-box {
        flex-direction: column;
        text-align: center;
    }

    .mission-vision,
    .cta {
        margin: 35px 18px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline,
    .btn-dark {
        text-align: center;
    }
}