
:root {

    --green: #1F3A2E;
    --gold: #C5A678;
    --cream: #FFFDF9;
    --light: #F8F5EF;
    --brown: #3E2D20;
    --text: #6E6256;

}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-title span {
    color: #C5A678;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 48px;
    margin: 15px 0;
    color: #3E2D20;
}

.section-title p {
    color: #6E6256;
    line-height: 1.8;
}

.mission-section {
    padding: 50px 0;
    background: #F8F5EF;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.mission-card {
    background: #FFFDF9;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #1F3A2E;
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.values-section {
    padding: 100px 0;
    background: #FFFDF9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px;
    border-radius: 18px;
    background: #fff;
    transition: .4s;
}

.value-card:hover {
    background: #1F3A2E;
    color: #fff;
}

.value-card:hover p,
.value-card:hover h3 {
    color: #fff;
}

.value-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.journey-section {
    padding: 100px 0;
    background: #C5A678;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.timeline-item {
    background: #FFFDF9;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.timeline-number {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #1F3A2E;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.quote-section {
    background: url('../images/about/istockphoto-1755682479-612x612.jpg') center/cover fixed; /* no-repeat */
    padding: 150px 20px;
    position: relative;
}

.quote-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 58, 46, .75);
}

.quote-section .overlay {
    position: relative;
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.quote-section h2 {
    font-size: 46px;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
}

.quote-section span {
    display: block;
    margin-top: 30px;
    color: #C5A678;
    letter-spacing: 2px;
}





/*========================*/

.why-section {

    padding: 110px 0;

    background: #FFFDF9;

}

.why-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.why-image img {

    width: 100%;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

}

.why-box {

    display: flex;

    gap: 25px;

    margin-bottom: 35px;

}

.why-icon {

    width: 70px;

    height: 70px;

    background: #C5A678;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    flex-shrink: 0;

}

.counter-section {

    padding: 100px 0;

    background: #1F3A2E;

}

.counter-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.counter-box {

    text-align: center;

    color: #fff;

}

.counter-box h2 {

    font-size: 70px;

    color: #C5A678;

}

.counter-box p {

    font-size: 18px;

    letter-spacing: 1px;

}

.team-section {

    padding: 110px 0;

    background: #F8F5EF;

}

.team-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

.team-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    text-align: center;

    transition: .4s;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

}

.team-card:hover {

    transform: translateY(-10px);

}

.team-card img {

    width: 100%;

    height: 380px;

    object-fit: cover;

}

.team-card h3 {

    margin-top: 25px;

    color: #3E2D20;

}

.team-card span {

    display: block;

    color: #C5A678;

    margin: 10px 0;

    font-weight: 600;

}

.team-card p {

    padding: 0 25px 30px;

    color: #6E6256;

}

.about-gallery {

    padding: 110px 0;

    background: #FFFDF9;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}

.gallery-grid img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 20px;

    transition: .4s;

    cursor: pointer;

}

.gallery-grid img:hover {

    transform: scale(1.05);

}




.testimonial-section {

    padding: 110px 0;

    background: #F8F5EF;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

.testimonial-card {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    text-align: center;

    transition: .4s;

}

.testimonial-card:hover {

    transform: translateY(-10px);

}

.stars {

    font-size: 24px;

    color: #C5A678;

    margin-bottom: 20px;

}

.testimonial-card h4 {

    margin-top: 25px;

    color: #1F3A2E;

}

.cta-section {

    padding: 120px 20px;

    background: #1F3A2E;

    text-align: center;

    color: #fff;

}

.cta-section h2 {

    font-size: 52px;

    margin-bottom: 20px;

}

.cta-btn {

    display: inline-block;

    margin-top: 35px;

    padding: 18px 45px;

    background: #C5A678;

    color: #fff;

    text-decoration: none !important;

    border-radius: 50px;

    transition: .4s;

}

.cta-btn:hover {

    background: #fff;

    color: #1F3A2E;

}

.instagram-section {

    padding: 110px 0;

    background: #FFFDF9;

}

.instagram-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 15px;

}

.instagram-grid img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 15px;

    transition: .4s;

}

.instagram-grid img:hover {

    transform: scale(1.08);

}

.newsletter-section {

    padding: 100px 20px;

    background: #C5A678;

    text-align: center;

}

.newsletter-section h2 {

    color: #fff;

    font-size: 44px;

}

.newsletter-section p {

    color: #fff;

    margin: 20px 0 35px;

}

.newsletter-section form {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}

.newsletter-section input {

    width: 420px;

    padding: 18px;

    border: none;

    border-radius: 50px;

}

.newsletter-section button {

    padding: 18px 40px;

    border: none;

    border-radius: 50px;

    background: #1F3A2E;

    color: #fff;

    cursor: pointer;

    transition: .4s;

}

.newsletter-section button:hover {

    background: #3E2D20;

}



@media(max-width:992px) {

    .why-wrapper,
    .team-grid,
    .counter-grid,
    .testimonial-grid {

        grid-template-columns: 1fr;

    }

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .instagram-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .section-title h2 {

        font-size: 34px;

    }

    .quote-section h2 {

        font-size: 32px;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .instagram-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .newsletter-section input {

        width: 100%;

    }

    .cta-section h2 {

        font-size: 36px;

    }

    .team-card img {

        height: 320px;

    }

}

@media(max-width:576px) {

    .instagram-grid {

        grid-template-columns: 1fr 1fr;

    }

    .counter-box h2 {

        font-size: 48px;

    }

    .newsletter-section button {

        width: 100%;

    }

}