/* =====================================================
   TRANSPORT POP 2020 DOO - Main Stylesheet
   Dark Navy + Vibrant Orange Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --bg-primary:    #050B18;
    --bg-secondary:  #0A1628;
    --bg-card:       rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --orange:        #FF6B00;
    --orange-light:  #FF8C40;
    --orange-dark:   #D45500;
    --orange-glow:   rgba(255, 107, 0, 0.25);
    --orange-glow-s: rgba(255, 107, 0, 0.08);
    --teal:          #00D4AA;
    --white:         #FFFFFF;
    --text-primary:  #E8EAED;
    --text-secondary: rgba(232, 234, 237, 0.55);
    --border:        rgba(255, 255, 255, 0.07);
    --border-orange: rgba(255, 107, 0, 0.3);
    --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 0 40px rgba(255, 107, 0, 0.3);
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --font-display:  'Bebas Neue', sans-serif;
    --font-heading:  'Oswald', sans-serif;
    --font-body:     'Inter', sans-serif;
    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h:         80px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--bg-primary); }
::-webkit-scrollbar-thumb  { background: var(--orange); border-radius: 3px; }

/* ---- Utility ---- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
}

.highlight {
    color: var(--orange);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight:hover::after { transform: scaleX(1); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-glow-s);
    border: 1px solid var(--border-orange);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 16px;
}

.badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.5); }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255,107,0,0.1);
    border-color: var(--border-orange);
    color: var(--orange);
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(5, 11, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px var(--orange-glow);
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
}

.nav-logo-text span {
    font-size: 0.68rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-phone:hover { color: var(--orange); }

.nav-phone svg { color: var(--orange); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.05); }

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.mobile-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(5,11,24,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 14px 16px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--orange-glow-s); color: var(--orange); }

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(0,212,170,0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, #071020 100%);
}

.hero-road {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    z-index: 1;
    overflow: hidden;
}

.hero-road svg { width: 100%; height: 100%; }

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: var(--nav-h);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - var(--nav-h));
    padding: 80px 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-eyebrow-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .line-orange { color: var(--orange); }

.hero-title .line-outline {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
    color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--orange);
    letter-spacing: 1px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Truck Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-truck-scene {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-glow-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-truck-svg {
    width: 100%;
    position: relative;
    z-index: 2;
    animation: truck-float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(255,107,0,0.25));
}

@keyframes truck-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.hero-route-dots {
    position: absolute;
    bottom: -20px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.route-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: route-travel 2s ease-in-out infinite;
}

.route-dot:nth-child(2) { animation-delay: 0.3s; background: var(--orange-light); }
.route-dot:nth-child(3) { animation-delay: 0.6s; background: rgba(255,107,0,0.5); }
.route-dot:nth-child(4) { animation-delay: 0.9s; background: rgba(255,107,0,0.3); }

@keyframes route-travel {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.5; }
}

/* Floating cards on hero */
.hero-float-card {
    position: absolute;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-card);
    animation: card-float 6s ease-in-out infinite;
    z-index: 5;
}

.hero-float-card:nth-child(odd) { animation-direction: alternate-reverse; }

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

.hfc-icon {
    width: 40px; height: 40px;
    background: var(--orange-glow-s);
    border: 1px solid var(--border-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hfc-label { font-size: 0.7rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.hfc-value { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-top: 1px; }

.hfc-delivery { top: 10%; right: -30px; }
.hfc-route    { bottom: 25%; left: -30px; }

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px; height: 42px;
    border: 2px solid var(--border);
    border-radius: 13px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-mouse::after {
    content: '';
    width: 3px; height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ---- Trust Strip ---- */
.trust-strip {
    background: rgba(255,107,0,0.04);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: trust-scroll 30s linear infinite;
    white-space: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

.trust-item svg { color: var(--orange); flex-shrink: 0; }

@keyframes trust-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Section Wrappers ---- */
section { padding: 100px 0; }

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

.section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---- Services ---- */
.services-section { background: var(--bg-secondary); }

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

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

.service-icon {
    width: 60px; height: 60px;
    background: var(--orange-glow-s);
    border: 1px solid var(--border-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-color: var(--orange);
    box-shadow: 0 8px 24px var(--orange-glow);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    position: relative; z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative; z-index: 1;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    transition: var(--transition);
    position: relative; z-index: 1;
}

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

/* ---- Stats Section ---- */
.stats-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,107,0,0.06) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stat-box {
    background: var(--bg-secondary);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.stat-box:hover { background: rgba(255,107,0,0.04); }

.stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--orange);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-light);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

/* ---- Why Us ---- */
.why-section { background: var(--bg-secondary); }

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

.why-visual {
    position: relative;
}

.why-map {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,107,0,0.04);
    border: 1px solid var(--border);
    padding: 32px;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-map-svg { width: 100%; height: 100%; }

.why-badge-floating {
    position: absolute;
    background: rgba(5,11,24,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
}

.why-badge-floating.bottom-right {
    bottom: -20px; right: -20px;
}

.why-badge-floating.top-left {
    top: -20px; left: -20px;
}

.wbf-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
}

.wbf-text {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--border-orange);
    background: var(--bg-card-hover);
    transform: translateX(6px);
}

.why-item-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.why-item-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.why-item-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Fleet Section ---- */
.fleet-section { background: var(--bg-primary); }

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

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.fleet-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.fleet-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255,107,0,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.fleet-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

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

.fleet-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--orange-glow-s);
    border: 1px solid var(--border-orange);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.fleet-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.fleet-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.fleet-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fleet-spec-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
}

/* ---- Destinations ---- */
.destinations-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.destinations-map-container {
    background: rgba(255,107,0,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.dest-country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.dest-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.dest-tag:hover {
    background: var(--orange-glow-s);
    border-color: var(--border-orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.dest-tag .flag { font-size: 1.1rem; }

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

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 7rem;
    color: var(--orange);
    opacity: 0.15;
    position: absolute;
    top: 10px; left: 24px;
    line-height: 1;
}

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

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author-title {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Swiper overrides */
.swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--orange); }

/* ---- CTA Section ---- */
.cta-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,140,64,0.06) 100%);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.cta-title span { color: var(--orange); }

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative; z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative; z-index: 1;
}

