/* =============================================
   NEW TYRE EMPIRE - Main Stylesheet
   Dark Premium Theme with Chrome & Green Accents
   ============================================= */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1e1e1e;

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;

    --accent-green: #7cb342;
    --accent-green-light: #9ccc65;
    --accent-green-dark: #558b2f;

    --chrome-light: #e8e8e8;
    --chrome-mid: #c0c0c0;
    --chrome-dark: #808080;

    --border-color: #2a2a2a;
    --border-light: #3a3a3a;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(124, 179, 66, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', var(--font-main);

    --container-width: 1200px;
    --header-height: 100px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: var(--accent-green-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-green);
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-normal);
    overflow: visible;
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 420px;
    width: auto;
    transition: all var(--transition-normal);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-30%);
    z-index: 1001;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.8));
}

.header.scrolled .logo {
    height: 120px;
    transform: translateY(-50%);
}

.logo:hover {
    transform: translateY(-30%) scale(1.02);
}

.header.scrolled .logo:hover {
    transform: translateY(-50%) scale(1.02);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.nav-link.active {
    color: var(--accent-green-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 2px;
}

/* Nav Dropdown */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown > .nav-link .dd-arrow {
    display: inline-block;
    font-size: 0.7em;
    opacity: 0.7;
    margin-left: 2px;
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover > .nav-link .dd-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown {
    display: none;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-md), 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
    display: block;
    animation: dropdownIn var(--transition-fast) ease;
}

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

.nav-dropdown li { margin: 0; }

.nav-dropdown a {
    display: block;
    padding: 11px 18px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-dropdown a:hover {
    color: var(--accent-green-light);
    background: var(--bg-tertiary);
    padding-left: 22px;
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(124, 179, 66, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green-light) 0%, var(--accent-green) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--chrome-light);
    border: 2px solid var(--chrome-mid);
}

.btn-secondary:hover {
    background: var(--chrome-light);
    color: var(--bg-primary);
    border-color: var(--chrome-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--chrome-light);
    transition: all var(--transition-fast);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-tertiary);
}

/* Fallback backgrounds when images aren't loaded */
.hero-slide:nth-child(1) .hero-slide-bg {
    background-image:
        radial-gradient(ellipse at 70% 50%, rgba(124, 179, 66, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(60, 60, 60, 0.5) 0%, transparent 40%),
        linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.hero-slide:nth-child(2) .hero-slide-bg {
    background-image:
        radial-gradient(ellipse at 80% 30%, rgba(124, 179, 66, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 70%, rgba(80, 80, 80, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-slide:nth-child(3) .hero-slide-bg {
    background-image:
        radial-gradient(ellipse at 60% 40%, rgba(124, 179, 66, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 90%, rgba(70, 70, 70, 0.4) 0%, transparent 40%),
        linear-gradient(225deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

/* Decorative Elements */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-green-light);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--chrome-light) 0%, var(--chrome-mid) 50%, var(--chrome-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .accent {
    color: var(--accent-green);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* Animate content only when slide is active */
.hero-slide.active .hero-subtitle {
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.hero-slide.active .hero-title {
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.hero-slide.active .hero-description {
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.hero-slide.active .hero-buttons {
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.8s;
}

/* Slider Navigation */
.hero-nav {
    display: none;
}

/* Slider Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 20;
}

.hero-arrow:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
    fill: var(--chrome-light);
}

.hero-arrow-prev {
    left: 30px;
}

.hero-arrow-next {
    right: 30px;
}

/* Decorative Line */
.hero-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-green-dark) 20%,
        var(--accent-green) 50%,
        var(--accent-green-dark) 80%,
        transparent 100%
    );
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   FEATURES STRIP (Below Hero)
   ============================================= */
.features-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-green);
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 90px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .nav .btn {
        width: 100%;
        margin-top: 10px;
    }

    .nav-item.has-dropdown {
        width: 100%;
    }

    .nav-item.has-dropdown > .nav-link .dd-arrow {
        display: none;
    }

    .nav-dropdown {
        display: block;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 6px;
        min-width: 0;
        animation: none;
    }

    .nav-dropdown a {
        text-align: center;
        padding: 10px;
        font-size: 0.88rem;
        color: var(--text-muted);
        white-space: normal;
    }

    .nav-dropdown a:hover {
        padding-left: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .logo {
        height: 200px;
        transform: translateY(-20%);
    }

    .logo:hover {
        transform: translateY(-20%) scale(1.02);
    }

    .header.scrolled .logo {
        height: 80px;
        transform: translateY(-50%);
    }

    .header.scrolled .logo:hover {
        transform: translateY(-50%) scale(1.02);
    }
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
    padding: 60px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--accent-green);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.section-header.text-center {
    text-align: center;
    margin-bottom: 35px;
}

.section-header.text-center .section-description {
    margin: 0 auto;
}

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

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-preview {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--bg-tertiary);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-primary);
    font-weight: 500;
}

.about-list svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-green);
    flex-shrink: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 50%;
    border: 2px solid var(--border-light);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-green);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-green);
}

.service-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-section {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-items {
    margin-top: 25px;
}

.why-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.why-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    opacity: 0.5;
}

.why-item-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--bg-tertiary);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--accent-green-dark) 0%, var(--accent-green) 50%, var(--accent-green-dark) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-primary);
    color: var(--accent-green-dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-secondary);
    padding: 50px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 360px;
    width: auto;
    margin: 0;
    padding: 0;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-green-light);
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.contact-list svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list a {
    color: var(--text-secondary);
}

