/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #2C2C2C;
    background-color: #FFFFFF;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --white: #FFFFFF;
    --charcoal: #2C2C2C;
    --red: #D32F2F;
    --light-grey: #F5F5F5;
    --mid-grey: #E0E0E0;
    --dark-grey: #5A5A5A;
    --border-grey: #E5E5E5;
    --soft-charcoal: #555759;
}

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

/* ===== SECTION DIVIDER STYLES ===== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-divider {
    border-top: 3px solid var(--red);
    width: 60px;
    margin: 0 auto 16px auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D3032;
}

/* ===== HEADER ===== */
.site-header {
    padding: 16px 0;
    border-bottom: 1px solid var(--light-grey);
    position: relative;
    z-index: 10;
    background: white;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-link { font-weight: 600; color: #2D3032; text-decoration: none; padding: 12px 0; }
.nav-link:hover { color: #D32F2F; }

@media (max-width: 768px) {
    .main-nav { display: none; }
}

.logo {
    line-height: 0;
}

.logo-img {
    height: auto;
    width: 100%;
    max-width: 200px;
}

.header-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    background: var(--light-grey);
    padding: 8px 16px;
    border-radius: 40px;
    transition: 0.2s;
}

.header-phone i {
    color: var(--red);
    margin-right: 6px;
}

.header-phone:hover {
    background: var(--mid-grey);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.2s;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-red {
    background: var(--red);
    color: white;
}

.btn-red:hover {
    background: #B71C1C;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: white;
}

/* ===== HERO - FIXED ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-bg-image {
    display: block;
    width: 100%;
    height: 605px;
    max-height: 605px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 40px 0;
}

.hero-content-overlay .container {
    width: 100%;
}

.hero-badge {
    background: var(--red);
    color: white;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content-overlay h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
    max-width: 700px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content-overlay h1 .highlight {
    color: var(--red);
}

.hero-content-overlay p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-content-overlay .btn-red {
    background: var(--red);
    color: white;
    padding: 16px 36px;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.4);
}

.hero-content-overlay .btn-red:hover {
    background: #B71C1C;
    transform: scale(1.02);
}

/* ===== HERO CARD - FIXED ===== */
.hero-card {
    position: relative;
    margin-top: -30px;
    z-index: 5;
    padding: 0 20px;
}

.hero-card-inner {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 130px;
}

.hero-card-item i {
    font-size: 1.3rem;
    color: var(--red);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.hero-card-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.hero-card-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--dark-grey);
    line-height: 1.2;
}

.hero-card-divider {
    width: 1px;
    height: 35px;
    background: var(--mid-grey);
    flex-shrink: 0;
}

.hero-card-cta {
    flex: 0 0 auto;
}

.hero-card-cta .btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.hero-stars {
    display: none;
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--red);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: 0.2s;
}

.floating-call i {
    font-size: 24px;
}

.floating-call:hover {
    transform: scale(1.05);
    background: #B71C1C;
}

.floating-call:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ===== SERVICES ===== */
.services {
    background-color: #F8F9FA;
    width: 100%;
    padding: 60px 0;
    margin-top: 0;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    margin-bottom: 30px;
}

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

.grid-item {
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid var(--border-grey);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .service-bg {
    opacity: 0.50;
}

.service-locking .service-bg {
    background-image: url('../images/content/blackeagle_locking_wheel_nut.webp');
}

.service-tyres .service-bg {
    background-image: url('../images/content/stack_of_tyres.webp');
    opacity: 0.30;
}

.service-tyres:hover .service-bg {
    opacity: 0.45;
}

.service-icon,
.grid-item h3,
.grid-item p,
.cta-button {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 16px;
    line-height: 1;
}

.grid-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3032;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.grid-item p {
    font-size: 0.95rem;
    color: var(--soft-charcoal);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.cta-button {
    display: inline-block;
    margin-top: auto;
    background-color: var(--red);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 30px 24px 24px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px auto;
}

.step-icon {
    font-size: 3.2rem;
    color: #2D3032;
}

.step-content {
    text-align: center;
}

.step-content p {
    color: var(--soft-charcoal);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.step-content p strong {
    color: #2D3032;
    font-weight: 700;
}

.highlight-red {
    color: var(--red);
    font-weight: 700;
}

.step-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.step-link:hover {
    color: #B71C1C;
    text-decoration: underline;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--red);
    font-size: 2rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* ===== TYRE SIZE INFOGRAPHIC ===== */
.tyre-infographic-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.tyre-infographic-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #CC0000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tyre-infographic-header {
    background: #fff;
    padding: 14px 24px;
    border-bottom: 3px solid #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tyre-infographic-header .logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tyre-infographic-header .logo-area img {
    height: 50px;
    width: auto;
    display: block;
}
.tyre-infographic-header .header-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #0B0B0B;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.7;
}

.tyre-infographic-main {
    display: flex;
    align-items: stretch;
}

.tyre-infographic-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 0 24px;
    overflow: hidden;
}
.tyre-infographic-left .find-box {
    background: #fff;
    border: 4px solid #0B0B0B;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 18px;
    text-align: center;
}
.tyre-infographic-left .find-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #CC0000;
    line-height: 1.1;
    margin-bottom: 12px;
}
.tyre-infographic-left .find-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #0B0B0B;
}
.tyre-infographic-left .tyre-wrap {
    flex: 1;
    margin-left: -24px;
    margin-right: -24px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.tyre-infographic-left .tyre-wrap img {
    width: 100%;
    display: block;
}

.tyre-infographic-right {
    width: 290px;
    flex-shrink: 0;
    background: #fff;
    border: 3px solid #0B0B0B;
    border-radius: 6px;
    margin: 14px 14px 14px 0;
    padding: 14px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tyre-infographic-right .right-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #0B0B0B;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 8px;
}
.tyre-infographic-right .fig-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.tyre-infographic-right .fig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
}
.tyre-infographic-right .badge {
    background: #CC0000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    border-radius: 24px;
    padding: 4px 14px;
    min-width: 60px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
}
.tyre-infographic-right .badge.dark {
    background: #0B0B0B;
}
.tyre-infographic-right .fig-photo {
    width: 90px;
    height: 68px;
    object-fit: contain;
    display: block;
}
.tyre-infographic-right .fig-icon {
    width: 90px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tyre-infographic-right .fig-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: #0B0B0B;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 60px 0;
    background: white;
}

