/*
Theme Name: VTC.SN Premium
Theme URI: https://vtc.sn
Author: VTC.SN Dev Team
Author URI: https://vtc.sn
Description: Theme WordPress sur mesure pour VTC.SN, service de chauffeur prive premium au Senegal.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Proprietary
Text Domain: vtc-sn
Tags: vtc, chauffeur, transport, premium, senegal
*/

:root {
    --color-primary: #0f1f2d;
    --color-primary-soft: #153247;
    --color-secondary: #d7b354;
    --color-surface: #ffffff;
    --color-bg-soft: #f4f6f8;
    --color-text: #22303b;
    --color-muted: #5f6d77;
    --color-border: #d7dde2;
    --color-success: #1f8f61;
    --color-warning: #9b6a15;

    --font-heading: "Fraunces", Georgia, serif;
    --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4rem;

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;

    --shadow-sm: 0 2px 8px rgba(12, 22, 31, 0.08);
    --shadow-md: 0 8px 26px rgba(12, 22, 31, 0.1);
    --shadow-lg: 0 16px 40px rgba(12, 22, 31, 0.16);

    --container: 1200px;
    --header-height: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-surface);
    line-height: 1.65;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-soft);
}

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

main {
    display: block;
}

p {
    margin-top: 0;
    margin-bottom: var(--space-3);
}

ul,
ol {
    margin-top: 0;
    margin-bottom: var(--space-3);
    padding-left: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: var(--space-3);
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.18;
}

h1 {
    font-size: clamp(2rem, 1.6rem + 2vw, 3.3rem);
}

h2 {
    font-size: clamp(1.65rem, 1.45rem + 1.4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 1.1rem + 0.7vw, 1.6rem);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: var(--color-secondary);
    color: #111;
    padding: var(--space-2) var(--space-3);
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    position: absolute;
    word-wrap: normal;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.site-main {
    min-height: 40vh;
}

.section {
    padding-block: clamp(3rem, 2.2rem + 2vw, 5.5rem);
}

.section-light {
    background: var(--color-bg-soft);
}

.section-dark {
    background: linear-gradient(145deg, #0b1a26 0%, #112a3f 100%);
    color: rgba(255, 255, 255, 0.9);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark a {
    color: rgba(255, 255, 255, 0.95);
}

.section-title {
    margin-bottom: var(--space-6);
    text-align: center;
}

.section-title p {
    max-width: 780px;
    margin-inline: auto;
    color: var(--color-muted);
}

.section-dark .section-title p {
    color: rgba(255, 255, 255, 0.78);
}

.page-title {
    margin-bottom: var(--space-5);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-secondary);
    color: #1b2125;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    box-shadow: var(--shadow-md);
    color: #101419;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.68);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.dark-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.dark-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.topbar {
    background: #0c1a26;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
}

.topbar a {
    color: rgba(255, 255, 255, 0.88);
}

.topbar a:hover {
    color: #fff;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    min-height: 44px;
}

.topbar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar-list a,
.topbar-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(15, 31, 45, 0.93);
    backdrop-filter: blur(8px);
    min-height: var(--header-height);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: min-height 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
    min-height: 74px;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo-link img,
.fallback-logo {
    max-height: 52px;
    width: auto;
    filter: invert(1);
}

.logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    font-weight: 700;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: var(--space-2);
    filter: invert(1);
}

.main-nav .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.main-nav .current-menu-item > a,
.main-nav a:hover {
    color: var(--color-secondary);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.mobile-menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.mobile-menu {
    position: fixed;
    inset: auto 0 0 0;
    transform: translateY(105%);
    transition: transform 0.25s ease;
    background: #0f1f2d;
    z-index: 850;
    padding: 1rem;
    box-shadow: 0 -10px 28px rgba(6, 10, 14, 0.35);
}

body.mobile-menu-open .mobile-menu {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li + li {
    margin-top: 0.35rem;
}

.mobile-menu a {
    display: block;
    padding: 0.78rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 44px));
    display: flex;
    align-items: center;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(215, 179, 84, 0.24), transparent 52%),
        linear-gradient(135deg, #112a3f 0%, #0a1721 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 17, 25, 0.6), rgba(10, 17, 25, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-block: var(--space-7);
}

.hero-content h1,
.hero-content p {
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.services-grid,
.fleet-grid,
.zones-grid,
.blog-grid {
    display: grid;
    gap: 1.3rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.fleet-grid,
.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.zones-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.service-card,
.vehicle-card,
.testimonial-card,
.zone-card,
.blog-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
}

.service-card,
.testimonial-card,
.zone-card {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-card-media {
    margin-bottom: 1rem;
    min-height: 56px;
}

.service-card-media img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.service-card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 179, 84, 0.18);
    color: #7d5d10;
    border-radius: 0.75rem;
}

.service-card-body h3,
.vehicle-card-body h3,
.blog-card-body h2,
.zone-card h3 {
    margin-bottom: 0.65rem;
}

.service-card-body p,
.vehicle-card-body p,
.zone-card p {
    color: var(--color-muted);
}

.rate {
    color: #7d5d10;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-highlights {
    margin: 0 0 var(--space-3);
    list-style: none;
    padding-left: 0;
}

.service-highlights li {
    padding-left: 1.05rem;
    position: relative;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.service-highlights li::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--color-secondary);
    position: absolute;
    left: 0;
    top: 0.58rem;
}