.contact-list a:hover {
    color: var(--accent-green-light);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =============================================
   ADDITIONAL RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-badge {
        right: 20px;
        bottom: -20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

    .why-image img {
        height: 350px;
    }

    .about-image img {
        height: 350px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        height: 270px;
        margin: 0 auto;
    }

    .contact-list li {
        justify-content: center;
    }
}

/* =============================================
   PAGE HERO (Internal Pages)
   ============================================= */
.page-hero {
    position: relative;
    height: 280px;
    margin-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-small {
    height: 220px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-tertiary);
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* =============================================
   VALUES SECTION (About Page)
   ============================================= */
.values-section {
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
    border-radius: 50%;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    color: var(--accent-green);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =============================================
   PROMISE SECTION (About Page)
   ============================================= */
.promise-section {
    background: var(--bg-secondary);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.promise-list {
    margin-top: 30px;
}

.promise-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.promise-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    border-radius: 50%;
}

.promise-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.promise-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.promise-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.promise-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* =============================================
   SERVICE DETAIL (Services Page)
   ============================================= */
.service-detail {
    background: var(--bg-primary);
}

.service-detail.alt-bg {
    background: var(--bg-secondary);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.15) 0%, rgba(124, 179, 66, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-content .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-detail-content h4 {
    margin: 30px 0 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-primary);
}

.service-features svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-green);
    flex-shrink: 0;
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

/* =============================================
   FAQ (Accordion)
   ============================================= */
.faq-list {
    max-width: 820px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-card, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--accent-green, #7cb342);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary, #fff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-green, #7cb342);
    transition: transform 0.2s ease;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item .faq-body {
    padding: 0 24px 22px;
    color: var(--text-secondary, #b0b0b0);
    line-height: 1.65;
}

.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* Process steps (numbered) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    background: var(--bg-card, #1e1e1e);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.process-step .step-num {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-green, #7cb342);
    color: #0a0a0a;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.process-step h4 {
    margin: 14px 0 10px;
    color: var(--text-primary, #fff);
}

.process-step p {
    color: var(--text-secondary, #b0b0b0);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Areas covered chips */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.areas-grid span {
    background: var(--bg-card, #1e1e1e);
    border: 1px solid rgba(124, 179, 66, 0.25);
    color: var(--text-primary, #fff);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
}

/* =============================================
   GALLERY (Gallery Page)
   ============================================= */
.gallery-section {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1rem;
}

/* =============================================
   REVIEWS (Reviews Page)
   ============================================= */
.reviews-stats-section {
    background: var(--bg-secondary);
    padding: 40px 0;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
}

.stat-card.main-stat {
    padding: 0 40px;
    border-right: 1px solid var(--border-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.stat-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-stars {
    display: flex;
    gap: 5px;
}

.stat-stars svg {
    width: 24px;
    height: 24px;
    fill: #ffc107;
}

.stat-card p {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    font-size: 1rem;
}

.review-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffc107;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--accent-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 10px;
}

.form-success {
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.form-success svg {
    width: 60px;
    height: 60px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
}

.form-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.form-error p {
    color: #f44336;
    margin: 0;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.15) 0%, rgba(124, 179, 66, 0.05) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--accent-green);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* =============================================
   ADDITIONAL RESPONSIVE (New Pages)
   ============================================= */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-detail-grid,
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-hero-small {
        height: 250px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-stats {
        gap: 30px;
    }

    .stat-card.main-stat {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0 0 30px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-detail-image img {
        height: 300px;
    }

    .promise-image img {
        height: 300px;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-stars {
        width: 100%;
        margin-top: 10px;
    }
}

/* =============================================
   TYRE FINDER PAGE
   ============================================= */

/* Charles Wright Bold - official UK number plate font */
@font-face {
    font-family: 'UKPlate';
    src: url('https://fonts.cdnfonts.com/s/17635/CharlesWright-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Tyre Finder Section */
.tyre-finder-section {
    padding-top: 60px;
}

/* Reg Plate Input */
.reg-lookup-wrapper {
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: center;
}

.reg-plate-input {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.reg-plate {
    display: flex;
    align-items: stretch;
    background: #f3d200;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid #000;
    height: 94px;
    width: 100%;
    max-width: 380px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(243, 210, 0, 0.15);
    position: relative;
}

/* Blue EU strip */
.reg-plate-blue {
    width: 48px;
    min-width: 48px;
    background: linear-gradient(180deg, #003893 0%, #002d7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #000;
}

.reg-plate-flag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.flag-stars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    width: 24px;
}

.flag-stars span {
    width: 4px;
    height: 4px;
    background: #ffd617;
    border-radius: 50%;
}

.flag-gb {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

/* The input field */
.reg-plate input {
    flex: 1;
    border: none;
    background: #f3d200;
    color: #000;
    font-size: 3.2rem;
    font-weight: 400;
    font-family: 'UKPlate', 'Montserrat', sans-serif;
    text-align: center;
    letter-spacing: 4px;
    padding: 0 14px;
    height: 100%;
    text-transform: uppercase;
    caret-color: #000;
    min-width: 0;
}

.reg-plate input::placeholder {
    color: rgba(0, 0, 0, 0.22);
    font-size: 2.4rem;
    letter-spacing: 3px;
}

.reg-plate input:focus {
    outline: none;
    background: #f7da00;
}

/* Search button */
.reg-search-btn {
    margin-top: 0;
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    border-radius: 10px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.reg-hint {
    margin-top: 18px;
    color: #707070;
    font-size: 0.9rem;
}

.reg-hint a {
    color: #7cb342;
    text-decoration: underline;
    transition: color 0.2s;
}

.reg-hint a:hover {
    color: #9ccc65;
}

/* Manual Search */
.manual-search-wrapper {
    max-width: 580px;
    margin: 0 auto 40px;
    animation: slideDown 0.3s ease;
}

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

.manual-search-inner {
    background: linear-gradient(135deg, #1a1a1a, #222);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
}

.manual-search-inner h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.manual-search-inner p {
    color: #b0b0b0;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.manual-search-row {
    display: flex;
    gap: 12px;
}

.tyre-size-select {
    flex: 1;
    padding: 14px 18px;
    background: #0a0a0a;
    color: #fff;
    border: 2px solid #444;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%237cb342'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.tyre-size-select:focus {
    border-color: #7cb342;
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.15);
}

.tyre-size-diagram {
    margin-top: 24px;
}

.diagram-box {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px 32px;
    display: inline-block;
}

.diagram-title {
    display: block;
    color: #707070;
    font-size: 0.8rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagram-example {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.d-width { color: #7cb342; }
.d-sep { color: #444; }
.d-aspect { color: #e8e8e8; }
.d-r { color: #555; }
.d-rim { color: #9ccc65; }

.diagram-labels {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.75rem;
    color: #707070;
    font-weight: 500;
}

/* Loading */
.lookup-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #333;
    border-top-color: #7cb342;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.lookup-loading p {
    color: #b0b0b0;
}

/* Vehicle Card */
.vehicle-card {
    max-width: 750px;
    margin: 0 auto 35px;
    animation: slideDown 0.4s ease;
}

.vehicle-card-inner {
    background: linear-gradient(135deg, #1a1a1a, #222);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vehicle-reg-display {
    background: #f3d200;
    color: #000;
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'UKPlate', 'Montserrat', sans-serif;
    padding: 8px 16px;
    border-radius: 5px;
    letter-spacing: 2px;
    border: 2px solid #000;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.vehicle-details {
    flex: 1;
}

.vehicle-details h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.2rem;
}

.vehicle-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vehicle-meta span {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.vehicle-meta span:empty { display: none; }

.vehicle-status {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-ok {
    background: rgba(124, 179, 66, 0.15);
    color: #7cb342;
    border: 1px solid rgba(124, 179, 66, 0.3);
}

.status-warn {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Tyre Results */
.results-heading {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.results-subheading {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* Size Tabs */
.tyre-size-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.size-tab {
    background: #141414;
    border: 2px solid #333;
    color: #b0b0b0;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}

.size-tab:hover {
    border-color: #7cb342;
    color: #fff;
    background: #1e1e1e;
    transform: translateY(-2px);
}

.size-tab.active {
    background: linear-gradient(135deg, #7cb342, #558b2f);
    border-color: #7cb342;
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.size-tab small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

.tab-note {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    opacity: 0.7;
}

/* Price Cards */
.tyre-prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 940px;
    margin: 0 auto 35px;
    animation: slideDown 0.5s ease;
}

.price-card {
    background: linear-gradient(180deg, #1e1e1e 0%, #171717 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 35px 28px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #333;
    transition: background 0.3s;
}

.price-card:hover {
    border-color: #555;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.price-card.tier-budget::before { background: #607d8b; }
.price-card.tier-mid_range::before { background: #7cb342; }
.price-card.tier-premium::before { background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #c0c0c0); }

.price-card.popular-choice {
    border-color: #7cb342;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.15);
}

.price-card.popular-choice:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.2);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7cb342, #558b2f);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-tier-name {
    color: #b0b0b0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tier-premium .price-tier-name { color: #e0e0e0; }
.tier-budget .price-tier-name { color: #607d8b; }
.tier-mid_range .price-tier-name { color: #7cb342; }

.price-range {
    margin-bottom: 6px;
    line-height: 1;
}

.price-from {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #7cb342;
}

.tier-budget .price-from { color: #90a4ae; }
.tier-premium .price-from { color: #e8e8e8; }

.price-sep {
    color: #444;
    font-size: 1.1rem;
    margin: 0 2px;
}

.price-to {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #9ccc65;
}

.tier-budget .price-to { color: #b0bec5; }
.tier-premium .price-to { color: #c0c0c0; }

.price-per {
    color: #555;
    font-size: 0.78rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-brands {
    color: #888;
    font-size: 0.82rem;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.4;
}

.price-desc {
    color: #666;
    font-size: 0.82rem;
    margin-bottom: 22px;
    line-height: 1.5;
}

.price-card .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.no-price {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

/* Results Note */
.results-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(124, 179, 66, 0.08);
    border: 1px solid rgba(124, 179, 66, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.results-note svg {
    flex-shrink: 0;
    fill: #7cb342;
    margin-top: 2px;
}

.results-note span {
    color: #b0b0b0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results h3 {
    color: #fff;
    margin: 15px 0 10px;
}

.no-results p {
    color: #b0b0b0;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Results CTA */
.results-cta {
    max-width: 600px;
    margin: 30px auto 0;
}

.results-cta-inner {
    background: linear-gradient(135deg, #1e1e1e, #252525);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.results-cta-inner h3 {
    color: #fff;
    margin-bottom: 8px;
}

.results-cta-inner p {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.results-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How It Works */
.how-it-works {
    background: #0e0e0e;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(180deg, #1a1a1a, #141414);
    border: 1px solid #252525;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: #333;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7cb342, #558b2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 22px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.25);
}

.step-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.step-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Price Includes */
.price-includes-section {
    background: #0a0a0a;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 750px;
    margin: 45px auto 0;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a, #1e1e1e);
    border: 1px solid #252525;
    padding: 16px 22px;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.include-item:hover {
    border-color: rgba(124, 179, 66, 0.3);
}

.include-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    fill: #7cb342;
}

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

/* Responsive */
@media (max-width: 768px) {
    .reg-plate-input {
        flex-direction: column;
    }

    .reg-plate {
        height: 55px;
    }

    .reg-plate input {
        font-size: 1.5rem;
    }

    .manual-search-row {
        flex-direction: column;
    }

    .tyre-prices-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-card.popular-choice {
        transform: none;
        order: -1;
    }

    .vehicle-card-inner {
        flex-direction: column;
        text-align: center;
    }

    .vehicle-meta {
        justify-content: center;
    }

    .vehicle-status {
        justify-content: center;
    }

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

    .includes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-cta-buttons {
        flex-direction: column;
    }
}

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

    .diagram-labels {
        gap: 15px;
    }
}

/* =============================================
   NEWS & BLOG PAGES
   ============================================= */

/* News Grid */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-grid-3 .news-card {
    flex-direction: column;
}

.news-grid-3 .news-card-image {
    width: 100%;
    max-width: none;
    height: 180px;
}

.news-card {
    background: var(--bg-card, #1e1e1e);
    border: 1px solid var(--border-color, #2a2a2a);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: #444;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.news-card-featured {
    /* Featured card stays the same horizontal layout but bigger image */
}

.news-card-image {
    display: block;
    overflow: hidden;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
}

.news-card-featured .news-card-image {
    width: 360px;
    min-width: 360px;
    max-width: 360px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.news-card-featured .news-card-body {
    padding: 26px 30px;
}

.news-card-date {
    font-size: 0.78rem;
    color: #7cb342;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 8px 0 10px;
    line-height: 1.35;
}

.news-card-featured .news-card-title {
    font-size: 1.5rem;
}

.news-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.news-card-title a:hover {
    color: #7cb342;
}

.news-card-excerpt {
    color: #999;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.news-card-link {
    color: #7cb342;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.news-card-link:hover {
    gap: 8px;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h3 {
    color: #fff;
    margin-bottom: 10px;
}

.no-posts p {
    color: #888;
}

/* Single Post */
.post-hero .page-hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    max-width: 700px;
}

.post-hero-date {
    display: inline-block;
    color: #7cb342;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    align-items: start;
}

.post-content {
    max-width: 720px;
}

.post-featured-img {
    float: right;
    width: 300px;
    margin: 0 0 20px 28px;
    border-radius: 10px;
    overflow: hidden;
}

.post-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.post-lead {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
    font-weight: 500;
}

.post-content h2 {
    color: #fff;
    font-size: 1.4rem;
    margin: 30px 0 12px;
}

.post-content h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 25px 0 10px;
}

.post-content p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.post-content ul, .post-content ol {
    color: #bbb;
    margin: 0 0 16px 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.post-content li {
    margin-bottom: 6px;
}

.post-content blockquote {
    border-left: 3px solid #7cb342;
    padding: 16px 20px;
    margin: 20px 0;
    background: rgba(124, 179, 66, 0.06);
    border-radius: 0 8px 8px 0;
}

.post-content blockquote p {
    color: #ddd;
    font-style: italic;
    margin-bottom: 6px;
}

.post-content blockquote cite {
    color: #7cb342;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
}

.post-content figure.post-image {
    margin: 24px 0;
}

.post-content figure.post-image img {
    width: 100%;
    border-radius: 10px;
}

.post-content figure.post-image figcaption {
    color: #777;
    font-size: 0.82rem;
    margin-top: 8px;
    text-align: center;
}

.post-content pre {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0;
}

.post-content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    color: #9ccc65;
}

.post-content hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 30px 0;
}

.post-content .post-warning {
    background: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
}

.post-content .post-warning strong {
    color: #ff9800;
}

.post-content .table-wrap {
    overflow-x: auto;
    margin: 16px 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
}

.post-content th, .post-content td {
    padding: 10px 14px;
    border: 1px solid #2a2a2a;
    text-align: left;
    font-size: 0.9rem;
    color: #bbb;
}

.post-content th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta, .sidebar-contact {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-cta h4, .sidebar-contact h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.sidebar-cta p, .sidebar-contact p {
    color: #999;
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.sidebar-contact a {
    color: #7cb342;
    text-decoration: none;
}

.sidebar-cta .btn {
    width: 100%;
}

/* Related section */
.related-section {
    background: #0e0e0e;
}

/* Responsive */
@media (max-width: 900px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .sidebar-cta, .sidebar-contact {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
    }
    .news-card-image,
    .news-card-featured .news-card-image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 200px;
    }
    .news-grid-3 {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        grid-template-columns: 1fr;
    }
    .post-featured-img {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}