.why-choose-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-choose-image {
    flex: 1;
    min-width: 300px;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.why-choose-content {
    flex: 1;
    min-width: 300px;
}

.why-choose-content .section-title-wrapper {
    text-align: left;
    margin-bottom: 24px;
}

.why-choose-content .section-divider {
    margin: 0 0 12px 0;
}

.why-choose-content .section-title {
    font-size: 1.8rem;
    text-align: left;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.why-choose-item:last-child {
    margin-bottom: 0;
}

.why-choose-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.why-choose-icon svg {
    width: 40px;
    height: 40px;
}

.why-choose-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2D3032;
    margin-bottom: 2px;
}

.why-choose-text p {
    font-size: 0.9rem;
    color: var(--soft-charcoal);
    line-height: 1.5;
}

/* ===== BRANDS ===== */
.brands {
    background: var(--light-grey);
    padding: 40px 0;
}

.scroll-logos {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 12px 0;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.scroll-logos::-webkit-scrollbar {
    height: 6px;
}

.scroll-logos::-webkit-scrollbar-track {
    background: var(--mid-grey);
    border-radius: 10px;
}

.scroll-logos::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

.scroll-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.scroll-logos img:hover {
    transform: scale(1.05);
}

/* ============================================================
   PUNCTURE & LOCKING WHEEL NUT SECTION STYLES
   ============================================================ */
.puncture-locking-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.puncture-locking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.puncture-col .section-title-wrapper {
    text-align: left;
    margin-bottom: 20px;
}

.puncture-col .section-divider {
    margin: 0 0 16px 0;
}

.puncture-col .section-title {
    text-align: left;
    font-size: 1.8rem;
}

.puncture-intro {
    font-size: 1rem;
    color: var(--soft-charcoal);
    line-height: 1.6;
    margin-bottom: 28px;
}

.puncture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.puncture-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.puncture-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 0.9rem;
}

.puncture-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2D3032;
    margin-bottom: 2px;
}

