/* ============================================================
   LONDON MOBILE TYRE FITTING - PAGE SPECIFIC STYLES
   Only affects /london_mobile_tyre_fitting page
   ============================================================ */

/* ===== FOOTER CONTACT ICON FIX ===== */
.contact-list .icon {
    stroke: #D32F2F !important;
    fill: none !important;
    color: #D32F2F !important;
}
.inline-cta {
    background: #1a1a1a;
    padding: 22px 0;
}

.inline-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.inline-cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.inline-cta-text strong {
    color: #fff;
    font-size: 1rem;
}

.inline-cta .btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #D32F2F;
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.inline-cta .btn-red:hover {
    background: #b71c1c;
}

.inline-cta .btn-red svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 500px) {
    .inline-cta-inner { flex-direction: column; text-align: center; gap: 14px; }
}

/* ===== HERO ===== */
.hero-london .hero-bg-image {
    display: block;
    width: 100%;
    height: 500px;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-london .hero-bg-image {
        height: 220px;
        max-height: 220px;
    }
}

/* ===== HERO FEATURES ===== */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
    max-width: 580px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-features li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 20px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0;
    flex-wrap: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 12px;
    min-width: 0;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: #D32F2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 18px;
    height: 18px;
}

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.trust-text span {
    font-size: 0.75rem;
    color: #666;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #E5E5E5;
    flex-shrink: 0;
}

/* Google reviews trust item */
.trust-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 10px 12px;
    min-width: 0;
}

.trust-reviews-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.trust-reviews-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.trust-reviews-text span {
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 900px) {
    .trust-strip-inner {
        flex-wrap: wrap;
        gap: 4px;
    }
    .trust-divider { display: none; }
    .trust-item, .trust-reviews { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 480px) {
    .trust-item, .trust-reviews { flex: 0 0 100%; }
}

/* ===== WHY LONDON SECTION ===== */
.why-london-section {
    padding: 70px 0;
    background: #fff;
}

.why-london-intro {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.why-london-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-london-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.benefit-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #D32F2F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #D32F2F;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .why-london-intro { grid-template-columns: 1fr; gap: 20px; }
    .why-london-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .why-london-benefits { grid-template-columns: 1fr; }
}

/* ===== BOROUGH SECTION ===== */
.borough-section {
    padding: 70px 0;
    background: #F8F9FA;
}

/* Borough map image + overlay container */
.borough-map {
    position: relative;
    margin-top: 32px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    line-height: 0; /* removes inline gap under img */
}

.borough-map__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Clickable area overlay links — sit inside existing black boxes on the map image */
.map-area-link {
    position: absolute;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 8px 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    transition: opacity 0.2s;
}

.map-area-link:hover,
.map-area-link:focus {
    outline: none;
    opacity: 0.85;
}

.map-area-link:active {
    opacity: 0.7;
}

.map-area-name {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}

.map-area-link:hover .map-area-name,
.map-area-link:focus .map-area-name {
    color: #D32F2F;
}

@media (max-width: 768px) {
    .map-area-name { font-size: 0.55rem; letter-spacing: 0.3px; }
}

@media (max-width: 480px) {
    .map-area-name { font-size: 0.42rem; letter-spacing: 0.2px; }
    .map-area-link { padding: 4px 6px; }
}


/* ===== WHERE WE FIT TYRES ===== */
.where-we-fit-section {
    padding: 70px 0;
    background: #fff;
}

.where-we-fit-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 860px;
    margin: 16px 0 36px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px 24px;
}

.place-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.place-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.place-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .places-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .places-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CALLOUT SCENARIOS ===== */
.callout-section {
    padding: 70px 0;
    background: #fff;
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.callout-item {
    text-align: center;
    padding: 24px 12px;
}

.callout-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
}

.callout-icon svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callout-item h3 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.callout-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .callout-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* ===== MAJOR ROADS ===== */
.roads-section {
    padding: 70px 0;
    background: #F8F9FA;
}

.roads-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.roads-intro p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.roads-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.road-badge {
    display: block;
    text-align: center;
    padding: 12px 8px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.road-badge:hover {
    background: #D32F2F;
    color: #fff;
    border-color: #D32F2F;
}

.roads-intro a {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 600;
}

.roads-intro a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .roads-layout { grid-template-columns: 1fr; gap: 24px; }
    .roads-grid { grid-template-columns: repeat(4, 1fr); }
}

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

/* ===== SERVICE CARDS WITH IMAGES ===== */
.london-services-section {
    padding: 70px 0;
    background: #fff;
}

.london-service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.london-service-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.london-service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.london-service-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.london-service-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.london-service-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.london-service-card__body p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.london-service-card__link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #D32F2F;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.london-service-card__link:hover {
    text-decoration: underline;
}

/* Dark card variant — Tyre Emergency While Driving */
.london-service-card--dark {
    background: #1C1C1C;
    border-color: #F5C400;
    border-width: 2px;
}

.london-service-card--dark .london-service-card__body h3 {
    color: #F5C400;
}

.london-service-card--dark .london-service-card__body p {
    color: rgba(255,255,255,0.8);
}

.london-service-card--dark .london-service-card__link {
    color: #F5C400;
}

@media (max-width: 900px) {
    .london-service-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .london-service-cards { grid-template-columns: 1fr; }
}

/* ===== FAQ SECTION ===== */
.london-faq-section {
    padding: 70px 0;
    background: #F8F9FA;
}

.london-services-section {
    background: #F8F9FA;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    gap: 12px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    color: #D32F2F;
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #D32F2F;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-answer {
    display: none;
    padding: 0 0 20px 0;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

.faq-answer.show {
    display: block;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ===== CTA BANNER ===== */
.faq-cta-banner {
    background: #D32F2F;
    padding: 30px 0;
}

.faq-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

.faq-cta-call-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-cta-call-btn svg {
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.faq-cta-content {
    color: #fff;
    font-size: 1rem;
}

.faq-cta-content strong {
    font-size: 1.1rem;
}

.faq-cta-button .btn {
    background: #fff;
    color: #D32F2F;
    font-weight: 700;
    white-space: nowrap;
}

.faq-cta-button .btn:hover {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .faq-cta-wrapper { flex-direction: column; text-align: center; }
    .faq-cta-left { flex-direction: column; }
}