/* ===================================================
   Crumpsall 24Hr Callout - Futuristic Dark Theme
   =================================================== */

:root {
    --bg-dark: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-surface: #0f1520;
    --text-primary: #e8edf5;
    --text-secondary: #8892a4;
    --text-muted: #5a6478;
    --accent: #00d4ff;
    --accent-2: #7b2ff7;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --accent-glow-2: rgba(123, 47, 247, 0.3);
    --gradient: linear-gradient(135deg, #00d4ff, #7b2ff7);
    --gradient-subtle: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(123,47,247,0.1));
    --border: rgba(255,255,255,0.06);
    --border-accent: rgba(0,212,255,0.2);
    --danger: #ff4757;
    --success: #2ed573;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(0,212,255,0.15);
    --nav-height: 70px;
    --emergency-height: 40px;
    --font-body: 'Exo 2', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + var(--emergency-height) + 20px); }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: #fff; }

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

/* ---- Emergency Bar ---- */
.emergency-bar {
    background: linear-gradient(90deg, #1a0a0a, #2a0505, #1a0a0a);
    border-bottom: 1px solid rgba(255,71,87,0.3);
    height: var(--emergency-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.emergency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,71,87,0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(255,71,87,0); }
}
.emergency-phone {
    color: #ff6b7a !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}
.emergency-phone small {
    opacity: 0.7;
    font-weight: 400;
}

/* ---- Navigation ---- */
.main-nav {
    position: fixed;
    top: var(--emergency-height);
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}
.main-nav.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary) !important;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--font-display); font-size: 1rem; letter-spacing: 2px; }
.logo-text small { font-size: 0.65rem; color: var(--accent); letter-spacing: 3px; font-weight: 500; }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}
.nav-links a {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
}
.btn-primary:hover {
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-glow-2);
    transform: translateY(-2px);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--accent);
}
.btn-outline:hover {
    background: rgba(0,212,255,0.1);
    border-color: var(--accent);
    color: #fff;
}
.btn-glow {
    background: var(--gradient);
    color: #fff !important;
    animation: btnGlow 2s ease-in-out infinite;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
}
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 10px var(--accent-glow); }
    50% { box-shadow: 0 0 25px var(--accent-glow), 0 0 50px var(--accent-glow-2); }
}
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-danger {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #fff;
}
.btn-danger:hover {
    box-shadow: 0 0 30px rgba(255,71,87,0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* ---- Nav Mega Dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { vertical-align: middle; transition: transform 0.3s; }
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 580px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 1010;
}
.nav-dropdown:hover .dropdown-mega,
.nav-dropdown:focus-within .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-heading {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}
.dropdown-col a {
    display: block;
    padding: 6px 0;
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s;
    white-space: nowrap;
}
.dropdown-col a:hover {
    color: var(--text-primary) !important;
    padding-left: 4px;
}
.dropdown-cta {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    text-align: center;
}
.dropdown-cta a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent) !important;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }

/* ---- Hero Section ---- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + var(--emergency-height));
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,212,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(123,47,247,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 550px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat p { color: var(--text-muted); font-size: 0.85rem; }

/* ---- Section Styles ---- */
.section {
    padding: 80px 0;
}
.section-dark {
    background: var(--bg-surface);
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

/* ---- Cards ---- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}
.card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.card-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--accent);
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ---- Grid Layouts ---- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ---- Tyre Catalogue ---- */
.tyre-filters {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}
.filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: end;
}
.filter-group {
    flex: 1;
    min-width: 150px;
}
.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
}
.filter-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238892a4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.filter-actions {
    display: flex;
    gap: 8px;
    align-items: end;
}
.filter-actions .btn { padding: 10px 20px; }

.tyre-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tyre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}
.tyre-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.tyre-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.tyre-card-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #0d1117, #151d2b);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.tyre-card-image img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s;
}
.tyre-card:hover .tyre-card-image img {
    transform: scale(1.05);
}
.tyre-card-image .season-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.season-summer { background: rgba(255, 165, 0, 0.15); color: #ffa500; border: 1px solid rgba(255,165,0,0.3); }
.season-winter { background: rgba(100, 180, 255, 0.15); color: #64b4ff; border: 1px solid rgba(100,180,255,0.3); }
.season-allseason { background: rgba(46, 213, 115, 0.15); color: #2ed573; border: 1px solid rgba(46,213,115,0.3); }

.tyre-card-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tyre-card-brand {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.tyre-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.tyre-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.tyre-spec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.tyre-spec strong {
    color: var(--text-primary);
}
.tyre-card-cta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.tyre-card-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.tyre-card-cta a:hover {
    background: rgba(0,212,255,0.15);
    color: #fff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination button {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s;
}
.pagination button:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--text-primary);
}
.pagination button.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}
.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ---- Page Header ---- */
.page-header {
    padding: calc(var(--nav-height) + var(--emergency-height) + 40px) 0 40px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}
.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ---- Services Page ---- */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
}
.service-block:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.service-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}
.service-visual svg { color: var(--accent); }