.puncture-text p {
    font-size: 0.85rem;
    color: var(--soft-charcoal);
    line-height: 1.4;
    margin: 0;
}

.puncture-cta {
    margin-top: 30px;
}

.puncture-cta .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

.locking-col .section-title-wrapper {
    text-align: left;
    margin-bottom: 20px;
}

.locking-col .section-divider {
    margin: 0 0 16px 0;
}

.locking-col .section-title {
    text-align: left;
    font-size: 1.8rem;
}

.locking-intro {
    font-size: 1rem;
    color: var(--soft-charcoal);
    line-height: 1.6;
    margin-bottom: 28px;
}

.locking-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.locking-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--light-grey);
    padding: 16px 20px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.locking-item:hover {
    background: #EEEEEE;
}

.locking-check {
    flex-shrink: 0;
    color: var(--red);
    font-size: 1.2rem;
    margin-top: 1px;
}

.locking-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2D3032;
    margin-bottom: 2px;
}

.locking-text p {
    font-size: 0.85rem;
    color: var(--soft-charcoal);
    line-height: 1.4;
    margin: 0;
}

.locking-cta {
    margin-top: 30px;
}

.locking-cta .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

.locking-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
}

.locking-cta .btn-outline:hover {
    background: var(--red);
    color: #FFFFFF;
}

/* ===== COVERAGE MAP ===== */
.coverage-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.coverage-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coverage-inner {
    position: relative;
    width: 100%;
    padding-top: 66.6667%;
}

.coverage-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.coverage-overlay {
    position: absolute;
    inset: 0;
}

.county {
    position: absolute;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-decoration: none;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: .5px;
    color: #fff;
    background: rgba(200, 16, 46, 0.75);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    font-size: 1.55vw;
    padding: .55vw 1.1vw;
}

.county:hover {
    background: rgba(140, 12, 32, 0.85);
    transform: translate(-50%, -53%);
}

.county:after {
    content: '';
    display: inline-block;
    margin-left: .5vw;
    width: .5vw;
    height: .5vw;
    min-width: 6px;
    min-height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.town {
    position: absolute;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    pointer-events: none;
}

.town svg {
    width: 1.55vw;
    height: 1.85vw;
    min-width: 13px;
    min-height: 16px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .85));
}

.town span {
    margin-top: 1px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    border-radius: 3px;
    white-space: nowrap;
    font-size: .85vw;
    padding: .12vw .45vw;
    pointer-events: none;
}

.coverage-cta-wrapper {
    text-align: center;
    padding: 30px 20px 20px 20px;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

.coverage-cta-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 14px 36px;
}

.coverage-cta-wrapper .btn i {
    font-size: 1.1rem;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-subtitle {
    display: block;
    color: #555759;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.reviews-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2D3032;
    margin-bottom: 16px;
}

.reviews-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.google-logo {
    font-size: 28px;
    font-weight: 700;
    color: #4285F4;
    font-family: 'Google Sans', Arial, sans-serif;
}

.reviews-rating .stars {
    color: #FFB800;
    letter-spacing: 3px;
    font-size: 1.1rem;
}

.rating-text {
    color: #555759;
    font-weight: 600;
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.google-badge {
    background: #F2F2F2;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555759;
}

.review-card .stars {
    color: #FFB800;
    letter-spacing: 2px;
    font-size: 1rem;
}

.review-card p {
    line-height: 1.7;
    color: #444;
    min-height: 100px;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.review-author {
    border-top: 1px solid #EEE;
    padding-top: 14px;
}

.review-author strong {
    display: block;
    color: #2D3032;
    font-weight: 700;
}

.review-author span {
    color: #777;
    font-size: 0.85rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-review {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--red);
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-review:hover {
    background: var(--red);
    color: #fff;
}

/* ============================================================
   FLEET & COMMERCIAL SECTION
   ============================================================ */
.fleet-section {
    padding: 60px 0 0 0;
    background: #FFFFFF;
}

.fleet-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fleet-image {
    position: relative;
    width: 100%;
    min-height: 350px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.85) 30%,
            rgba(0, 0, 0, 0.92) 100%);
    pointer-events: none;
}

.fleet-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    padding: 50px 40px 50px 60px;
    color: #FFFFFF;
    z-index: 2;
    text-align: left;
}

.fleet-content .section-divider {
    border-top: 3px solid var(--red);
    width: 60px;
    margin: 0 0 16px 0;
}

.fleet-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: left;
}

