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

:root {
    --gold:       #F5A623;
    --gold-dark:  #d4891c;
    --navy:       #1a1f5e;
    --bg:         #080808;
    --bg-card:    #111111;
    --bg-card-2:  #0e0e0e;
    --text:       #ffffff;
    --text-muted: #888888;
    --border:     rgba(245, 166, 35, 0.14);
    --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius:     12px;
    --ease:       all 0.3s ease;
}

html { scroll-behavior: smooth; }

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

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

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 110px 0; }

.gold { color: var(--gold); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: var(--ease);
    border: none;
    font-family: var(--font);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.32);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
}

/* Section labels */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--ease);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    transition: var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

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

.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); }

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

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 8, 8, 0.94) 35%,
        rgba(8, 8, 8, 0.55) 65%,
        rgba(8, 8, 8, 0.18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 88px;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 6.5vw, 5.4rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: 640px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.62);
    max-width: 460px;
    margin-bottom: 44px;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 54px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: lineScroll 2.2s ease-in-out infinite;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    position: relative;
    transition: var(--ease);
}

.service-card:hover {
    border-color: rgba(245, 166, 35, 0.42);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.service-card-featured {
    background: linear-gradient(145deg, #0f1724, #0a1019);
    border-color: var(--gold);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.service-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(245, 166, 35, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--gold);
}

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

.service-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.75;
}

.service-features {
    margin-bottom: 36px;
}

.service-features li {
    color: rgba(255,255,255,0.68);
    font-size: 0.88rem;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ============================================================
   FLEET
   ============================================================ */
.fleet {
    background: var(--bg-card-2);
    border-top: 1px solid var(--border);
}

.fleet-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.14);
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease);
    font-family: var(--font);
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 166, 35, 0.06);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 24px;
}

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

.fleet-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.fleet-card.hidden { display: none; }

.fleet-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.07);
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--ease);
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-info {
    padding: 20px 24px 22px;
}

.fleet-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.fleet-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.fleet-tags { display: flex; gap: 8px; }

.tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.tag.hire {
    background: rgba(245, 166, 35, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.28);
}

.tag.sale {
    background: rgba(100, 120, 255, 0.1);
    color: #99aaff;
    border: 1px solid rgba(100, 120, 255, 0.25);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 88px;
    align-items: center;
}

.why-us-text .section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.why-us-desc {
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.75;
}

.why-us-features { display: grid; gap: 20px; }

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--ease);
}

.feature:hover {
    border-color: rgba(245, 166, 35, 0.32);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    background: var(--bg-card-2);
    border-top: 1px solid var(--border);
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--ease);
}

.contact-card:hover {
    border-color: rgba(245, 166, 35, 0.42);
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.4);
}

.contact-card-featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, #0f1724, #0a1019);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid rgba(245, 166, 35, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.65;
}

.contact-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    word-break: break-all;
    transition: var(--ease);
}

.contact-link:hover { opacity: 0.75; }

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: var(--ease);
}

.social-link svg { width: 17px; height: 17px; }

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 166, 35, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 44px 0 28px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img { height: 40px; width: auto; }

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

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--ease);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    width: 100%;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in grids */
.services-grid  .fade-in:nth-child(2) { transition-delay: 0.12s; }
.fleet-grid     .fade-in:nth-child(2) { transition-delay: 0.08s; }
.fleet-grid     .fade-in:nth-child(3) { transition-delay: 0.16s; }
.fleet-grid     .fade-in:nth-child(4) { transition-delay: 0.08s; }
.fleet-grid     .fade-in:nth-child(5) { transition-delay: 0.16s; }
.fleet-grid     .fade-in:nth-child(6) { transition-delay: 0.24s; }
.fleet-grid     .fade-in:nth-child(7) { transition-delay: 0.08s; }
.why-us-features .fade-in:nth-child(2) { transition-delay: 0.1s; }
.why-us-features .fade-in:nth-child(3) { transition-delay: 0.2s; }
.why-us-features .fade-in:nth-child(4) { transition-delay: 0.3s; }
.contact-grid   .fade-in:nth-child(2) { transition-delay: 0.1s; }
.contact-grid   .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 960px) {
    .services-grid     { grid-template-columns: 1fr; }
    .why-us-inner      { grid-template-columns: 1fr; gap: 52px; }
    .contact-grid      { grid-template-columns: 1fr; }
    .fleet-grid        { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 270px;
        background: rgba(6, 6, 6, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 110px 40px 40px;
        gap: 28px;
        border-left: 1px solid var(--border);
        transition: right 0.35s ease;
        z-index: 999;
    }

    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.1rem; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .section { padding: 80px 0; }

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

    .service-card { padding: 36px 28px; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-brand { flex-direction: column; gap: 10px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
    .section { padding: 64px 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
    .fleet-tabs { flex-wrap: wrap; }
}
