/* MOBILE TYRE SERVICE — White+Red Theme, Poppins+Playfair */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

:root {
    --red: #d42a3c;
    --red-light: #e8354a;
    --red-glow: rgba(212, 42, 60, 0.15);
    --red-dark: #b0212f;
    --dark: #1a1f36;
    --dark-light: #252b45;
    --dark-alt: #0f1225;
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-light: #fafbfd;
    --text: #2d3148;
    --text-s: #5c6178;
    --text-m: #8c91a8;
    --border: #e4e7f0;
    --border-r: rgba(212, 42, 60, 0.25);
    --white: #fff;
    --blue: #2563eb;
    --warn: #f59e0b;
    --grad: linear-gradient(135deg, #d42a3c, #e8354a);
    --fh: "Poppins", sans-serif;
    /* --fd: "Playfair Display", serif; */
    --fd: "'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;" --r: 10px;
    --rl: 16px;
    --rx: 30px;
    --shd: 0 2px 16px rgba(0, 0, 0, 0.06);
    --shd-h: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shd-g: 0 8px 28px var(--red-glow);
    --fast: 0.2s ease;
    --med: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    --mx: 1450px;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--fast);
}

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

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--mx);
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: var(--red);
    color: #fff;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s, visibility 0.5s;
}

    #preloader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.preloader-tyre {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

.preloader-text {
    margin-top: 14px;
    font-family: var(--fd);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--red);
}

/* INFO BAR */
.info-bar {
    background: var(--dark);
    padding: 9px 0;
    font-family: var(--fh);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    z-index: 1002;
    position: relative;
}

    .info-bar a {
        color: #fff;
    }

    .info-bar .sep {
        opacity: 0.3;
    }

    .info-bar i {
        margin-right: 5px;
        color: var(--red);
    }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--med);
    background: rgba(26, 31, 54, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

    .navbar.scrolled {
        top: 0;
        background: rgba(26, 31, 54, 0.97);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
        padding: 8px 0;
    }

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    width: 15%;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.ftr-logo {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
}

.nav-logo-text {
    font-family: var(--fd);
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.15;
    font-weight: 700;
}

    .nav-logo-text span {
        color: var(--red);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .nav-links a {
        font-size: 0.82rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        padding: 7px 14px;
        border-radius: var(--rx);
        color: rgba(255, 255, 255, 0.7);
        transition: all var(--fast);
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            background: rgba(212, 42, 60, 0.15);
        }

        .nav-links a.active {
            color: var(--red);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--red);
}

    .nav-phone i {
        animation: ring 2s ease-in-out infinite;
    }

@keyframes ring {
    0%, 100% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(7deg);
    }

    40% {
        transform: rotate(0);
    }
}

.btn-nav {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 10px 24px;
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: var(--rx);
    cursor: pointer;
    transition: all var(--fast);
}

    .btn-nav:hover {
        transform: translateY(-2px);
        box-shadow: var(--shd-g);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

    .hamburger span {
        width: 24px;
        height: 2px;
        background: #fff;
        transition: all var(--fast);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.mobile-nav {
    position: fixed;
    top: 42px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: right var(--slow);
}

    .mobile-nav.open {
        right: 0;
        padding: 30px 0px;
    }

    .mobile-nav a {
        font-family: var(--fd);
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.55);
        transition: all var(--fast);
    }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--red);
        }

.mobile-nav-contact {
    margin-top: 10px;
    text-align: center;
}

    .mobile-nav-contact a {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.4);
    }

/* === Mobile nav: collapsible Areas sub-menu === */
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-nav-drop-trigger {
    font-family: var(--fd);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--fast);
    user-select: none;
}

    .mobile-nav-drop-trigger i {
        font-size: 0.55em;
        transition: transform var(--fast);
    }

    .mobile-nav-drop-trigger:hover,
    .mobile-nav-dropdown.open .mobile-nav-drop-trigger {
        color: var(--red);
    }

        .mobile-nav-dropdown.open .mobile-nav-drop-trigger i {
            transform: rotate(180deg);
        }

.mobile-nav-sub {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 8px 12px;
    width: min(320px, 92%);
    max-height: 32vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--rl);
}

.mobile-nav-dropdown.open .mobile-nav-sub {
    display: flex;
}