.vehicle-thumb {
    display: block;
    min-height: 210px;
    background: linear-gradient(145deg, #dbe5eb, #f4f8fa);
}

.vehicle-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.vehicle-fallback {
    display: grid;
    place-items: center;
    height: 210px;
    font-weight: 700;
    color: #4d5d69;
}

.vehicle-card-body,
.blog-card-body {
    padding: 1.2rem;
}

.vehicle-meta,
.zone-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
}

.category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary-soft);
    font-weight: 700;
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.is-available {
    background: rgba(31, 143, 97, 0.14);
    color: #186b49;
}

.is-limited {
    background: rgba(155, 106, 21, 0.14);
    color: #81570f;
}

.vehicle-specs,
.zone-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.vehicle-specs li,
.zone-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #49555f;
    font-size: 0.88rem;
}

.testimonial-card {
    position: relative;
}

.testimonial-card blockquote {
    margin: 0 0 var(--space-3);
    padding: 0;
    color: var(--color-text);
}

.stars {
    margin-bottom: 0.7rem;
    color: #a17419;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-author img {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-author span {
    display: block;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: var(--space-3);
}

.stat-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.5rem);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.45rem;
}

.stat-item span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: left;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-question i {
    transform: rotate(45deg);
}

.section-cta {
    background: linear-gradient(120deg, #112a3f 0%, #1a3e59 62%, #1f4e70 100%);
    color: #fff;
}

.section-cta h2,
.section-cta p {
    color: #fff;
}

.section-cta-inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    justify-content: space-between;
}

.map-placeholder {
    border: 1px dashed #9fb0bd;
    border-radius: var(--radius-md);
    min-height: 240px;
    display: grid;
    place-items: center;
    background: #eef3f6;
    color: #5f6d77;
    text-align: center;
    padding: 1rem;
    margin-bottom: var(--space-4);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1rem;
}

.contact-panel,
.contact-form-panel {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.contact-panel p {
    display: flex;
    align-items: center;
    gap: 0.58rem;
}

.contact-panel i {
    color: var(--color-primary-soft);
}

.devis-fallback-form {
    display: grid;
    gap: 0.78rem;
}

.form-row label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #b8c4ce;
    border-radius: 0.5rem;
    padding: 0.68rem 0.75rem;
    font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: 2px solid rgba(21, 50, 71, 0.25);
    border-color: #385a73;
}

.single-layout {
    max-width: 960px;
}

.single-content {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    padding: clamp(1rem, 0.6rem + 1.4vw, 1.75rem);
    box-shadow: var(--shadow-sm);
}

.single-featured {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.single-featured img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.single-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.vehicle-specs--single,
.zone-meta--single {
    margin-bottom: var(--space-3);
}

.prose {
    max-width: 880px;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.blog-card-thumb {
    display: block;
    min-height: 160px;
    background: #dce6ee;
}

.blog-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.site-footer {
    background: #0f1f2d;
    color: rgba(255, 255, 255, 0.82);
    padding-top: var(--space-6);
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding-bottom: var(--space-6);
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, 0.78);
}

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

.footer-col .menu li + li {
    margin-top: 0.45rem;
}

.footer-col .menu a,
.footer-col a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-col .menu a:hover,
.footer-col a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links a {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: rgba(215, 179, 84, 0.18);
}

.footer-bottom {
    background: #0a1620;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
}

.footer-bottom-inner p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1rem;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: var(--shadow-md);
    z-index: 940;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.02);
}

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

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .topbar-inner {
        min-height: auto;
        padding-block: 0.4rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-hours {
        font-size: 0.8rem;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding-block: 3.5rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 170px;
    }

    .section-title {
        margin-bottom: var(--space-4);
    }

    .footer-bottom-inner {
        justify-content: center;
        flex-direction: column;
        padding-block: 0.65rem;
        text-align: center;
    }
}