.features-list {
    list-style: none;
    margin-top: 16px;
}
.features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}
.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.6;
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Areas Served */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.area-tag {
    padding: 8px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.area-tag:hover {
    border-color: var(--border-accent);
    color: var(--accent);
}

/* ---- Brand Logos Strip ---- */
.brands-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
}
.brand-chip {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.brand-chip:hover {
    border-color: var(--border-accent);
    color: var(--accent);
}

/* ---- About Page ---- */
.about-content {
    max-width: 800px;
}
.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(123,47,247,0.05));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.03) 0%, transparent 70%);
    animation: ctaRotate 20s linear infinite;
}
@keyframes ctaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.cta-banner .cta-phone {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.site-footer h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 16px;
}
.site-footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.site-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-phone a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent) !important;
}
.footer-area {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: 12px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Floating Call Button ---- */
.floating-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    box-shadow: 0 4px 20px var(--accent-glow);
    z-index: 999;
    animation: floatCall 2s ease-in-out infinite;
}
@keyframes floatCall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- Services Hub ---- */
.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.service-hub-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
    display: block;
    color: var(--text-primary) !important;
}
.service-hub-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.service-hub-icon {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--accent);
}
.service-hub-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.service-hub-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.service-hub-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.3s;
}
.service-hub-card:hover .service-hub-link { color: #fff; }

/* ---- Service Detail Pages ---- */
.service-detail-content { max-width: 900px; }
.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 20px;
}
.service-detail-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.service-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}
.service-feature:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}
.service-feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    margin-top: 12px;
}
.service-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.service-cta-box {
    background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(123,47,247,0.05));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}
.service-cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.service-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ---- Reviews ---- */
.review-summary {
    text-align: center;
    margin-bottom: 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.review-avg-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.review-avg-stars { margin: 8px 0; }
.review-avg-stars svg { display: inline-block; }
.review-avg-count { color: var(--text-secondary); font-size: 0.9rem; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 40px; height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}
.review-name { display: block; font-size: 0.95rem; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { margin-bottom: 10px; }
.review-stars svg { display: inline-block; }
.review-message { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.review-form-section {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.review-form-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
    text-align: center;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.star-rating {
    display: flex;
    gap: 4px;
}
.star-label { cursor: pointer; }
.star-label input { display: none; }
.star-label svg { transition: all 0.2s; }
.star-label:hover svg,
.star-label:has(input:checked) svg { fill: #fbbf24; stroke: #fbbf24; }
.star-rating:hover .star-label svg { fill: none; stroke: #5a6478; }
.star-rating .star-label:hover svg,
.star-rating .star-label:hover ~ .star-label svg { fill: none; stroke: #5a6478; }
.star-rating .star-label:hover svg { fill: #fbbf24; stroke: #fbbf24; }
.review-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(46,213,115,0.1);
    border: 1px solid rgba(46,213,115,0.3);
    border-radius: var(--radius-sm);
    color: #2ed573;
    text-align: center;
    justify-content: center;
}
.review-error {
    padding: 16px;
    background: rgba(255,71,87,0.1);
    border: 1px solid rgba(255,71,87,0.3);
    border-radius: var(--radius-sm);
    color: #ff4757;
    margin-bottom: 20px;
}

/* ---- Legal Pages ---- */
.legal-content { max-width: 800px; }
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 32px 0 12px;
    color: var(--text-primary);
}
.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ---- 404 ---- */
.error-page {
    text-align: center;
    padding: calc(var(--nav-height) + var(--emergency-height) + 80px) 0 80px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.error-page h1 {
    font-family: var(--font-display);
    font-size: 6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.error-page p { color: var(--text-secondary); margin: 16px 0 32px; }

/* ---- Loading Spinner ---- */
.loader {
    display: flex;
    justify-content: center;
    padding: 40px;
}
.loader::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- No Results ---- */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}
.no-results h3 { color: var(--text-primary); margin-bottom: 8px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-block { grid-template-columns: 1fr; gap: 24px; }
    .service-block.reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-features-grid { grid-template-columns: 1fr; }
    .services-hub-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: calc(var(--nav-height) + var(--emergency-height));
        left: 0;
        right: 0;
        background: rgba(10,14,23,0.98);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        transition: transform 0.3s;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { padding: 12px 16px; width: 100%; }
    .nav-cta { margin-top: 12px; width: 100%; }
    .nav-cta a { justify-content: center; width: 100%; }
    .dropdown-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 12px 16px;
        min-width: 0;
        display: none;
        border-radius: var(--radius-sm);
        margin-top: 4px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .nav-dropdown.open .dropdown-mega { display: grid; }
    .dropdown-col a { padding: 5px 0; }
    .dropdown-cta { padding-top: 8px; }

    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .tyre-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .floating-call { display: flex; }
    .filter-row { flex-direction: column; }
    .filter-group { min-width: 100%; }
    .emergency-bar { font-size: 0.7rem; }
    .emergency-bar span:not(.pulse-dot) { display: none; }
}

@media (max-width: 480px) {
    .tyre-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 32px 20px; }
    .cta-banner .cta-phone { font-size: 1.4rem; }
}

