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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 24px rgba(255, 184, 0, 0.4);
}

.mobile-call-bar svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 32px rgba(255, 184, 0, 0.08);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 16px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-logo-text,
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.navbar-phone {
    display: none;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    list-style: none;
}

.navbar-menu a:not(.btn) {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.navbar-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.navbar-menu a:not(.btn):hover {
    color: #fff;
}

.navbar-menu a:not(.btn):hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.navbar-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--card);
    color: var(--heading);
    border-color: var(--border);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gold-gradient);
    color: #000;
    border-color: var(--accent);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ffe082 0%, #ffc107 50%, #ff9800 100%);
    border-color: var(--accent-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.45);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.35);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { background-size: 100% auto; }
    to { background-size: 110% auto; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 45%,
        rgba(0, 0, 0, 0.88) 100%
    );
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: clamp(120px, 18vh, 160px) 0 clamp(80px, 12vh, 120px);
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease forwards;
}

.hero-headline {
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-headline::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin-top: 20px;
    border-radius: 2px;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-trust-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounce 2s ease infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.ticker {
    background: var(--gold-gradient);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-item {
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding: 0 8px;
}

.ticker-item::before {
    content: '◆';
    margin-right: 16px;
    font-size: 0.5rem;
    vertical-align: middle;
    opacity: 0.6;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.stats-bar {
    background: var(--primary-dark);
    padding: clamp(40px, 6vw, 64px) 0;
    border-bottom: 3px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 4vw, 40px);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section {
    padding: clamp(64px, 10vw, 110px) 0;
}

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

.section-dark {
    background: var(--primary-dark);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.section-label-light {
    color: var(--accent-light);
}

.section-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 900;
    color: var(--heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.section-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.section-text-light {
    color: rgba(255, 255, 255, 0.65);
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header.centred {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
    transform: translateY(32px);
}

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

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

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.split-image img {
    width: 100%;
    height: clamp(280px, 40vw, 520px);
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-image:hover img {
    transform: scale(1.04);
}

.split-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.fleet-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.fleet-card-image {
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.08);
}

.fleet-card-body {
    padding: 24px;
}

.fleet-card-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.fleet-card-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 28px);
}

.service-card {
    background: var(--card);
    padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 28px);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.35);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.image-banner {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.image-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(255, 184, 0, 0.12));
}

.image-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}

.image-banner-content h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.image-banner-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.routes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: center;
}

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

.route-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--heading);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.route-chip:hover {
    border-color: var(--accent);
    background: rgba(255, 184, 0, 0.08);
}

.route-chip svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.routes-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.routes-image img {
    width: 100%;
    height: clamp(280px, 35vw, 440px);
    object-fit: cover;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 3vw, 24px);
}

.cert-card {
    text-align: center;
    padding: clamp(24px, 4vw, 36px) 20px;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.3);
}

.cert-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    color: #000;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

.cert-badge svg {
    width: 28px;
    height: 28px;
}

.cert-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 3vw, 28px);
}

.why-card {
    padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 28px);
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.08);
    border-color: rgba(255, 184, 0, 0.25);
}

.why-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-strip {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: clamp(48px, 8vw, 80px) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-strip-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.cta-strip-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.split-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(360px, 50vw, 520px);
}

.split-banner-image {
    background-size: cover;
    background-position: center;
    min-height: 280px;
}

.split-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 72px);
    background: var(--primary-dark);
}

.split-banner-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.split-banner-content p {
    font-size: clamp(1rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    color: var(--text);
}

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.1);
    transform: translateX(4px);
    color: var(--text);
}

.contact-card-static {
    cursor: default;
}

.contact-card-static:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: none;
}

.contact-card svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--silver);
}

.contact-form-wrapper {
    background: var(--card);
    padding: clamp(28px, 5vw, 44px);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--silver);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid rgba(255, 184, 0, 0.12);
    border-radius: 8px;
    background: var(--background);
    color: var(--heading);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}

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

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

.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(48px, 8vw, 72px) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 5vw, 48px);
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    font-weight: 500;
}

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

.social-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 700;
}

.social-link:hover {
    background: var(--gold-gradient);
    color: #000;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.contact-notice {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-notice-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-notice-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 1100px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

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

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

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

    .split-section,
    .routes-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split-image {
        order: -1;
    }

    .routes-image {
        order: -1;
    }

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

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-text p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: flex;
    }

    body {
        padding-bottom: 56px;
    }

    .navbar-phone {
        display: block;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
        align-items: stretch;
    }

    .navbar-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-menu a {
        display: block;
        padding: 18px 0;
        font-size: 1.05rem;
    }

    .navbar-menu a.btn {
        margin-top: 16px;
        text-align: center;
        width: 100%;
    }

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

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

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

    .hero-scroll {
        display: none;
    }

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

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

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

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

    .split-banner {
        grid-template-columns: 1fr;
    }

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

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

    .image-banner {
        background-attachment: scroll;
    }

    .hero {
        animation: none;
        background-size: cover;
    }
}

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

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

    .hero-trust {
        flex-direction: column;
    }

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

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

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