.fleet-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 90%;
    text-align: left;
}

.fleet-content .btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.fleet-content .btn-red {
    background: var(--red);
    color: #FFFFFF;
}

.fleet-content .btn-red:hover {
    background: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.4);
}

/* ============================================================
   EMERGENCY MOBILE TYRE FITTING SECTION
   ============================================================ */
.emergency-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.emergency-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-grey);
}

.emergency-wrapper .section-title-wrapper {
    margin-bottom: 24px;
}

.emergency-wrapper .section-title {
    font-size: 2rem;
    text-align: center;
}

.emergency-wrapper .section-divider {
    margin: 0 auto 16px auto;
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    margin-top: 10px;
}

.emergency-grid p {
    font-size: 1rem;
    color: var(--soft-charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
}

.emergency-grid p:last-child {
    margin-bottom: 0;
}

.emergency-grid ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.emergency-grid ul li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 0.95rem;
    color: var(--soft-charcoal);
    line-height: 1.5;
    border-bottom: 1px solid #F0F0F0;
}

.emergency-grid ul li:last-child {
    border-bottom: none;
}

.emergency-grid ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
}

.emergency-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.emergency-keyword-tag {
    background: var(--light-grey);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    border: 1px solid var(--mid-grey);
    text-decoration: none;
    transition: all 0.2s ease;
}

.emergency-keyword-tag:hover {
    background: var(--red);
    color: #FFFFFF;
    border-color: var(--red);
}

.emergency-keyword-tag i {
    color: var(--red);
    margin-right: 6px;
}

.emergency-keyword-tag:hover i {
    color: #FFFFFF;
}

.emergency-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-grey);
}

.emergency-cta-row .btn {
    padding: 14px 40px;
    font-size: 1.05rem;
}

.emergency-cta-text {
    font-size: 0.95rem;
    color: var(--soft-charcoal);
}

.emergency-cta-text a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.emergency-cta-text a:hover {
    text-decoration: underline;
}

.emergency-cta-text strong {
    color: var(--charcoal);
}

.emergency-cta-text i {
    color: var(--red);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    padding: 60px 0 40px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--mid-grey);
    padding: 18px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2D3032;
    transition: color 0.2s;
    gap: 16px;
}

.faq-question:hover {
    color: var(--red);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--red);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-answer {
    margin-top: 10px;
    color: var(--soft-charcoal);
    display: none;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-right: 20px;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FAQ CTA BANNER ===== */
.faq-cta-banner {
    padding: 0 0 60px 0;
}

.faq-cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--red);
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
}

.faq-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-cta-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--red);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.faq-cta-call-btn i {
    font-size: 28px;
}

.faq-cta-call-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.faq-cta-content p {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.faq-cta-content p strong {
    font-weight: 700;
    display: inline-block;
}

.faq-cta-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: var(--red);
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.faq-cta-button .btn i {
    font-size: 1rem;
}

.faq-cta-button .btn:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.be-footer {
    background: #0A0A0A;
    color: #ffffff;
    margin-top: 60px;
}

.footer-container {
    max-width: 1320px;
    margin: auto;
    padding: 80px 20px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
}

.footer-col p {
    color: #BDBDBD;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.footer-col h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--red);
    margin-top: 10px;
}

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

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #BDBDBD;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.contact-list li {
    color: #BDBDBD;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--red);
    width: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #222;
}