/* ----------------------------------------------------------------
   Hero media (T-0401)
   ---------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ----------------------------------------------------------------
   Booking bar (T-0402)
   ---------------------------------------------------------------- */
.booking-bar {
    background: var(--color-primary);
    padding: var(--space-4) 0;
}

.booking-bar__form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: flex-end;
    justify-content: center;
}

.booking-bar__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 200px;
    max-width: 280px;
}

.booking-bar__field label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.booking-bar__field select,
.booking-bar__field input {
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
}

.booking-bar__field select option {
    color: var(--color-text);
    background: #fff;
}

/* ----------------------------------------------------------------
   Gallery grid (T-0405)
   ---------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-3);
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* ----------------------------------------------------------------
   Filter bar (T-0411, T-0421)
   ---------------------------------------------------------------- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    margin-bottom: var(--space-5);
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.filter-btn.is-active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

/* ----------------------------------------------------------------
   Scroll-to-top button (T-0701)
   ---------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 6.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: opacity 0.2s, transform 0.2s;
}

.scroll-top:hover {
    transform: translateY(-2px);
    background: var(--color-primary-soft);
}

/* ----------------------------------------------------------------
   Blog sidebar layout (T-0502, T-0503)
   ---------------------------------------------------------------- */
.blog-with-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

@media (min-width: 768px) {
    .blog-with-sidebar {
        grid-template-columns: 1fr 300px;
    }
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.blog-sidebar .widget {
    background: var(--color-bg-soft);
    padding: var(--space-4);
    border-radius: var(--radius-md);
}

.blog-sidebar .widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-3);
    color: var(--color-primary);
}

/* ----------------------------------------------------------------
   Social share (T-0502)
   ---------------------------------------------------------------- */
.social-share {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.social-share__label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-share a:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* ----------------------------------------------------------------
   Multi-step quote form (T-0441)
   ---------------------------------------------------------------- */
.quote-multistep {
    max-width: 600px;
    margin: 0 auto;
}

.quote-steps-indicator {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    color: var(--color-muted);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s;
}

.step-dot.is-active {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.quote-step fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.quote-step legend {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.quote-step label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    margin-top: var(--space-3);
    color: var(--color-text);
}

.quote-step input,
.quote-step select,
.quote-step textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.quote-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

/* ----------------------------------------------------------------
   CTA contact component (T-0443)
   ---------------------------------------------------------------- */
.cta-contact {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
}

/* ----------------------------------------------------------------
   Zones summary (T-0432)
   ---------------------------------------------------------------- */
.zones-summary {
    text-align: center;
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-5);
}

/* ----------------------------------------------------------------
   Carousel shared styles (T-0404, T-0406)
   ---------------------------------------------------------------- */
.fleet-carousel,
.testimonials-carousel {
    position: relative;
}

.fleet-carousel .carousel-prev,
.fleet-carousel .carousel-next,
.testimonials-carousel .carousel-prev,
.testimonials-carousel .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.2s;
}

.fleet-carousel .carousel-prev,
.testimonials-carousel .carousel-prev {
    left: -1rem;
}

.fleet-carousel .carousel-next,
.testimonials-carousel .carousel-next {
    right: -1rem;
}

.fleet-carousel .carousel-prev:hover,
.fleet-carousel .carousel-next:hover,
.testimonials-carousel .carousel-prev:hover,
.testimonials-carousel .carousel-next:hover {
    opacity: 0.85;
}

/* ----------------------------------------------------------------
   Scroll-reveal animations (T-0324)
   ---------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ----------------------------------------------------------------
   Quote form section
   ---------------------------------------------------------------- */
.quote-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* ----------------------------------------------------------------
   Contact map section (T-0442)
   ---------------------------------------------------------------- */
.contact-map-section h2 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-3);
}

/* ----------------------------------------------------------------
   Lightbox (T-0327)
   ---------------------------------------------------------------- */
.vtc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.vtc-lightbox.is-open {
    display: flex;
}

.vtc-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.vtc-lightbox__img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.vtc-lightbox__close,
.vtc-lightbox__prev,
.vtc-lightbox__next {
    position: absolute;
    z-index: 2;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.vtc-lightbox__close:hover,
.vtc-lightbox__prev:hover,
.vtc-lightbox__next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.vtc-lightbox__close {
    top: 1rem;
    right: 1rem;
}

.vtc-lightbox__prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.vtc-lightbox__next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
