/**
 * Venus Freightways - Main Stylesheet
 * Brand Colors: #033631 (Emerald Green) | #bf9b42 (Primary Gold) | #0c0c0c (Base Dark)
 * Fonts: Space Grotesk | Syne | Inter
 */

/* ============================
   CSS VARIABLES
   ============================ */
:root {
    --color-dark: #0c0c0c;
    --color-emerald: #033631;
    --color-emerald-dark: #022421;
    --color-emerald-light: #044a42;
    --color-gold: #bf9b42;
    --color-gold-light: #d4b56a;
    --color-gold-dim: rgba(191, 155, 66, 0.15);
    --color-white: #ffffff;
    --color-white-muted: #d1d1d1;
    --color-surface: #1f1f1f;
    --color-border: rgba(191, 155, 66, 0.2);
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-accent: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.25s ease-out;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

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

::selection {
    background: var(--color-gold);
    color: var(--color-dark);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    z-index: 10000;
    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-content {
    text-align: center;
}
.preloader-logo {
    height: 80px;
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(191, 155, 66, 0.2);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-fill {
    height: 100%;
    background: var(--color-gold);
    border-radius: 1px;
    animation: preloaderFill 1.5s ease-in-out forwards;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}
@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
    background: var(--color-emerald);
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1000;
    transition: var(--transition-smooth);
}
.top-bar.hidden {
    transform: translateY(-100%);
    margin-top: -40px;
}
.top-bar-info {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar-info span {
    color: var(--color-white-muted);
}
.top-bar-info i {
    color: var(--color-gold);
    margin-right: 6px;
    font-size: 11px;
}
.top-bar-info a {
    color: var(--color-white-muted);
}
.top-bar-info a:hover {
    color: var(--color-gold);
}
.top-bar-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
.top-bar-social a {
    color: var(--color-white-muted);
    font-size: 13px;
    transition: var(--transition-fast);
}
.top-bar-social a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* ============================
   MAIN NAVIGATION
   ============================ */
.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    transition: var(--transition-smooth);
    background: transparent;
}
.main-nav.scrolled {
    background: rgba(3, 54, 49, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.main-nav .container {
    padding: 0 15px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition-fast);
}
.nav-logo:hover img {
    transform: scale(1.02);
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    position: relative;
}
.nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
    text-decoration: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}

/* Dropdown */
.dropdown-menu {
    background: rgba(3, 54, 49, 0.98);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    margin-top: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.dropdown-item {
    color: var(--color-white);
    font-size: 14px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.dropdown-item:hover {
    background: var(--color-gold-dim);
    color: var(--color-gold);
}

/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-gold);
    color: var(--color-emerald);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-left: 16px;
}
.nav-cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.nav-cta-btn:hover {
    background: var(--color-gold-light);
    color: var(--color-emerald);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(191, 155, 66, 0.3);
}
.nav-cta-btn:hover i {
    transform: translateX(4px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    margin: 6px 0;
    transition: var(--transition-fast);
    border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--color-emerald-dark);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-inner {
    padding: 30px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.mobile-close {
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    flex: 1;
}
.mobile-nav-list li {
    margin-bottom: 8px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    text-decoration: none;
}
.mobile-nav-link i {
    color: var(--color-gold);
    width: 24px;
    text-align: center;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--color-gold-dim);
    color: var(--color-gold);
}
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}
.mobile-cta-btn {
    display: block;
    text-align: center;
    background: var(--color-gold);
    color: var(--color-emerald);
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.mobile-cta-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}
.mobile-contact p {
    color: var(--color-white-muted);
    font-size: 14px;
    margin-bottom: 8px;
}
.mobile-contact i {
    color: var(--color-gold);
    margin-right: 8px;
    width: 16px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================
   PAGE HEADER (Inner Pages)
   ============================ */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-emerald);
}
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 54, 49, 0.95) 0%, rgba(3, 54, 49, 0.7) 100%);
}
.page-header-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.breadcrumb-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
}
.breadcrumb-nav a {
    color: var(--color-gold);
}
.breadcrumb-nav a:hover {
    text-decoration: underline;
}
.breadcrumb-nav .separator {
    color: var(--color-gold);
    opacity: 0.5;
}
.breadcrumb-nav .current {
    color: var(--color-white-muted);
}