.footer-bottom-container {
    max-width: 1320px;
    margin: auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #BDBDBD;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #BDBDBD;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 4px;
}

.footer-payments i {
    color: #BDBDBD;
    font-size: 1.6rem;
    transition: color 0.2s;
}

.footer-payments i:hover {
    color: var(--red);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs { background: var(--light-grey); border-bottom: 1px solid var(--mid-grey); padding: 12px 0; }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 0.85rem; gap: 6px; }
.breadcrumb-item { display: flex; align-items: center; color: var(--soft-charcoal); }
.breadcrumb-item a { color: var(--soft-charcoal); text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--red); text-decoration: underline; }
.breadcrumb-item:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--mid-grey); }
.breadcrumb-item.current { color: #2D3032; font-weight: 600; }

/* ===== LEGAL / CONTENT PAGES ===== */
.legal-page { padding: 60px 0 80px; background: #fff; }
.legal-page .container { max-width: 860px; }
.legal-page h1 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 800; color: #2D3032; margin-bottom: 8px; }
.legal-updated { color: var(--soft-charcoal); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 700; color: #2D3032; margin-top: 36px; margin-bottom: 14px; }
.legal-page p, .legal-page li { font-size: 0.97rem; line-height: 1.7; color: var(--soft-charcoal); margin-bottom: 14px; }
.legal-page ul, .legal-page ol { padding-left: 22px; margin-bottom: 16px; }
.legal-page a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.legal-page table th, .legal-page table td { border: 1px solid var(--border-grey); padding: 10px 12px; text-align: left; }
.legal-page table th { background: var(--light-grey); font-family: 'Montserrat', sans-serif; }
.legal-toc { background: var(--light-grey); border-radius: 12px; padding: 20px 24px; margin-bottom: 36px; }
.legal-toc h2 { margin-top: 0; font-size: 1rem; }
.legal-toc ol { margin-bottom: 0; }
.legal-toc a { font-weight: 600; }

/* ===== COOKIE BANNER CONTRAST FIX ===== */
#cookieBanner {
    background: #1a2a4a !important;
    color: #ffffff !important;
    border-top: 2px solid #d8315b !important;
}

#cookieBanner a {
    color: #7bb8e0 !important;
}

#cookieBanner span {
    color: #ffffff !important;
}

#declineBtn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

#acceptBtn {
    background: #d8315b !important;
    color: #ffffff !important;
    border: none !important;
}