.mobile-nav-sub a {
    font-family: var(--fh) !important;
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 16px;
    border-radius: var(--rx);
    transition: all var(--fast);
}

    .mobile-nav-sub a:hover,
    .mobile-nav-sub a.active {
        color: var(--red);
        background: rgba(212, 42, 60, 0.12);
        transform: none;
    }

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fh);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 34px;
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: var(--rx);
    cursor: pointer;
    transition: all var(--med);
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.18), transparent );
        transition: left 0.5s;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shd-g);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fh);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 34px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border-r);
    border-radius: var(--rx);
    cursor: pointer;
    transition: all var(--med);
}

    .btn-secondary:hover {
        background: var(--red-glow);
        border-color: var(--red);
        color: var(--red);
        transform: translateY(-3px);
    }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--fh);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 34px;
    background: #fff;
    color: var(--dark);
    border: none;
    border-radius: var(--rx);
    cursor: pointer;
    transition: all var(--med);
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
    }

.btn-sm {
    padding: 9px 20px;
    font-size: 0.78rem;
}

/* SECTIONS */
.section {
    padding: 60px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

    .section-dark .section-title {
        color: #fff;
    }

    .section-dark .section-subtitle,
    .section-dark .step-text,
    .section-dark .feature-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .section-dark .feature-title,
    .section-dark .step-title {
        color: #fff;
    }

    .section-dark .feature-card {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
    }

        .section-dark .feature-card:hover {
            border-color: var(--border-r);
        }

    .section-dark .section-badge {
        background: rgba(212, 42, 60, 0.12);
        border-color: rgba(212, 42, 60, 0.25);
    }

    .section-dark .counter-item {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .section-dark .counter-label {
        color: rgba(255, 255, 255, 0.5);
    }

.section-red {
    background: var(--red);
}

    .section-red .counter-item {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .section-red .counter-number {
        color: #fff;
    }

    .section-red .counter-label {
        color: rgba(255, 255, 255, 0.7);
    }

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red);
    background: var(--red-glow);
    border: 1px solid var(--border-r);
    padding: 7px 18px;
    border-radius: var(--rx);
    margin-bottom: 18px;
}

    .section-badge i {
        font-size: 0.5rem;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.section-title {
    font-family: var(--fd);
    font-size: clamp(2.2rem, 2.5vw, 3.2rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
}

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

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

.section-subtitle {
    font-size: 1rem;
    color: var(--text-s);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

    .reveal-scale.active {
        opacity: 1;
        transform: scale(1);
    }

.stagger-children > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.active > *:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.active > *:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.active > *:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.active > *:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children.active > *:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children.active > *:nth-child(6) {
    transition-delay: 0.3s;
}

.stagger-children.active > *:nth-child(7) {
    transition-delay: 0.35s;
}

.stagger-children.active > *:nth-child(8) {
    transition-delay: 0.4s;
}

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(26, 31, 54, 0.88) 0%, rgba(26, 31, 54, 0.5) 60%, rgba(26, 31, 54, 0.25) 100% );
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-slide-inner {
    max-width: var(--mx);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red-light);
    background: rgba(212, 42, 60, 0.12);
    border: 1px solid rgba(212, 42, 60, 0.3);
    padding: 8px 18px;
    border-radius: var(--rx);
    margin-bottom: 22px;
}

    .hero-slide-badge .dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        position: relative;
    }

        .hero-slide-badge .dot::after {
            content: "";
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.3);
            animation: dotP 2s ease-in-out infinite;
        }

@keyframes dotP {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.hero-slide h1 {
    font-family: var(--fd);
    font-size: clamp(2.6rem, 4vw, 4.8rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
}

    .hero-slide h1 .red {
        color: var(--red-light);
    }

.hero-slide p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.hero-slide-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
/* Carousel dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all var(--fast);
    border: none;
}

    .hero-dot.active {
        background: var(--red);
        transform: scale(1.2);
    }
/* Carousel arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--fast);
    backdrop-filter: blur(6px);
}

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

.hero-arrow-left {
    left: 24px;
    transform: translateY(-50%);
}

.hero-arrow-right {
    right: 24px;
    transform: translateY(-50%);
}

/* MARQUEE */
.marquee-section {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-alt);
}

.marquee-track {
    display: flex;
    animation: marq 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-family: var(--fd);
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--text-m);
    white-space: nowrap;
}

    .marquee-item i {
        color: var(--red);
        font-size: 0.4rem;
    }