/* ============================
   SECTIONS GENERAL
   ============================ */
.section-padding {
    padding: 100px 0;
}
.section-padding-lg {
    padding: 140px 0;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-title span {
    color: var(--color-gold);
}

.section-desc {
    font-size: 16px;
    color: var(--color-white-muted);
    line-height: 1.7;
    max-width: 600px;
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    color: var(--color-emerald);
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.btn-primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(191, 155, 66, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-gold);
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-emerald);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(191, 155, 66, 0.2);
}

/* ============================
   TRUST BADGES
   ============================ */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--color-white-muted);
    backdrop-filter: blur(10px);
}
.trust-badge i {
    color: var(--color-gold);
    font-size: 16px;
}

/* ============================
   FEATURE CARDS (Why Choose)
   ============================ */
.feature-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--color-gold);
    border: 1px solid var(--color-border);
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--color-white);
}
.feature-card p {
    font-size: 15px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

/* ============================
   SERVICE CARDS
   ============================ */
.service-card {
    background: var(--color-emerald);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 20px 50px rgba(191, 155, 66, 0.15);
}
.service-card-img {
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.1);
}
.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-gold);
}
.service-card-body p {
    font-size: 15px;
    color: var(--color-white-muted);
    flex: 1;
    margin-bottom: 16px;
}
.service-card-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
}
.service-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.service-card-link:hover i {
    transform: translateX(4px);
}

/* ============================
   TESTIMONIAL CARDS
   ============================ */
.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(191, 155, 66, 0.1);
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    border-color: var(--color-border);
    transform: translateY(-5px);
}
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white-muted);
    margin-bottom: 28px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}
.testimonial-author-info h5 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--color-white);
}
.testimonial-author-info span {
    font-size: 13px;
    color: var(--color-white-muted);
}
.stars {
    color: var(--color-gold);
    font-size: 13px;
    margin-bottom: 16px;
}

/* ============================
   STATS SECTION
   ============================ */
.stats-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 54, 49, 0.88);
    z-index: 1;
}
.stats-content {
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================
   HOW IT WORKS
   ============================ */
.step-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    border: 4px solid rgba(191, 155, 66, 0.3);
    position: relative;
    z-index: 2;
}
.step-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-gold);
}
.step-content p {
    font-size: 15px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .step-connector {
        position: absolute;
        top: 40px;
        left: 60%;
        width: 80%;
        height: 2px;
        border-top: 2px dashed rgba(191, 155, 66, 0.3);
        z-index: 1;
    }
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 54, 49, 0.88);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}
.cta-content h2 span {
    color: var(--color-gold);
}
.cta-phone {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 32px;
    display: inline-block;
}
.cta-phone:hover {
    color: var(--color-gold-light);
}
.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(191, 155, 66, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(191, 155, 66, 0); }
}

/* ============================
   NEWSLETTER SECTION
   ============================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
    padding: 80px 0;
}

/* ============================
   SERVICE AREAS
   ============================ */
.city-tag {
    display: inline-block;
    background: var(--color-gold-dim);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    margin: 6px;
    transition: var(--transition-fast);
}
.city-tag:hover {
    background: var(--color-gold);
    color: var(--color-emerald);
    border-color: var(--color-gold);
}

/* ============================
   FLEET CARD
   ============================ */
.fleet-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(191, 155, 66, 0.1);
    transition: var(--transition-smooth);
}
.fleet-card:hover {
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.fleet-card-img {
    height: 220px;
    overflow: hidden;
}
.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.fleet-card:hover .fleet-card-img img {
    transform: scale(1.1);
}
.fleet-card-body {
    padding: 24px;
}
.fleet-card-body h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}
.fleet-spec {
    font-size: 13px;
    color: var(--color-white-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* ============================
   GALLERY
   ============================ */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-white-muted);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-gold);
    color: var(--color-emerald);
    border-color: var(--color-gold);
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: var(--transition-fast);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-gold);
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================
   VIDEO GALLERY
   ============================ */
.video-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
}
.video-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.video-card:hover img {
    transform: scale(1.05);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(191, 155, 66, 0.4);
}
.video-play-btn i {
    color: var(--color-emerald);
    font-size: 24px;
    margin-left: 4px;
}

/* ============================
   FORMS
   ============================ */