/* ============================================================
   MOBILE STYLES
   ============================================================ */

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

    .reviews-header h2 {
        font-size: 1.8rem;
    }

    .fleet-content {
        width: 60%;
        padding: 40px 30px 40px 40px;
    }

    .fleet-content h2 {
        font-size: 1.6rem;
    }

    .fleet-content p {
        font-size: 0.95rem;
    }

    .fleet-overlay {
        width: 65%;
        background: linear-gradient(to left,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.8) 25%,
                rgba(0, 0, 0, 0.92) 100%);
    }

    .emergency-wrapper {
        padding: 40px 30px;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .emergency-wrapper .section-title {
        font-size: 1.6rem;
    }

    .faq-grid {
        gap: 20px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 20px 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .puncture-locking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .puncture-col .section-title-wrapper,
    .locking-col .section-title-wrapper {
        text-align: center;
    }
    
    .puncture-col .section-divider,
    .locking-col .section-divider {
        margin: 0 auto 16px auto;
    }
    
    .puncture-col .section-title,
    .locking-col .section-title {
        text-align: center;
    }
    
    .puncture-intro,
    .locking-intro {
        text-align: center;
    }
    
    .puncture-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .puncture-cta,
    .locking-cta {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        margin: 0 auto;
    }
    .logo-img {
        max-width: 180px;
    }
    .header-phone {
        display: none;
    }
    .floating-call {
        display: flex;
    }

    /* HERO MOBILE FIX */
    .hero {
        overflow: visible;
    }
    
    .hero-bg-image {
        height: 250px;
        max-height: 250px;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content-overlay {
        position: relative;
        padding: 30px 0 0 0;
        background: white;
    }
    
    .hero-content-overlay h1 {
        font-size: 1.6rem;
        color: #2D3032;
        max-width: 100%;
        text-shadow: none;
    }
    
    .hero-content-overlay p {
        color: var(--soft-charcoal);
        max-width: 100%;
        text-shadow: none;
        font-size: 1rem;
    }
    
    .hero-content-overlay .hero-badge {
        background: var(--red);
        color: white;
    }
    
    .hero-content-overlay .btn-red {
        background: var(--red);
        color: white;
        box-shadow: none;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* HERO CARD MOBILE FIX */
    .hero-card {
        position: relative;
        margin-top: 20px;
        padding: 0 16px;
        margin-bottom: 20px;
    }
    
    .hero-card-inner {
        flex-direction: column;
        padding: 16px 20px;
        gap: 8px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .hero-card-item {
        width: 100%;
        justify-content: flex-start;
        min-width: unset;
        gap: 14px;
    }
    
    .hero-card-divider {
        width: 100%;
        height: 1px;
        margin: 2px 0;
    }
    
    .hero-card-cta {
        width: 100%;
        margin-top: 4px;
    }
    
    .hero-card-cta .btn-small {
        width: 100%;
        justify-content: center;
    }

    .hero-stars {
        display: block;
        text-align: center;
        padding: 10px 0 20px;
        background: white;
        font-size: 0.75rem;
        color: var(--soft-charcoal);
        margin-bottom: 0;
    }

    .services {
        padding: 40px 0;
        margin-top: 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .grid-item {
        padding: 20px;
        margin-bottom: 20px;
        min-width: 100%;
    }
    .grid {
        margin-bottom: 0;
    }
    .service-icon {
        font-size: 2rem;
    }
    .cta-button {
        margin-top: 16px;
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    .grid-item h3 {
        font-size: 1rem;
    }
    .grid-item p {
        font-size: 0.85rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .step-card {
        width: 100%;
        max-width: 400px;
        margin: 0 10px;
        padding-top: 20px;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
        color: var(--red);
        font-size: 1.6rem;
    }
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 10px;
        left: 10px;
    }
    .step-icon-wrapper {
        width: 72px;
        height: 72px;
        margin: 20px auto 16px auto;
    }
    .step-icon {
        font-size: 2.2rem;
    }

    .tyre-infographic-wrapper {
        overflow: hidden;
        border-radius: 12px;
    }
    .tyre-infographic-main {
        flex-direction: column;
        padding: 0;
    }
    .tyre-infographic-right {
        width: auto;
        margin: 14px;
        border-radius: 6px;
        box-sizing: border-box;
        border: 3px solid #0B0B0B;
        flex-shrink: 0;
    }
    .tyre-infographic-left {
        padding: 16px 16px 0 16px;
    }
    .tyre-infographic-left .find-title {
        font-size: 24px;
    }
    .tyre-infographic-left .find-body {
        font-size: 17px;
    }
    .tyre-infographic-left .tyre-wrap {
        margin-left: -16px;
        margin-right: -16px;
    }
    .tyre-infographic-header .header-tagline {
        font-size: 8px;
        letter-spacing: 2px;
    }
    .tyre-infographic-header .logo-area img {
        height: 40px;
    }
    .tyre-infographic-right .fig-row {
        grid-template-columns: 1fr 1fr;
    }
    .tyre-infographic-right .badge {
        font-size: 18px;
        min-width: 50px;
        padding: 3px 10px;
    }
    .tyre-infographic-right .fig-photo,
    .tyre-infographic-right .fig-icon {
        width: 70px;
        height: 54px;
    }
    .tyre-infographic-right .right-title {
        font-size: 18px;
    }

    .why-choose-row {
        flex-direction: column;
        gap: 30px;
    }
    .why-choose-image {
        min-width: unset;
    }
    .why-choose-content {
        min-width: unset;
    }
    .why-choose-content .section-title-wrapper {
        text-align: center;
    }
    .why-choose-content .section-divider {
        margin: 0 auto 12px auto;
    }
    .why-choose-content .section-title {
        text-align: center;
        font-size: 1.5rem;
    }
    .why-choose-item {
        gap: 14px;
    }
    .why-choose-icon svg {
        width: 34px;
        height: 34px;
    }
    .why-choose-text h3 {
        font-size: 0.9rem;
    }
    .why-choose-text p {
        font-size: 0.85rem;
    }

    .reviews-section {
        padding: 50px 0;
    }
    .reviews-header h2 {
        font-size: 1.6rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .review-card p {
        min-height: auto;
    }
    .reviews-rating {
        gap: 8px;
    }
    .rating-text {
        font-size: 0.85rem;
    }

    .fleet-section {
        padding: 40px 0 0 0;
    }
    .fleet-wrapper {
        border-radius: 12px;
    }
    .fleet-image {
        min-height: 300px;
    }
    .fleet-image img {
        min-height: 300px;
    }
    .fleet-overlay {
        width: 100%;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.75) 40%,
                rgba(0, 0, 0, 0.9) 100%);
    }
    .fleet-content {
        position: absolute;
        top: auto;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        padding: 30px 24px 30px 24px;
        text-align: left;
    }
    .fleet-content .section-divider {
        margin: 0 0 16px 0;
    }
    .fleet-content h2 {
        font-size: 1.4rem;
    }
    .fleet-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .fleet-content .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .emergency-section {
        padding: 40px 0;
    }

    .emergency-wrapper {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .emergency-wrapper .section-title {
        font-size: 1.4rem;
    }

    .emergency-grid p {
        font-size: 0.9rem;
    }

    .emergency-grid ul li {
        font-size: 0.85rem;
        padding: 6px 0 6px 28px;
    }

    .emergency-grid ul li::before {
        top: 6px;
        font-size: 1rem;
    }

    .emergency-keyword-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .emergency-cta-row {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
    }

    .emergency-cta-row .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .section-title-wrapper {
        margin-bottom: 30px;
    }
    .section-divider {
        width: 40px;
    }

    .county {
        font-size: 9px;
        padding: 4px 8px;
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }
    .town span {
        font-size: 6.5px;
        padding: 1px 3px;
    }
    .town svg {
        width: 10px;
        height: 12px;
    }
    .coverage-cta-wrapper .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .puncture-locking-section {
        padding: 40px 0;
    }
    
    .puncture-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .puncture-item {
        gap: 12px;
    }
    
    .puncture-icon {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .puncture-text h4 {
        font-size: 0.9rem;
    }
    
    .puncture-text p {
        font-size: 0.8rem;
    }
    
    .locking-item {
        padding: 14px 16px;
    }
    
    .locking-text h4 {
        font-size: 0.9rem;
    }
    
    .locking-text p {
        font-size: 0.8rem;
    }
    
    .puncture-cta .btn,
    .locking-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .puncture-col .section-title,
    .locking-col .section-title {
        font-size: 1.4rem;
    }

    .faq {
        padding: 40px 0 30px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-col:first-child .faq-item:last-child {
        border-bottom: 1px solid var(--mid-grey);
    }

    .faq-col:last-child .faq-item:first-child {
        padding-top: 18px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .faq-cta-banner {
        padding: 0 0 40px 0;
    }

    .faq-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        border-radius: 12px;
    }

    .faq-cta-left {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .faq-cta-call-btn {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .faq-cta-call-btn i {
        font-size: 24px;
    }

    .faq-cta-content p {
        font-size: 1rem;
    }

    .faq-cta-content p strong {
        display: block;
    }

    .faq-cta-button .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px 30px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col h4:after {
        width: 30px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-bottom-container {
        font-size: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}



@media (max-width: 480px) {
    .hero-content-overlay h1 {
        font-size: 1.4rem;
    }
    .hero-content-overlay p {
        font-size: 0.95rem;
    }
    .hero-card-inner {
        padding: 14px 16px;
    }
    .hero-card-item strong {
        font-size: 0.8rem;
    }
    .hero-card-item span {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
    .grid-item {
        padding: 16px;
    }
    .grid-item p {
        font-size: 0.85rem;
    }

    .tyre-infographic-wrapper {
        border-radius: 8px;
    }
    .tyre-infographic-right {
        margin: 10px;
        padding: 12px 8px 14px;
        border-width: 2px;
    }
    .tyre-infographic-right .fig-photo,
    .tyre-infographic-right .fig-icon {
        width: 55px;
        height: 42px;
    }
    .tyre-infographic-right .badge {
        font-size: 15px;
        min-width: 42px;
        padding: 2px 8px;
    }
    .tyre-infographic-right .fig-label {
        font-size: 8px;
    }
    .tyre-infographic-right .right-title {
        font-size: 17px;
    }
    .tyre-infographic-left {
        padding: 12px 12px 0 12px;
    }
    .tyre-infographic-left .find-title {
        font-size: 20px;
    }
    .tyre-infographic-left .find-body {
        font-size: 15px;
    }
    .tyre-infographic-left .find-box {
        padding: 14px 16px;
    }
    .tyre-infographic-header {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 10px 16px;
    }
    .tyre-infographic-header .header-tagline {
        text-align: center;
    }
    .tyre-infographic-header .logo-area img {
        height: 34px;
    }

    .why-choose-row {
        flex-direction: column;
        gap: 24px;
    }
    .why-choose-item {
        gap: 12px;
    }
    .why-choose-icon svg {
        width: 30px;
        height: 30px;
    }
    .why-choose-text h3 {
        font-size: 0.85rem;
    }
    .why-choose-text p {
        font-size: 0.8rem;
    }
    .why-choose-content .section-title {
        font-size: 1.3rem;
    }

    .steps-grid .step-card {
        padding: 20px 16px 16px 16px;
    }
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        top: 8px;
        left: 8px;
    }
    .step-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 16px auto 12px auto;
    }
    .step-icon {
        font-size: 1.8rem;
    }
    .step-content p {
        font-size: 0.85rem;
    }
    .step-arrow {
        font-size: 1.3rem;
        padding: 6px 0;
    }

    .reviews-header h2 {
        font-size: 1.4rem;
    }
    .review-card {
        padding: 20px;
    }
    .google-logo {
        font-size: 22px;
    }
    .btn-review {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .fleet-image {
        min-height: 250px;
    }
    .fleet-image img {
        min-height: 250px;
    }
    .fleet-content {
        padding: 20px 16px 24px 16px;
    }
    .fleet-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .fleet-content p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    .fleet-content .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .emergency-wrapper {
        padding: 24px 16px;
    }

    .emergency-wrapper .section-title {
        font-size: 1.2rem;
    }

    .emergency-grid p {
        font-size: 0.85rem;
    }

    .emergency-grid ul li {
        font-size: 0.8rem;
        padding: 5px 0 5px 24px;
    }

    .emergency-grid ul li::before {
        top: 5px;
        font-size: 0.9rem;
    }

    .emergency-keyword-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .emergency-cta-row .btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .emergency-cta-text {
        font-size: 0.85rem;
    }

    .county {
        font-size: 7px;
        padding: 3px 6px;
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }
    .town span {
        font-size: 5px;
        padding: 1px 2px;
    }
    .town svg {
        width: 8px;
        height: 10px;
    }
    .coverage-cta-wrapper .btn {
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    .faq-cta-wrapper {
        padding: 20px 16px;
    }

    .faq-cta-call-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .faq-cta-call-btn i {
        font-size: 20px;
    }

    .faq-cta-content p {
        font-size: 0.9rem;
    }

    .faq-cta-button .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .puncture-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .puncture-col .section-title,
    .locking-col .section-title {
        font-size: 1.2rem;
    }
    
    .locking-item {
        padding: 12px 14px;
    }
}

.breadcrumb-list { font-size: 0.75rem; }

/* Emergency section link styling */
.emergency-wrapper a,
.emergency-cta-text a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.emergency-wrapper a:hover,
.emergency-cta-text a:hover {
    text-decoration: none;
}

.emergency-wrapper .section-title a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.emergency-wrapper .section-title a:hover {
    text-decoration: none;
}