@keyframes marq {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SERVICE CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 22px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    transition: all var(--med);
    position: relative;
    box-shadow: var(--shd);
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--grad);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--med);
        z-index: 2;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shd-h);
        border-color: var(--border-r);
    }

.service-card-img {
    height: 270px;
    overflow: hidden;
}

    .service-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--med);
    }

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

.service-card-body {
    padding: 28px 24px;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--red-glow);
    border: 1px solid var(--border-r);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--red);
    transition: all var(--med);
}

.service-card:hover .service-card-icon {
    background: var(--red);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.service-card-title {
    font-family: var(--fd);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-s);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--red);
    transition: gap var(--fast);
}

    .service-card-link:hover {
        gap: 12px;
    }

/* SERVICE DETAIL */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 55px 0;
    border-bottom: 1px solid var(--border);
}

    .service-detail:last-child {
        border-bottom: none;
    }

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

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

.service-detail-img {
    height: 340px;
    border-radius: var(--rl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shd);
}

    .service-detail-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-detail-content h3 {
    font-family: var(--fd);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-detail-content p {
    color: var(--text-s);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-detail-list {
    margin: 14px 0 24px;
}

    .service-detail-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 0;
        font-size: 0.9rem;
        color: var(--text-s);
    }

        .service-detail-list li i {
            color: var(--red);
            width: 16px;
            text-align: center;
        }

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rl);
    transition: all var(--med);
    position: relative;
    box-shadow: var(--shd);
}

    .feature-card:hover {
        border-color: var(--border-r);
        transform: translateY(-6px);
        box-shadow: var(--shd-g);
    }

.feature-number {
    font-family: var(--fd);
    font-size: 3rem;
    color: rgba(212, 42, 60, 0.06);
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
    font-weight: 800;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--red-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    transition: all var(--med);
}

.feature-card:hover .feature-icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--fd);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.85rem;
    color: var(--text-s);
    line-height: 1.7;
}

/* STEPS */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

    .steps-container::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 12%;
        width: 76%;
        height: 2px;
        background: linear-gradient(90deg, var(--red), var(--blue));
    }

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    background: #fff;
    border: 2px solid var(--border-r);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
    transition: all var(--med);
    box-shadow: var(--shd);
}

.step-card:hover .step-number {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: scale(1.08);
    box-shadow: var(--shd-g);
}

.step-title {
    font-family: var(--fd);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-s);
    line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 32px 24px;
    transition: all var(--med);
    box-shadow: var(--shd);
}

    .testimonial-card:hover {
        border-color: var(--border-r);
        transform: translateY(-4px);
        box-shadow: var(--shd-h);
    }

.testimonial-quote {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-s);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-stars {
    color: var(--warn);
    margin-bottom: 12px;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

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

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.88rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-m);
}

/* BRANDS */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.brand-item {
    font-family: var(--fd);
    font-size: 1.6rem;
    color: var(--text-m);
    opacity: 0.35;
    transition: all var(--fast);
    font-weight: 700;
}

    .brand-item:hover {
        opacity: 1;
        color: var(--red);
    }

/* CTA */
.cta-banner {
    background: var(--dark);
    border-radius: var(--rl);
    padding: 58px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(212, 42, 60, 0.15), transparent 70%);
        animation: ctaG 6s ease-in-out infinite;
    }

@keyframes ctaG {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-title {
    font-family: var(--fd);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
}

.cta-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    max-width: 460px;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* FAQ */
.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

    .faq-item:hover,
    .faq-item.open {
        border-color: var(--border-r);
    }

.faq-question {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--fast);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--red-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--red);
    transition: transform var(--fast);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--med);
}

.faq-answer-inner {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-s);
    line-height: 1.8;
}

/* AREAS */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
}

.area-tag {
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-s);
    text-align: center;
    transition: all var(--fast);
    cursor: default;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

    .area-tag:hover {
        border-color: var(--red);
        color: var(--red);
        background: var(--red-glow);
        transform: translateY(-2px);
    }

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

.about-image-block {
    position: relative;
    height: 500px;
    border-radius: var(--rl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shd-h);
}

    .about-image-block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--red);
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--r);
    text-align: center;
}

