:root {
    --coffee-dark: #1a0f07;
    --coffee-mid: #3d2010;
    --coffee-warm: #6b3a1f;
    --coffee-tan: #a0622a;
    --coffee-gold: #c9882f;
    --coffee-cream: #f5ede0;
    --coffee-light: #fdf8f2;
    --accent: #d4802a;
    --accent-light: #e8a050;
    --white: #ffffff;
    --text-dark: #1a0f07;
    --text-mid: #4a3728;
    --text-light: #8a7060;
    --shadow-warm: 0 8px 40px rgba(100, 50, 20, 0.18);
    --shadow-deep: 0 20px 60px rgba(26, 15, 7, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden !important;
}

/* ── UTILITY ── */
.text-accent { color: var(--accent); }
.bg-cream { background: var(--coffee-cream); }
.bg-dark-coffee { background: var(--coffee-dark); }
.bg-mid-coffee { background: var(--coffee-mid); }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--coffee-dark);
}

.section-title.light { color: var(--white); }

.divider-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

.divider-line.center { margin-left: auto; margin-right: auto; }

/* ── NAVBAR ── */
#mainNav {
    background: rgba(26, 15, 7, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.9rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

#mainNav.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand span { color: var(--accent); }

.navbar-brand i {
    font-size: 1.3rem;
    color: var(--accent);
}

.navbar-toggler {
    border: 1px solid var(--accent) !important;
    padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4802a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--accent) !important; }

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 6px;
    padding: 0.4rem 1.1rem !important;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 128, 42, 0.4);
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url('coffee-machine-hero.jpg') center center / cover no-repeat;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,15,7,0.88) 0%, rgba(61,32,16,0.75) 60%, rgba(26,15,7,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 3rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201, 136, 47, 0.2);
    border: 1px solid rgba(201, 136, 47, 0.4);
    color: var(--coffee-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.1rem;
}

.hero-title span { color: var(--coffee-gold); }

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-trust-item i { color: var(--coffee-gold); font-size: 0.9rem; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn-primary-cta {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.9rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(212, 128, 42, 0.4);
}

.btn-primary-cta:hover {
    background: var(--accent-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 128, 42, 0.5);
}

.btn-outline-cta {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 0.9rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp-cta {
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.9rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-cta:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero stats strip */
.hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.4rem 0;
    flex-shrink: 0;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
}

.hero-stats .stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--coffee-gold);
    display: block;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ── QUICK FORM ── */
#quick-form {
    background: var(--coffee-light);
    padding: 3.5rem 0;
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-warm);
    padding: 2.2rem 2.5rem;
}

.form-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.form-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    border: 1.5px solid #e8ddd4;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.87rem;
    /* font-family: 'Poppins', sans-serif; */
    color: var(--text-dark);
    background: var(--coffee-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 128, 42, 0.15);
    background: var(--white);
    outline: none;
}

.form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
}

.btn-submit {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(212, 128, 42, 0.35);
}

.btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

#form-notification {
    display: none;
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 500;
    text-align: center;
}

#form-notification.success {
    background: #edf7f0;
    color: #1a7f4b;
    border: 1px solid #b7e4c7;
}

#form-notification.error {
    background: #fdf0ef;
    color: #c0392b;
    border: 1px solid #f5c6c2;
}

/* ── VALUE STRIP ── */
#value-strip {
    background: var(--coffee-dark);
    padding: 2.2rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 136, 47, 0.15);
    border: 1px solid rgba(201, 136, 47, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i { color: var(--coffee-gold); font-size: 1.1rem; }

.value-text-main {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.value-text-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* ── SERVICES ── */
#services { padding: 5rem 0; background: var(--white); }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    margin-bottom: 3.5rem;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-img {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

/* on mobile set img height */
@media (max-width: 768px) {
    .service-block { grid-template-columns: 1fr; }
    .service-img { height: 350px; }
}


.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,15,7,0.5) 0%, transparent 60%);
}

.service-block.reverse .service-img::after {
    background: linear-gradient(to left, rgba(26,15,7,0.5) 0%, transparent 60%);
}

.service-content {
    background: var(--coffee-light);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    display: inline-block;
    background: rgba(212, 128, 42, 0.12);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.service-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--coffee-dark);
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.service-content p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
}

.service-list li {
    font-size: 0.83rem;
    color: var(--text-mid);
    padding: 0.45rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-list li i { color: var(--accent); font-size: 0.8rem; }

/* ── COMMON PROBLEMS ── */
#common-problems {
    padding: 5rem 0;
    background: var(--coffee-cream);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.3rem;
    margin-top: 2.5rem;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(100,50,20,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.problem-icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 128, 42, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    display: none;
}

.problem-icon i { color: var(--accent); font-size: 1rem; }

.problem-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 0.3rem;
}

.problem-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ── REPAIR DETAILS ── */
#repair-details {
    padding: 5rem 0;
    background: var(--white);
}

.repair-tabs .nav-tabs {
    border: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.repair-tabs .nav-link {
    border: 1.5px solid #e8ddd4 !important;
    border-radius: 8px !important;
    padding: 0.55rem 1.2rem !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: var(--text-mid) !important;
    background: var(--coffee-light);
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.2s;
}

.repair-tabs .nav-link.active, .repair-tabs .nav-link:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-color: var(--accent) !important;
}