.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
    margin-bottom: 20px;
}
.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(191, 155, 66, 0.1);
    background: rgba(255, 255, 255, 0.08);
}
.form-control-custom option {
    background: var(--color-surface);
    color: var(--color-white);
}
label.form-label {
    color: var(--color-white-muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--color-emerald-dark);
    border-top: 1px solid var(--color-border);
}
.footer-main {
    padding: 80px 0 60px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}
.footer-desc {
    font-size: 15px;
    color: var(--color-white-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(191, 155, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 14px;
    transition: var(--transition-fast);
    border: 1px solid var(--color-border);
}
.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-emerald);
    transform: translateY(-3px);
}
.footer-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}
.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--color-white-muted);
    font-size: 15px;
    transition: var(--transition-fast);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-white-muted);
    font-size: 15px;
}
.footer-contact i {
    color: var(--color-gold);
    font-size: 14px;
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}
.footer-contact a {
    color: var(--color-white-muted);
}
.footer-contact a:hover {
    color: var(--color-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
}
.copyright {
    font-size: 14px;
    color: var(--color-white-muted);
    margin: 0;
}
.credit {
    font-size: 14px;
    color: var(--color-white-muted);
    margin: 0;
}
.credit i {
    color: var(--color-gold);
}
.admin-link {
    color: var(--color-gold);
    font-size: 13px;
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(191, 155, 66, 0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-4px);
    color: var(--color-emerald);
}

/* ============================
   TEAM CARD
   ============================ */
.team-card {
    text-align: center;
    padding: 30px;
}
.team-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(191, 155, 66, 0.2);
}
.team-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-white);
}
.team-card .role {
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 500;
}

/* ============================
   PARTNERS SECTION
   ============================ */
