:root {
    --primary-blue: #1F4788;
    --accent-orange: #FF6B35;
    --success-green: #2ECC71;
    --neutral-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    
    /* Coffee Theme Colors */
    --coffee-brown: #6F4E37;
    --coffee-cream: #D2B48C;
    --coffee-dark: #3E2723;
    --coffee-light: #F5E6D3;
    --coffee-accent: #8B6F47;
    
    /* Dynamic colors (will be updated by JavaScript) */
    --dynamic-primary: var(--primary-blue);
    --dynamic-accent: var(--accent-orange);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* Coffee theme active - smooth transition */
body.coffee-theme-active {
    --dynamic-primary: var(--coffee-brown);
    --dynamic-accent: var(--coffee-accent);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dynamic-primary);
    transition: color 0.8s ease-in-out;
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    height: 70px;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dynamic-primary);
    transition: color 0.8s ease-in-out;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--dynamic-accent);
    transition: color 0.8s ease-in-out;
}

.nav__phone-link {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dynamic-accent);
    padding: 0.5rem 1rem;
    border: 2px solid var(--dynamic-accent);
    border-radius: 4px;
    transition: all 0.8s ease-in-out;
}

.nav__phone-link:hover {
    background-color: var(--dynamic-accent);
    color: var(--white);
}

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-dark);
}

