/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
}

/* CONTAINER (same as Home) */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
/* HERO — MATCHES HOME */
.hero {
    height: 70vh;
    background: url("/media/headers/teambuilding.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SERVICES SECTION */
.offer-section {
    padding: 80px 20px;
    color: #4b2e12;
}

.offer-section h2 {
    text-align: center;
    font-size: 1.6rem;
    font-family: 'Merriweather', serif;
    font-style: bold;
}

.section-divider {
    height: 2px;
    background: #bfa98a;
    border: none;
    width: 100px;
    margin: 0 auto;
}

/* Intro text */
.our-services {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.7;
}

/* SERVICE ITEMS */
.offer-item {
    display: grid;
    grid-template-columns: 300px 1fr; /* image + text */
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    align-items: center;
}
.offer-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.offer-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-text p {
    line-height: 1.7;
    color: #5a3a1d;
}

/* .offer-item h3 {
    min-width: 240px;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
}

.offer-item p {
    max-width: 600px;
    line-height: 1.7;
    color: #5a3a1d;
} */

/* HIGHLIGHT BOX */
.highlight-box {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    border: 1px solid #bfa98a;
    background: #fff8f0;
    text-align: center;
}

/* QUOTE */
.quote {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    line-height: 1.7;
}

/* LOGO SECTIONS */
.logo-section {
    padding: 80px 20px;
    text-align: center;
}

.logo-section.light-bg {
    background: #fff8f0;
}

.logo-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}

/* LOGO GRID */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 900px;
    margin: 50px auto 0;
}

.logo-grid img {
    max-height: 70px;
    max-width: 140px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .offer-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .offer-image img {
        height: 220px;
    }
}
