/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fef3c7;
    --bg: #0f0f0f;
    --surface: #1a1a1a;
    --surface-2: #242424;
    --border: #2e2e2e;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(0,0,0,0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.5;
}

/* ===== Header ===== */
.header {
    background: #111;
    border-bottom: 2px solid var(--accent);
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.header-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== Main Layout ===== */
.main {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

/* ===== Cards ===== */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title .step-num {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
    background: var(--surface-2);
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--border); }

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-danger {
    background: var(--error);
    color: #fff;
}
.btn-danger:hover { background: #dc2626; }

.btn-small {
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.15s;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

textarea { resize: vertical; min-height: 80px; }

/* ===== Price display ===== */
.price-result {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.price-result .label { color: var(--text-secondary); font-size: 0.85rem; }
.price-result .value { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.price-result .sub { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== Slot picker ===== */
.date-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.date-nav input[type="date"] {
    flex: 1;
    max-width: 200px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.slot-btn {
    padding: 8px 4px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--accent);
    background: rgba(245,158,11,0.1);
}

.slot-btn.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 700;
}

.slot-btn.booked, .slot-btn.blocked, .slot-btn.past {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.slot-btn.blocked { border-color: #dc2626; color: #dc2626; }

/* ===== Tyre search results ===== */
.tyre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.tyre-card {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    cursor: pointer;
    transition: all 0.15s;
}

.tyre-card:hover { border-color: var(--accent); }

.tyre-card.selected {
    border-color: var(--accent);
    background: rgba(245,158,11,0.08);
}

.tyre-card .size { font-weight: 700; font-size: 0.95rem; color: var(--accent); }
.tyre-card .brand { font-size: 0.85rem; color: var(--text-secondary); margin: 4px 0; }
.tyre-card .price { font-size: 1rem; font-weight: 600; }
.tyre-card .stock { font-size: 0.75rem; color: var(--text-secondary); }

/* ===== Step progress ===== */
.steps {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}

.step {
    flex: 1;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-secondary);
    border-right: 1px solid var(--border);
    position: relative;
}
.step:last-child { border-right: none; }

.step.active {
    background: var(--accent);
    color: #000;
    font-weight: 700;
}

.step.done {
    background: rgba(245,158,11,0.15);
    color: var(--accent);
}

/* ===== Confirmation box ===== */
.confirm-box {
    background: rgba(34,197,94,0.08);
    border: 1px solid var(--success);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.confirm-box .ref {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--success);
    letter-spacing: 2px;
    margin: 12px 0;
}

.confirm-box .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.confirm-box .detail-row:last-child { border-bottom: none; }
.confirm-box .detail-label { color: var(--text-secondary); }

/* ===== Tables ===== */
.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

thead th {
    background: var(--surface-2);
    padding: 10px 12px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

tbody tr:hover { background: var(--surface-2); }

/* ===== Status badges ===== */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-confirmed { background: rgba(245,158,11,0.15); color: var(--warning); }
.badge-completed { background: rgba(34,197,94,0.15); color: var(--success); }
.badge-cancelled { background: rgba(239,68,68,0.15); color: var(--error); }
.badge-blocked { background: rgba(239,68,68,0.15); color: var(--error); }
.badge-available { background: rgba(34,197,94,0.15); color: var(--success); }

/* ===== Alerts ===== */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.alert-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.alert-info { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; }

/* ===== Login page ===== */
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 50%, #0a0a0a 100%);
    padding: 20px;
}

.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.login-card h1 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 800;
}

.login-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

/* ===== Stats grid ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
}

.stat-card .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-card .lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===== Nav tabs ===== */
.nav-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.nav-tab {
    padding: 8px 18px;
    border-radius: 8px 8px 0 0;
    border: 1px solid transparent;
    border-bottom: none;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-secondary);
    background: none;
    transition: all 0.15s;
    margin-bottom: -1px;
}

.nav-tab.active {
    background: var(--surface);
    border-color: var(--border);
    border-bottom-color: var(--surface);
    color: var(--accent);
}

.nav-tab:hover:not(.active) { color: var(--text-primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== Empty states ===== */
.empty {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
    font-size: 0.9rem;
}

/* ===== Utility ===== */
.hidden { display: none !important; }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-muted { color: var(--text-secondary); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
    .tyre-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .main { padding: 16px 12px 40px; }
    .header { padding: 0 16px; }
    .header h1 { font-size: 1rem; }
}

/* ===== Body: padding for sticky CTA bar ===== */
body { padding-bottom: 64px; }

/* ===== Header: updated brand + phone link ===== */
.header-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}

.header-logo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.3px;
    line-height: 1.1;
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    transition: all 0.15s;
    white-space: nowrap;
}

.header-phone-link:hover {
    background: var(--accent);
    color: #000;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #111 0%, #1a1500 50%, #111 100%);
    border-bottom: 1px solid var(--border);
    padding: 40px 20px 44px;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 680px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-call-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--accent);
    color: #000;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-call-big:hover { background: var(--accent-hover); }

.btn-whatsapp-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-whatsapp-big:hover { background: #1da851; }

/* ===== Trust section ===== */
.trust-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px;
}

.trust-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.trust-box {
    text-align: center;
    padding: 16px 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.trust-icon {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 6px;
}

.trust-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trust-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== Booking section ===== */
.booking-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 20px 0;
    text-align: center;
}

.booking-intro h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.booking-intro-sub {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Areas section ===== */
.areas-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 20px;
}

.areas-inner {
    max-width: 900px;
    margin: 0 auto;
}

.areas-inner h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.areas-intro {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.areas-regions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
}

.areas-region h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

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

.areas-list li { margin-bottom: 4px; }

.areas-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.15s;
}

.areas-list a:hover { color: var(--accent); }

/* ===== FAQ section ===== */
.faq-section {
    background: var(--bg);
    padding: 40px 20px;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-inner h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
}

.faq-q {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.faq-a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
}

.footer-inner { max-width: 900px; margin: 0 auto; }

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

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s;
}

.footer-links a:hover { color: var(--accent); }
.footer-sep { color: var(--border); font-size: 0.88rem; }

.footer-address {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.footer-copy { color: #555; font-size: 0.75rem; }

/* ===== Sticky CTA bar ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.5);
}

.sticky-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.15s;
}

.sticky-call:hover { background: var(--accent-hover); }

.sticky-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.15s;
}

.sticky-whatsapp:hover { background: #1da851; }

/* ===== Site navigation bar ===== */
.site-nav {
    background: #111;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 200;
}
.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
}
.nav-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    margin: 8px 0;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: border-color 0.15s, color 0.15s;
}
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #111;
    border-bottom: 2px solid var(--accent);
    flex-direction: column;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.nav-links.open { display: flex; }
.site-nav-link {
    display: block;
    padding: 14px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border-top: 1px solid var(--border);
    transition: color 0.15s, background 0.15s;
}
.site-nav-link:hover,
.site-nav-link.active {
    color: var(--accent);
    background: rgba(245,158,11,0.06);
}
/* Desktop: horizontal row */
@media (min-width: 640px) {
    .site-nav-inner { justify-content: flex-start; }
    .nav-toggle { display: none; }
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        border-bottom: none;
        background: transparent;
        box-shadow: none;
    }
    .site-nav-link {
        padding: 10px 14px;
        border-top: none;
        border-bottom: 2px solid transparent;
        font-size: 0.82rem;
        white-space: nowrap;
        transition: color 0.15s, border-color 0.15s;
    }
    .site-nav-link:hover,
    .site-nav-link.active {
        background: none;
        border-bottom-color: var(--accent);
    }
}

/* ===== FAQ accordion ===== */
.faq-q {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== Photo Gallery ===== */
.photo-gallery { background: #0a0a0a; padding: 48px 20px; border-top: 1px solid var(--border); }
.photo-gallery-inner { max-width: 960px; margin: 0 auto; }
.photo-gallery-title { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: 24px; }
.photo-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.photo-card { border-radius: 8px; overflow: hidden; position: relative; background: var(--surface); }
.photo-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.photo-card--featured img { height: 300px; }
.photo-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.82)); padding: 20px 14px 12px; font-size: 0.8rem; color: #fff; font-weight: 600; letter-spacing: 0.02em; }
@media (min-width: 640px) {
    .photo-grid { grid-template-columns: repeat(3, 1fr); }
    .photo-card img { height: 220px; }
    .photo-card--featured img { height: 220px; }
}

/* ===== Reviews Section ===== */
.reviews-section { background: var(--surface); border-top: 1px solid var(--border); padding: 48px 20px; }
.reviews-inner { max-width: 960px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 32px; }
.reviews-header h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.reviews-rating-badge { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.reviews-stars { color: var(--accent); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-score { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.reviews-count { font-size: 0.85rem; color: var(--text-secondary); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.review-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; padding: 18px 16px; }
.review-stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.review-meta { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.reviews-see-all { display: inline-block; color: var(--accent); font-size: 0.88rem; font-weight: 600; text-decoration: none; border: 1px solid var(--accent); padding: 8px 18px; border-radius: 6px; transition: background 0.15s; }
.reviews-see-all:hover { background: rgba(245,158,11,0.1); }
@media (min-width: 640px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Responsive additions ===== */
@media (max-width: 640px) {
    .hero-h1 { font-size: 1.25rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-regions { grid-template-columns: repeat(2, 1fr); }
    .btn-call-big, .btn-whatsapp-big {
        width: 100%;
        font-size: 0.95rem;
        padding: 13px 20px;
    }
    .header-phone-link {
        font-size: 0.78rem;
        padding: 5px 10px;
    }
}