.repair-detail-block {
    background: var(--coffee-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.repair-detail-block h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.repair-detail-block p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.repair-detail-block ul {
    padding-left: 0;
    list-style: none;
}

.repair-detail-block ul li {
    font-size: 0.84rem;
    color: var(--text-mid);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.repair-detail-block ul li i { color: var(--accent); margin-top: 3px; font-size: 0.75rem; }

/* ── PRICING ── */
#pricing {
    padding: 5rem 0;
    background: var(--coffee-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.25s;
}

.pricing-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(201, 136, 47, 0.5);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: rgba(212, 128, 42, 0.15);
    border-color: var(--accent);
}

.pricing-icon {
    width: 58px;
    height: 58px;
    background: rgba(201, 136, 47, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.pricing-icon i { color: var(--coffee-gold); font-size: 1.4rem; }

.pricing-card .price-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.pricing-card .price-unit {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.8rem;
}

.pricing-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.6;
}

/* ── BRANDS ── */
#brands {
    padding: 4rem 0;
    background: var(--coffee-light);
}

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

@media (max-width: 768px) {
    .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
}

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
}

.brand-item {
    background: var(--white);
    border: 1.5px solid #e8ddd4;
    border-radius: var(--radius);
    padding: 1.2rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s;
    text-align: center;
    min-height: 80px;
}

.brand-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(212, 128, 42, 0.15);
    transform: translateY(-2px);
}

.brand-item img {
    max-height: 36px;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.25s;
}

.brand-item:hover img {
    opacity: 0.9;
}

.brand-item span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* ── AREAS ── */
#areas {
    padding: 5rem 0;
    background: var(--white);
}

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

.areas-regions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.area-region-card {
    background: var(--coffee-light);
    border: 1.5px solid #e8ddd4;
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem 1.2rem;
}

.area-region-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.area-region-card-header i {
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.area-region-card-header span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--coffee-dark);
}

.area-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.area-tag {
    background: rgba(212, 128, 42, 0.1);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-warm);
}

.map-wrapper iframe { display: block; }

/* ── HOURS ── */
#hours {
    background: var(--coffee-mid);
    padding: 3.5rem 0;
}

.hours-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hours-icon { font-size: 2.5rem; color: var(--coffee-gold); }
/* center on mobile */
@media (max-width: 768px) {
    .hours-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hours-icon {
        align-self: center;
    }

    .hours-info{
        text-align: center;
        width: 100%;
    }

    .hours-times .time, .hours-times .days {
        text-align: center;
        width: 100%;
    }
}

.hours-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.hours-info p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.hours-times {
    margin-left: auto;
    text-align: right;
}

.hours-times .time {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coffee-gold);
    line-height: 1;
}

.hours-times .days {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ── CONTACT ── */
#contact {
    padding: 5rem 0;
    background: var(--coffee-cream);
}

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

.contact-info-block h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coffee-dark);
    margin-bottom: 0.8rem;
}

.contact-info-block p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    padding: 0.9rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(100,50,20,0.06);
    transition: all 0.2s;
    min-width: 0;
    overflow: hidden;
}

.contact-link-item:hover {
    box-shadow: var(--shadow-warm);
    transform: translateX(4px);
    color: var(--text-dark);
}

.contact-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-link-icon.phone { background: rgba(212, 128, 42, 0.12); }
.contact-link-icon.phone i { color: var(--accent); }
.contact-link-icon.whatsapp { background: rgba(37, 211, 102, 0.12); }
.contact-link-icon.whatsapp i { color: #25D366; }
.contact-link-icon.email { background: rgba(66, 133, 244, 0.1); }
.contact-link-icon.email i { color: #4285F4; }

.contact-link-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-link-text strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-link-text span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coffee-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.contact-chevron {
    color: var(--text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-warm);
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ── FLOATING BUTTONS ── */
#float-btns {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    position: relative;
}

.float-btn:hover { transform: scale(1.1); }

.float-btn.call { background: var(--accent); color: var(--white); }
.float-btn.whatsapp { background: #25D366; color: var(--white); }
.float-btn.email { background: #4285F4; color: var(--white); }

.float-btn .tooltip-text {
    position: absolute;
    right: 65px;
    background: rgba(26,15,7,0.9);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.float-btn:hover .tooltip-text { opacity: 1; }

/* ── FOOTER ── */
footer {
    background: var(--coffee-dark);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.footer-brand span { color: var(--accent); }

.footer-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 2.5rem;
    padding-top: 1.3rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .service-block { grid-template-columns: 1fr; }
    .service-img { min-height: 260px; }
    .service-block.reverse { direction: ltr; }

    .areas-wrapper { grid-template-columns: 1fr; }
    .areas-regions-grid { grid-template-columns: 1fr 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hours-times { margin-left: 0; text-align: left; width: 100%; }
    .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
    .form-card { padding: 1.4rem; }
    .contact-form-card { padding: 1.4rem; }
    .areas-regions-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
}

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
    .areas-regions-grid { grid-template-columns: 1fr; }
}

/* scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}