.about-exp-number {
    font-family: var(--fd);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.about-exp-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-family: var(--fd);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.about-text p {
    color: var(--text-s);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-s);
}

    .about-highlight i {
        color: var(--red);
    }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all var(--fast);
    box-shadow: var(--shd);
}

    .contact-info-card:hover {
        border-color: var(--border-r);
        transform: translateX(6px);
    }

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--red-glow);
    border: 1px solid var(--border-r);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--red);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-info-sub {
    font-size: 0.8rem;
    color: var(--text-m);
    margin-top: 2px;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 40px;
    box-shadow: var(--shd);
}

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

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-s);
    margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--text);
    font-family: var(--fh);
    font-size: 0.9rem;
    transition: all var(--fast);
    outline: none;
}

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
        border-color: var(--red);
        box-shadow: 0 0 0 3px var(--red-glow);
    }

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

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d42a3c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* PAGE HEADER */
.page-header {
    padding: 150px 0 70px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

    .page-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( ellipse at 50% 0%, rgba(212, 42, 60, 0.1), transparent 60% );
    }

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

    .page-breadcrumb a {
        color: var(--red-light);
    }

.page-header-title {
    font-family: var(--fd);
    font-size: clamp(1.7rem, 3vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    font-weight: 800;
}

    .page-header-title .red {
        color: var(--red-light);
    }

.page-header-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* COUNTER */
.counter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--rl);
}

.counter-number {
    font-family: var(--fd);
    font-size: 2.8rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 800;
}

.counter-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-m);
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--med);
    box-shadow: var(--shd);
}

    .team-card:hover {
        border-color: var(--border-r);
        transform: translateY(-5px);
    }

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--grad);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.team-name {
    font-family: var(--fd);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.team-role {
    font-size: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--rl);
    overflow: hidden;
    transition: all var(--med);
    position: relative;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    box-shadow: var(--shd);
}

    .gallery-item:hover {
        border-color: var(--red);
        transform: scale(1.02);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(26, 31, 54, 0.85));
    transform: translateY(100%);
    transition: all var(--med);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--fd);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.gallery-overlay p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

/* FLOATING */
.floating-call {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-call-btn {
    width: 46px;
    height: 46px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 18px var(--red-glow);
    transition: all var(--fast);
    animation: bounce 3s ease-in-out infinite;
    border: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.floating-call-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    width: 46px;
    height: 46px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all var(--fast);
    border: none;
}

    .floating-whatsapp:hover {
        transform: scale(1.1);
    }

.back-to-top {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--red);
    cursor: pointer;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: all var(--fast);
    box-shadow: var(--shd);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--red);
        color: #fff;
        transform: translateY(-3px);
    }

/* FOOTER */
.footer {
    background: var(--dark-alt);
    padding: 70px 0 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer .nav-logo-text {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 9px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.45);
        transition: all var(--fast);
    }

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

.footer-heading {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--fast);
}

    .footer-links a:hover {
        color: var(--red);
        padding-left: 6px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

    .footer-copy:hover a {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.959);
    }

