/* ═══════════════════════════════════════════════════════════
   VICTORIAN LORDS — UK Haulage
   Light Theme — White, Black & Red
   ═══════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
    --bg-deep:       #e8e8e8;
    --bg-primary:    #e8e8e8;
    --bg-secondary:  #dedede;
    --bg-tertiary:   #d4d4d4;
    --bg-card:       #f0f0f0;
    --bg-card-hover: #ebebeb;

    --gold-primary:  #DC2626;
    --gold-light:    #EF4444;
    --gold-dark:     #B91C1C;
    --gold-dim:      #991B1B;
    --gold-glow:     rgba(220, 38, 38, 0.1);
    --gold-glow-strong: rgba(220, 38, 38, 0.2);

    --cream:         #FEE2E2;
    --burgundy:      #7F1D1D;

    --text-primary:  #1a1a1a;
    --text-secondary:#555555;
    --text-dim:      #999999;

    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-light:  rgba(0, 0, 0, 0.1);
    --border-gold:   rgba(220, 38, 38, 0.25);

    --font-display:  'Montserrat', sans-serif;
    --font-heading:  'Montserrat', sans-serif;
    --font-accent:   'Montserrat', sans-serif;
    --font-body:     'Montserrat', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);

    --nav-height: 80px;

    --red-gradient: linear-gradient(135deg, #DC2626, #991B1B);
    --red-gradient-hover: linear-gradient(135deg, #EF4444, #B91C1C);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) #d4d4d4;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #d4d4d4; }
::-webkit-scrollbar-thumb { background: #aaa; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

::selection {
    background: var(--gold-primary);
    color: var(--bg-deep);
}

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.preloader-crown {
    width: 80px;
    height: auto;
    margin: 0 auto 1.5rem;
    color: var(--gold-primary);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-crown svg {
    width: 100%;
    height: auto;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.4em;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    border-radius: 2px;
    animation: preloaderFill 1.8s var(--ease-out-expo) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* ═══════════════════════════════════════
   PARTICLES CANVAS
   ═══════════════════════════════════════ */
#particles-canvas {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

#particles-canvas.visible {
    opacity: 1;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s var(--ease-out-quart);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(232, 232, 232, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    height: 70px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 9999;
    position: relative;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-logo-dark {
    display: none;
}

#navbar.scrolled .nav-logo-light {
    display: none;
}

#navbar.scrolled .nav-logo-dark {
    display: block;
}

.nav-crown {
    width: 36px;
    height: auto;
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

#navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--red-gradient);
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover {
    background: var(--red-gradient-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

#navbar.scrolled .nav-hamburger span {
    background: var(--text-primary);
}

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

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

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

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRevealUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(220, 38, 38, 0.85);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: heroRevealUp 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRevealUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroRevealUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero-ctas .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── HERO KEYFRAMES ── */
@keyframes heroRevealUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroRevealScale {
    to { opacity: 1; transform: scale(1); }
}

@keyframes expandLine {
    to { opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
}

.btn-gold {
    background: var(--red-gradient);
    color: #ffffff;
    border: 1px solid var(--gold-primary);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover {
    background: var(--red-gradient-hover);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow-strong);
}

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

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: var(--gold-glow);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════ */
section {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-divider-left {
    justify-content: flex-start;
}

.section-divider .divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.section-divider .divider-ornament {
    color: var(--gold-dim);
    font-size: 0.6rem;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal.reveal-up { transform: translateY(40px); }
.reveal.reveal-left { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }

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

/* ═══════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════ */
#services {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-quart);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 30px var(--gold-glow);
}

.service-card-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--border-subtle);
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: color 0.5s ease;
}

.service-card:hover .service-card-num {
    color: var(--gold-glow-strong);
}

.service-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}


/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
#about {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

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

.about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

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

.about-frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold-primary);
    border-style: solid;
    border-width: 0;
}

.about-frame-tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.about-frame-tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.about-frame-bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.about-frame-br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.value-icon {
    color: var(--gold-primary);
    font-size: 0.6rem;
}

.value-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

/* ═══════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════ */
#stats {
    padding: 5rem 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, transparent 50%, rgba(220, 38, 38, 0.1) 100%);
    opacity: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--gold-primary);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
}

/* ═══════════════════════════════════════
   FLEET SECTION
   ═══════════════════════════════════════ */
#fleet {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-quart);
    cursor: default;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
}

.fleet-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08), 0 0 30px var(--gold-glow);
}

.fleet-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border-subtle);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.fleet-card:hover .fleet-card-number {
    color: var(--gold-glow-strong);
}

.fleet-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.fleet-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.fleet-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.fleet-card:hover .fleet-card-line {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════ */
#testimonials {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out-expo);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote-mark {
    font-family: var(--font-accent);
    font-size: 6rem;
    line-height: 1;
    color: var(--gold-primary);
    opacity: 0.3;
    margin-bottom: -1rem;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
}

.testimonial-author-role {
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold-dim);
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
}

.testimonial-dot:hover {
    border-color: var(--gold-primary);
}

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
#contact {
    padding: 8rem 0;
    background: var(--bg-primary);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239a9088' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

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

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

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 3rem;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-detail svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.contact-hours h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.contact-hours p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-hours-note {
    margin-top: 0.5rem;
    color: var(--gold-dim) !important;
    font-style: italic;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
#footer {
    padding: 5rem 0 0;
    background: #1a1a1a;
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-crown {
    width: 32px;
    height: auto;
    color: var(--gold-primary);
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
}

.footer-links-group a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2.2;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--gold-primary);
    padding-left: 0.3rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.footer-partner-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.footer-partner-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.footer-partner-link:hover {
    opacity: 0.8;
}

.footer-partner-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.03em;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.footer-credit {
    color: #DC2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit:hover {
    color: #EF4444;
}

/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    color: var(--gold-primary);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-quart);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--gold-primary);
    color: var(--bg-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content .section-title {
        text-align: center;
    }

    .section-divider-left {
        justify-content: center;
    }

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

    .about-values {
        align-items: center;
    }

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

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

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

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    #navbar:has(.nav-links.active) {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        border-bottom: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        z-index: 9998;
        background: #050505;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-link.active,
    .nav-link:hover {
        color: #ffffff;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        z-index: 9999;
    }

    .nav-container {
        justify-content: center;
        position: relative;
    }

    .nav-hamburger {
        position: absolute;
        right: 2rem;
    }

    .nav-logo {
        margin: 0 auto;
    }

    .hero-title {
        letter-spacing: 0.12em;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    section {
        padding: 5rem 0 !important;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-track {
        min-height: 450px;
    }
}

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

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.08em;
    }

    .hero-tagline {
        font-size: 1rem;
    }

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

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

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

    .stat-item::after {
        display: none;
    }
}

/* ═══════════════════════════════════════
   UTILITY / MISC
   ═══════════════════════════════════════ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Custom focus for accessibility */
:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}