/* ---- Contact Section ---- */
.contact-section { background: var(--bg-secondary); }

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

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

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-orange);
    background: var(--bg-card-hover);
}

.contact-info-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.contact-info-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

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

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

/* ---- Form Styles ---- */
.form-group {
    margin-bottom: 24px;
}

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

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

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--orange);
    background: rgba(255,107,0,0.04);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

.form-control::placeholder { color: rgba(232,234,237,0.25); }

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

.form-select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF6B00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

option { background: var(--bg-secondary); color: var(--text-primary); }

.form-error {
    font-size: 0.78rem;
    color: #FF5555;
    margin-top: 6px;
    display: none;
}

.form-success-msg {
    text-align: center;
    padding: 32px;
    display: none;
}

.form-success-msg .success-icon {
    width: 72px; height: 72px;
    background: rgba(0,212,170,0.1);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    animation: success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-pop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 20px 0 28px;
    max-width: 320px;
}

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

.social-btn {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.footer-links li + li { margin-top: 12px; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--orange);
    gap: 12px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.75rem;
    color: var(--orange);
    opacity: 0.5;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    align-items: flex-start;
}

.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-bottom a { color: var(--orange); }

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

.footer-legal a {
    font-size: 0.78rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

/* ---- WhatsApp Floating ---- */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-5px) scale(1.03); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(5,11,24,0.95);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8rem;
    color: var(--white);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.breadcrumb a { color: var(--text-secondary); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); opacity: 0.4; }
.breadcrumb .current { color: var(--orange); }

/* ---- Loading Screen ---- */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--orange);
}

.loading-bar-wrap {
    width: 200px; height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
    animation: loading-progress 1.8s ease-out forwards;
}

@keyframes loading-progress {
    0%   { width: 0%; }
    60%  { width: 70%; }
    100% { width: 100%; }
}

/* ---- Notification Toast ---- */
.toast {
    position: fixed;
    bottom: 100px; right: 32px;
    z-index: 9998;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
}

.toast.show { transform: translateX(0); }
.toast.toast-success { border-color: rgba(0,212,170,0.3); }
.toast.toast-error   { border-color: rgba(255,85,85,0.3); }

.toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.toast-title { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.toast-msg { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }

/* ---- Reveal Animations (custom IntersectionObserver, replaces AOS) ---- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"]    { transform: translateY(44px); }
[data-aos="fade-down"]  { transform: translateY(-44px); }
[data-aos="fade-right"] { transform: translateX(-44px); }
[data-aos="fade-left"]  { transform: translateX(44px); }
[data-aos="zoom-in"]    { transform: scale(0.82); }
[data-aos="zoom-out"]   { transform: scale(1.12); }
[data-aos="fade"]       { transform: none; }

/* Visible state — !important beats any GSAP inline style */
[data-aos].is-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-grid     { gap: 40px; }
}

@media (max-width: 900px) {
    :root { --nav-h: 70px; }

    .nav-links, .nav-phone { display: none; }
    .hamburger { display: flex; }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }

    .hero-eyebrow { justify-content: center; }
    .hero-btns    { justify-content: center; }
    .hero-stats   { justify-content: center; }

    .hero-visual  { display: none; }

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

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

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

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

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

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

    .cta-inner { padding: 48px 24px; }
    .contact-form-wrap { padding: 28px; }

    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-float-card { display: none; }

    .whatsapp-float { bottom: 20px; right: 20px; }
}
