.section-teaser {
    padding: 8rem 10%;
    text-align: center;
    background: var(--white);
}

.section-teaser h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.section-teaser p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.teaser-card {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    height: 480px;
    display: block;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.teaser-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            transparent 70%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.teaser-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.teaser-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: block;
}

.teaser-content .btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3e7a36 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teaser-card:hover .btn {
    transform: scale(1.1);
    background: white;
    color: var(--primary-green);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .teaser-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific Teaser Card Backgrounds */
.teaser-card.card-agha {
    background-image: url('../../../images/al_agha_mango.png');
}

.teaser-card.card-ketchup {
    background-image: url('../../../images/satr_ketchup.png');
}

.teaser-card.card-hotsauce {
    background-image: url('../../../images/satr_hotsauce.png');
}

/* Specific Hero Slide Backgrounds */
.slide.slide-1 {
    background-image: url('../../../images/hero_bg.png');
}

.slide.slide-2 {
    background-image: url('../../../images/al_agha_mango.png');
}

.slide.slide-3 {
    background-image: url('../../../images/satr_ketchup.png');
}

/* About Brief Section Styles */
.about-brief {
    padding: 8rem 5%;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-brief::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../../images/hero_bg.png');
    opacity: 0.02;
    pointer-events: none;
}

.brief-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 5rem;
    border-radius: 50px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 90, 39, 0.08);
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-brief h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.about-brief h2::before,
.about-brief h2::after {
    content: '';
    height: 3px;
    width: 40px;
    background: var(--primary-gold);
    border-radius: 10px;
}

.about-brief p {
    font-size: 1.35rem;
    line-height: 2.2;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .about-brief {
        padding: 3rem 4%;
    }

    .brief-container {
        padding: 1.8rem 1.2rem;
        border-radius: 20px;
    }

    .about-brief h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-brief h2::before,
    .about-brief h2::after {
        width: 25px;
        height: 2px;
    }

    .about-brief p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Teaser Section Compact Styling */
    .section-teaser {
        padding: 3rem 4%;
    }

    .section-teaser h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section-teaser p {
        font-size: 0.9rem;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 2rem;
    }
}