.footer-legal {
    display: flex;
    gap: 20px;
}

    .footer-legal a {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.35);
    }

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

        .steps-container::before {
            display: none;
        }

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

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

    .about-split,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: minmax(0,1fr);
    }

    .service-detail.reverse {
        direction: ltr;
        padding-top: 30px;
    }

    .about-image-block {
        height: 320px;
    }

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

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .cta-text {
        margin: 0 auto;
    }

    .hero-arrow {
        display: none;
    }

    .info-bar,
    .nav-phone {
        display: none;
    }

    .hero-carousel {
        height: 90vh;
        min-height: 480px;
    }

    .hero-slide-badge {
        font-size: 0.6rem;
    }

    .hero-slide h1 {
        font-size: clamp(1.7rem, 8vw, 3rem);
        text-align: center;
    }

    .hero-slide p,
    .section-subtitle {
        font-size: 1rem;
        text-align: justify;
        hyphens: auto;
    }

    .hero-slide-btns {
        flex-direction: row;
    }

    .section {
        padding: 40px 0;
    }

    .marquee-item {
        font-size: 0.9rem;
    }

    .marquee-section {
        padding: 10px 0;
    }

    .section-title {
        font-size: 1.7rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .section-badge {
        font-size: 0.6rem;
    }

    .about-text p,
    .feature-text, .service-detail-content p {
        text-align: justify;
        hyphens: auto;
    }

    .service-card-text {
        text-align: justify;
        hyphens: auto;
        line-height: 1.7;
    }

    .service-card-title {
        margin: 0;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .step-number {
        width: 75px;
        height: 75px;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .brand-item {
        font-size: 1rem;
    }

    .cta-text {
        text-align: justify;
        hyphens: auto;
    }

    .footer {
        padding: 40px 0 0 0;
    }

    .footer-grid {
        margin-bottom: 0;
        gap: 25px;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .service-detail {
        padding: 0;
        gap: 20px;
    }

    .service-detail-content h3 {
        font-size: 1.3rem;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .btn-white {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .contact-info-card {
        gap: 8px;
        padding: 18px;
    }

    .mobile-nav a {
        font-size: 1.2rem;
    }

    .mobile-nav {
        height: auto;
        padding: 30px 0px;
    }

    .preloader-tyre {
        width: 40px;
        height: 40px;
    }

    .preloader-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .info-bar {
        gap: 5px;
        font-size: 0.68rem;
        padding: 6px 10px;
    }

    .services-grid,
    .features-grid,
    .steps-container,
    .counter-row,
    .team-grid,
    .gallery-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

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

    .page-header {
        padding: 120px 0 50px;
    }

    .contact-form {
        padding: 28px 16px;
    }

    .hero-slide-btns .btn-primary,
    .hero-slide-btns .btn-white {
        width: 100%;
        justify-content: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .floating-call {
        bottom: 16px;
        right: 16px;
    }

    .back-to-top {
        bottom: 16px;
        left: 16px;
    }

    .navbar {
        top: 0;
    }

    .nav-logo {
        width: 50%;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .nav-logo-text {
        font-size: 1.1rem;
    }
}

/* ============================================================
   LOCATION PAGES — NAV DROPDOWN + CONTACT TRIO
   (additions for the new per-area pages, matches site palette)
   ============================================================ */

/* Areas dropdown in main nav */
.nav-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.nav-drop-trigger {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 7px 14px;
    border-radius: var(--rx);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all var(--fast);
}

    .nav-drop-trigger:hover {
        color: #fff;
        background: rgba(212, 42, 60, 0.15);
    }

.nav-caret {
    font-size: 0.65rem;
    transition: transform var(--fast);
}

.nav-dropdown-wrap:hover .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--fast);
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--rx);
    white-space: nowrap;
    transition: all var(--fast);
}

    .nav-dropdown a:hover {
        color: #fff;
        background: rgba(212, 42, 60, 0.18);
    }

    .nav-dropdown a i {
        font-size: 0.7rem;
        color: var(--red);
        width: 14px;
        text-align: center;
    }

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

/* Contact trio — Location / Email / Call */
.contact-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-trio-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shd);
    transition: all var(--med);
}

    .contact-trio-card:hover {
        transform: translateY(-5px);
        border-color: var(--border-r);
        box-shadow: var(--shd-h);
    }

.contact-trio-icon {
    width: 56px;
    height: 56px;
    background: var(--red-glow);
    border: 1px solid var(--border-r);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    margin: 0 auto 18px;
    transition: all var(--med);
}

.contact-trio-card:hover .contact-trio-icon {
    background: var(--red);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.contact-trio-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-m);
    margin-bottom: 8px;
}

.contact-trio-title {
    font-family: var(--fd);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-trio-value {
    font-size: 0.88rem;
    color: var(--text-s);
    line-height: 1.7;
    word-break: break-word;
    display: inline-block;
    transition: color var(--fast);
}

a.contact-trio-value:hover {
    color: var(--red);
}

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

/* 3-up service-card variant for the location pages */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

/* Intro split (image + content) for location pages — matches about-split spacing */
.loc-intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.loc-intro-img {
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--shd-h);
    position: relative;
}

    .loc-intro-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.loc-intro-content h2 {
    font-family: var(--fd);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

    .loc-intro-content h2 .red {
        color: var(--red);
    }

.loc-intro-content h3 {
    font-family: var(--fd);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 22px 0 12px;
}

.loc-intro-content p {
    font-size: 0.92rem;
    color: var(--text-s);
    line-height: 1.85;
    margin-bottom: 14px;
}

.loc-intro-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .loc-intro-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