.nav__icon {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        padding: 4rem 2rem;
        transition: right 0.3s;
        z-index: 1001;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .nav__link {
        font-size: 1.125rem;
    }
    
    .nav__phone {
        display: none;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

.floating-call {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--dynamic-accent);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.8s ease-in-out;
}

.floating-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.floating-call svg {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 768px) {
    .floating-call {
        display: flex;
    }
}

.hero {
    background: linear-gradient(135deg, var(--dynamic-primary) 0%, #2a5ba0 100%);
    color: var(--white);
    padding: 3rem 0;
    transition: background 0.8s ease-in-out;
}

body.coffee-theme-active .hero {
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
}

.hero__container {
    display: flex;
    flex-direction: column;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero__text {
    text-align: left;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero__owner {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.hero__cta {
    margin-top: 2rem;
}

.hero__contact {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__contact-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 0.875rem;
    letter-spacing: 0.3px;
}

.hero__contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hero__contact-label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 1);
    margin-top: 0.5rem;
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__contact-phone {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0.75rem 0;
}

.hero__phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--dynamic-accent);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero__phone-link:hover {
    background-color: var(--dynamic-accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.hero__phone-link svg {
    flex-shrink: 0;
}

.hero__contact-hours {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0.25rem;
    padding-left: 0.5rem;
}

.hero__address-container {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__contact-address {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero__maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.hero__maps-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero__maps-btn svg {
    flex-shrink: 0;
}

@media screen and (max-width: 968px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__text {
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.25rem;
    }
    
    .hero__subtitle {
        font-size: 1.125rem;
    }
    
    .hero__owner {
        font-size: 1rem;
    }
    
    .hero__contact {
        text-align: center;
        padding: 2rem;
    }
    
    .hero__phone-link {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__owner {
        font-size: 0.9375rem;
    }
    
    .hero__contact {
        padding: 1.5rem;
    }
    
    .hero__contact-title {
        font-size: 1.5rem;
    }
    
    .hero__contact-phone {
        font-size: 1.5rem;
    }
    
    .hero__phone-link {
        font-size: 1rem;
        padding: 0.625rem 1rem;
    }
    
    .hero__maps-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-height: 48px;
}

.btn--primary {
    background-color: var(--dynamic-accent);
    color: var(--white);
    transition: background-color 0.8s ease-in-out;
}

.btn--primary:hover {
    background-color: var(--coffee-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: var(--dynamic-primary);
    color: var(--white);
    transition: background-color 0.8s ease-in-out;
}

.btn--secondary:hover {
    background-color: #163a6d;
    box-shadow: var(--shadow-hover);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card__icon {
    color: var(--dynamic-accent);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    transition: color 0.8s ease-in-out;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dynamic-primary);
    transition: color 0.8s ease-in-out;
}

.card__text {
    color: var(--text-light);
    line-height: 1.7;
}

.services {
    background-color: var(--neutral-gray);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card__icon {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dynamic-primary);
    transition: color 0.8s ease-in-out;
}

.service-card__description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card__problems {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-card__problems li {
    margin-bottom: 0.5rem;
}

.brands {
    margin-top: 4rem;
    text-align: center;
}

.brands__title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dynamic-primary);
    transition: color 0.8s ease-in-out;
}

.brands__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.brand {
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.expertise {
    background: linear-gradient(135deg, var(--dynamic-primary) 0%, #2a5ba0 100%);
    color: var(--white);
    transition: background 0.8s ease-in-out;
}

body.coffee-theme-active .expertise {
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
}

.expertise__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.expertise .section__title {
    color: var(--white);
}

.expertise__text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.expertise__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.badge__icon {
    font-size: 1.5rem;
}

.badge__text {
    font-weight: 600;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-step__number {
    width: 60px;
    height: 60px;
    background-color: var(--dynamic-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: background-color 0.8s ease-in-out;
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dynamic-primary);
    transition: color 0.8s ease-in-out;
}

.process-step__description {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonials {
    background-color: var(--neutral-gray);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial__stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial__text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial__author {
    font-weight: 700;
    color: var(--dynamic-primary);
    margin-bottom: 0.5rem;
    transition: color 0.8s ease-in-out;
}

.testimonial__date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.faq__list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s;
}

.faq-item__question:hover {
    background-color: var(--neutral-gray);
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item[aria-expanded="true"] .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq__cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

.faq__cta a {
    color: var(--dynamic-accent);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.8s ease-in-out;
}

.contact {
    background-color: var(--neutral-gray);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact__info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact__item {
    margin-bottom: 2rem;
}

.contact__item:last-child {
    margin-bottom: 0;
}

.contact__label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dynamic-primary);
    margin-bottom: 0.5rem;
    transition: color 0.8s ease-in-out;
}

.contact__text {
    color: var(--text-light);
    line-height: 1.7;
}

.contact__link {
    color: var(--dynamic-accent);
    font-weight: 700;
    font-size: 1.25rem;
    transition: color 0.8s ease-in-out;
}

.contact__link:hover {
    color: var(--coffee-dark);
}

.contact__link--large {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact__note {
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact__cta {
    margin-top: 2rem;
    text-align: center;
}

.contact__location {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__building {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    display: block;
}

.contact__image-note {
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}

.contact__map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 300px;
    flex: 1;
    background-color: var(--neutral-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
}

.contact__map-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact__map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media screen and (max-width: 968px) {
    .contact__content {
        grid-template-columns: 1fr;
    }
    
    .contact__location {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .contact__map {
        min-height: 300px;
    }
    
    .contact__map-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .contact__map-text {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 480px) {
    .contact__link--large {
        font-size: 1.5rem;
    }
    
    .contact__info {
        padding: 1.5rem;
    }
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer__badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__badge {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--dynamic-accent);
    transition: color 0.8s ease-in-out;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
    .section__title {
        font-size: 1.75rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn--large {
        padding: 1rem 1.5rem;
        font-size: clamp(0.75rem, 3.5vw, 1rem);
        white-space: normal;
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--dynamic-accent);
    outline-offset: 2px;
}

.coffee-section {
    background: linear-gradient(135deg, var(--coffee-light) 0%, var(--coffee-cream) 50%, var(--coffee-light) 100%);
    position: relative;
    overflow: hidden;
}

.coffee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(111, 78, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(210, 180, 140, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.coffee-section__hero {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.coffee-section__title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coffee-section__subtitle {
    font-size: 1.25rem;
    color: var(--coffee-brown);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.coffee-section__hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.coffee-section__content {
    position: relative;
    z-index: 1;
}

.coffee-section__intro {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(111, 78, 55, 0.1);
    margin-bottom: 4rem;
    text-align: center;
}

.coffee-section__text {
    font-size: 1.125rem;
    color: var(--coffee-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.coffee-section__heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coffee-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.coffee-section__problems {
    margin-bottom: 4rem;
}

.coffee-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coffee-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--coffee-light) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(111, 78, 55, 0.15);
    transition: transform 0.3s, box-shadow 0.3s, padding 0.3s;
    border: 2px solid rgba(111, 78, 55, 0.1);
    cursor: pointer;
    overflow: hidden;
}

.coffee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(111, 78, 55, 0.25);
}

.coffee-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: margin-bottom 0.3s ease;
}

.coffee-card__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    line-height: 1;
}

.coffee-card:hover .coffee-card__icon,
.coffee-card.expanded .coffee-card__icon {
    transform: scale(1.1);
}

.coffee-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 0;
    text-align: center;
    transition: margin-bottom 0.3s ease;
}

.coffee-card__content {
    opacity: 1;
    margin-top: 1.5rem;
}

.coffee-card__text {
    color: var(--coffee-brown);
    line-height: 1.7;
    text-align: center;
}

.coffee-section__benefits {
    margin-bottom: 4rem;
}

.coffee-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coffee-benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(111, 78, 55, 0.1);
    text-align: center;
    border-top: 4px solid var(--coffee-brown);
    transition: transform 0.3s;
}

.coffee-benefit:hover {
    transform: translateY(-4px);
}

.coffee-benefit__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.coffee-benefit__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.coffee-benefit__text {
    color: var(--coffee-brown);
    line-height: 1.7;
}

.coffee-section__brands {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(111, 78, 55, 0.1);
    margin-bottom: 4rem;
}

.coffee-section__brands .brands {
    margin-top: 0;
}

.coffee-section__brands .brands__title {
    color: var(--coffee-dark);
}

.coffee-section__cta {
    text-align: center;
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(62, 39, 35, 0.3);
}

.coffee-section__cta .coffee-section__heading {
    color: var(--white);
    margin-bottom: 1rem;
}

.coffee-section__cta .coffee-section__text {
    color: var(--coffee-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.coffee-section__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media screen and (max-width: 968px) {
    .coffee-section__title {
        font-size: 2.25rem;
    }
    
    .coffee-section__subtitle {
        font-size: 1.125rem;
    }
    
    .coffee-section__grid {
        grid-template-columns: 1fr;
    }
    
    .coffee-benefits {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .coffee-section__title {
        font-size: 1.75rem;
    }
    
    .coffee-section__heading {
        font-size: 1.5rem;
    }
    
    .coffee-section__buttons {
        flex-direction: column;
    }
    
    .coffee-section__buttons .btn {
        width: 100%;
    }
}