.partners-section {
    background: var(--color-dark);
    padding: 100px 0;
    position: relative;
}
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(191, 155, 66, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.partner-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
    height: 100%;
}
.partner-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(191, 155, 66, 0.12);
    background: rgba(191, 155, 66, 0.05);
}
.partner-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-gold-dim);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}
.partner-card:hover .partner-icon {
    background: var(--color-gold);
    color: var(--color-emerald);
    transform: scale(1.1);
}
.partner-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.3;
}
.partner-type {
    font-size: 12px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.partners-stat-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 0;
    flex-wrap: wrap;
}
.pstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
}
.pstat-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.pstat-label {
    font-size: 13px;
    color: var(--color-white-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.pstat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-border);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .partners-section {
        padding: 60px 0;
    }
    .partner-card {
        padding: 20px 14px;
    }
    .partner-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .partner-name {
        font-size: 13px;
    }
    .partners-stat-bar {
        gap: 0;
        padding: 24px 0;
    }
    .pstat {
        padding: 12px 24px;
        flex-basis: 50%;
    }
    .pstat-divider {
        display: none;
    }
    .pstat-num {
        font-size: 32px;
    }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .top-bar {
        display: none;
    }
    .section-title {
        font-size: 32px;
    }
    .page-header h1 {
        font-size: 40px;
    }
    .stat-number {
        font-size: 48px;
    }
    .cta-content h2 {
        font-size: 36px;
    }
    .cta-phone {
        font-size: 28px;
    }
    /* Hero Section Tablet */
    .hero-content {
        padding: 0;
    }
    /* Fleet grid on tablet */
    .col-lg-6 .row .col-6 img {
        height: 160px !important;
    }
    /* Newsletter */
    .newsletter-section {
        padding: 60px 0;
    }
    /* Section padding tablet */
    .section-padding {
        padding: 70px 0;
    }
    /* CTA section tablet */
    .cta-section {
        padding: 70px 0;
    }
    /* Stats section tablet */
    .stats-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 55px 0;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .section-desc {
        font-size: 14px;
        line-height: 1.65;
    }
    .stat-number {
        font-size: 38px;
    }
    .stat-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .nav-inner {
        height: 65px;
    }
    .nav-logo img {
        height: 40px;
    }
    /* Page header */
    .page-header {
        min-height: 240px;
    }
    .page-header h1 {
        font-size: 28px;
    }
    .page-header-content {
        padding: 80px 0 36px;
    }
    /* CTA */
    .cta-content h2 {
        font-size: 24px;
    }
    .cta-phone {
        font-size: 22px;
    }
    .cta-section {
        padding: 55px 0;
    }
    /* Feature cards */
    .feature-card {
        margin-bottom: 0;
        padding: 24px 18px;
    }
    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    .feature-card h3 {
        font-size: 16px;
    }
    /* Step connector */
    .step-connector {
        display: none;
    }
    /* Gallery */
    .gallery-filter {
        gap: 8px;
    }
    .gallery-filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    /* Service cards */
    .service-card-img {
        height: 160px;
    }
    .service-card-body {
        padding: 20px;
    }
    .service-card-body h3 {
        font-size: 17px;
    }
    /* Testimonial cards */
    .testimonial-card {
        padding: 24px 18px;
    }
    .testimonial-text {
        font-size: 14px;
    }
    /* Stats */
    .stats-section {
        padding: 55px 0;
    }
    .stat-item {
        padding: 12px 0;
    }
    /* Steps */
    .step-item {
        padding: 0;
        margin-bottom: 36px;
    }
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
    .step-content h4 {
        font-size: 16px;
    }
    /* Newsletter */
    .newsletter-section {
        padding: 50px 0;
    }
    /* Footer */
    .footer-main {
        padding: 44px 0 28px;
    }
    .footer-desc {
        font-size: 14px;
        max-width: 100%;
    }
    .footer-title {
        font-size: 14px;
        margin-bottom: 16px;
        margin-top: 24px;
    }
    /* Trust badges on mobile */
    .hero-trust {
        gap: 8px;
    }
    .trust-badge {
        padding: 8px 14px;
        font-size: 11px;
        gap: 6px;
    }
    .trust-badge i {
        font-size: 13px;
    }
    /* Fleet images */
    .col-lg-6 .row .col-6 img {
        height: 120px !important;
    }
    /* Breadcrumb */
    .breadcrumb-nav {
        flex-wrap: wrap;
        font-size: 13px;
    }
    /* Hero buttons stacked */
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn-primary,
    .btn-outline {
        font-size: 13px;
        padding: 12px 24px;
    }
    /* City tags */
    .city-tag {
        padding: 8px 14px;
        font-size: 12px;
        margin: 4px;
    }
    /* Contact page layout */
    .contact-form-wrapper {
        padding: 28px 18px;
    }
    /* Fleet card */
    .fleet-card-img {
        height: 190px;
    }
    /* Team card */
    .team-card {
        padding: 20px;
    }
    /* Partners section */
    .partners-section {
        padding: 55px 0;
    }
    /* Back to top */
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 16px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 20px;
    }
    .section-padding {
        padding: 45px 0;
    }
    .btn-primary,
    .btn-outline {
        padding: 11px 22px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: auto;
        justify-content: flex-start;
    }
    .cta-content h2 {
        font-size: 20px;
    }
    .cta-phone {
        font-size: 20px;
    }
    .cta-section {
        padding: 45px 0;
    }
    .stat-number {
        font-size: 34px;
    }
    .stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .footer-main {
        padding: 36px 0 20px;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 8px;
    }
    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }
    /* Quote page */
    .quote-form-section {
        padding: 36px 0;
    }
    /* Mobile menu */
    .mobile-menu {
        max-width: 100%;
    }
    .mobile-menu-inner {
        padding: 24px 20px;
    }
    /* Page header */
    .page-header h1 {
        font-size: 22px;
    }
    .page-header-content {
        padding: 70px 0 28px;
    }
    /* About page */
    .team-card img {
        width: 120px;
        height: 120px;
    }
    /* Fleet card */
    .fleet-card-img {
        height: 170px;
    }
    .fleet-card-body {
        padding: 18px;
    }
    .fleet-card-body h4 {
        font-size: 15px;
    }
    /* Gallery */
    .gallery-item {
        margin-bottom: 14px;
    }
    /* Back to top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
        font-size: 14px;
    }
    /* Testimonial */
    .testimonial-author img {
        width: 44px;
        height: 44px;
    }
    .testimonial-author-info h5 {
        font-size: 14px;
    }
    /* Partners */
    .partners-section {
        padding: 40px 0;
    }
    .partner-card {
        padding: 20px 14px;
    }
    .pstat-num {
        font-size: 28px;
    }
    .pstat {
        padding: 0 24px;
    }
    /* Nav logo smaller */
    .nav-logo img {
        height: 36px;
    }
    .nav-inner {
        height: 60px;
    }
}
