/* ========================================
   Transport Secure Express - Main Stylesheet
   Theme: Dark Charcoal + Gold
======================================== */

:root {
    /* Primary Colors */
    --silver: #ffffff;
    --gold: #D4A853;
    --gold-light: #E8C97C;
    --gold-dark: #B8923E;
    --charcoal: #2C2C2C;
    --charcoal-dark: #1A1A1A;
    --charcoal-light: #3D3D3D;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4A853 0%, #B8923E 100%);
    --gradient-dark: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);


    /* Text Colors */
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dark: #1A1A1A;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 5px 30px rgba(212, 168, 83, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --section-padding: 100px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 40px;
}

/* ========================================
   Global Styles
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--charcoal-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--gold);
    color: var(--charcoal-dark);
}

.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-charcoal {
    background-color: var(--charcoal) !important;
}

.bg-charcoal-dark {
    background-color: var(--charcoal-dark) !important;
}

.text-muted {
    color: #B0B0B0 !important;
}

.py-6 {
    padding: 100px 0;
}

/* ========================================
   Preloader
======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.compass {
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    position: relative;
    animation: pulse 1.5s ease-in-out infinite;
    margin: 0 auto 20px;
}

.compass-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    animation: rotate 2s linear infinite;
}

.compass-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 20px solid var(--gold);
}

.compass-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 20px solid var(--charcoal-light);
}

.loading-text {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(212, 168, 83, 0);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ========================================
   Navigation
======================================== */

#mainNav {
    background: transparent;
    padding: 20px 0;
    transition: var(--transition-normal);
}

#mainNav.scrolled {
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 60px;
    height: 60px;
    /* background: var(--gradient-gold); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--charcoal-dark);
    overflow: hidden;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--silver);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

#mainNav .navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition-normal);
}

#mainNav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    width: 30px;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.dropdown-menu-dark {
    background: var(--charcoal);
    border: 1px solid var(--charcoal-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text-light);
    padding: 10px 20px;
    transition: var(--transition-normal);
}

.dropdown-item:hover {
    background: var(--charcoal-light);
    color: var(--gold);
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--gold);
}

/* ========================================
   Buttons
======================================== */

.btn-gold {
    background: var(--gradient-gold);
    color: var(--charcoal-dark);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 168, 83, 0.5);
    color: var(--charcoal-dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--charcoal-dark);
    transform: translateY(-3px);
}

/* ========================================
   Section Badges & Titles
======================================== */

.section-badge {
    display: inline-block;
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Hero Section
======================================== */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Each slideshow image layer */
.hero-bg-overlay .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity, transform;
}

.hero-bg-overlay .hero-slide.active {
    opacity: 1;
}

.hero-bg-overlay .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: heroKenBurns 12s ease-in-out infinite alternate;
}

/* Alternate Ken Burns directions per slide */
.hero-bg-overlay .hero-slide:nth-child(odd) img {
    animation-name: heroKenBurns;
}

.hero-bg-overlay .hero-slide:nth-child(even) img {
    animation-name: heroKenBurnsAlt;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.12) translate(-1.5%, -1%);
    }
}

@keyframes heroKenBurnsAlt {
    0% {
        transform: scale(1.1) translate(1%, 0.5%);
    }

    100% {
        transform: scale(1) translate(-0.5%, -1.5%);
    }
}

/* Dark gradient overlay on top for text readability */
.hero-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(44, 44, 44, 0.65) 40%, rgba(26, 26, 26, 0.85) 100%),
        linear-gradient(to bottom, rgba(26, 26, 26, 0.5) 0%, transparent 25%, transparent 70%, rgba(26, 26, 26, 0.7) 100%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 168, 83, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.hero-image-container {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(44, 44, 44, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--charcoal-light);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--gold);
}

.floating-card span {
    font-weight: 500;
}

.floating-card.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    left: 0;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========================================
   About Section
======================================== */

.about-section {
    background: var(--charcoal);
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-image-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 200px;
    transform: translate(10%, 10%);
}

.about-image-accent img {
    border-radius: var(--radius-md);
    border: 4px solid var(--charcoal);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-gold);
    color: var(--charcoal-dark);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-item i {
    font-size: 1.2rem;
}

/* ========================================
   Services Section
======================================== */

.services-section {
    background: var(--charcoal-dark);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
}

.service-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--charcoal-light);
    transition: var(--transition-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--gold);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--charcoal-dark);
    padding: 5px 15px;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.service-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
}

.service-card:hover .service-icon i {
    color: var(--charcoal-dark);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    transition: var(--transition-normal);
}

.service-link:hover {
    gap: 15px;
    color: var(--gold-light);
}

/* ========================================
   Why Choose Us Section
======================================== */

.why-choose-section {
    background: var(--charcoal);
}

.usp-list {
    display: grid;
    gap: 25px;
}

.usp-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--charcoal-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    transition: var(--transition-normal);
}

.usp-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.usp-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.usp-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.usp-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.why-choose-image {
    position: relative;
    height: 100%;
}

.image-grid {
    display: grid;
    gap: 20px;
    height: 100%;
}

.image-grid .main img {
    border-radius: var(--radius-lg);
}

.image-grid .secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    max-width: 250px;
}

.image-grid .secondary img {
    border: 4px solid var(--charcoal);
    border-radius: var(--radius-md);
}

.stats-overlay {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    background: var(--gradient-gold);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.stats-overlay .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    line-height: 1;
}

.stats-overlay .label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
}

/* ========================================
   Coverage Section
======================================== */

.coverage-section {
    background: var(--charcoal-dark);
    position: relative;
}

.coverage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
}

.coverage-map-container {
    position: relative;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--charcoal-light);
}

.coverage-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--charcoal);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.coverage-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.coverage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.coverage-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.85rem;
}

/* Coverage Map Cards */
.coverage-map-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--charcoal-light);
    transition: var(--transition-normal);
    height: 100%;
}

.coverage-map-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 83, 0.3);
}

.coverage-map-header {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background: var(--charcoal-light);
    border-bottom: 2px solid var(--gold);
}

.coverage-map-header i {
    font-size: 1.3rem;
    color: var(--gold);
}

.coverage-map-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.coverage-map-body {
    position: relative;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

/* Transparent overlay to prevent map scrolling so markers stay aligned */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: default;
}

/* Red pulsing marker dot */
.map-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #E53935;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
    animation: markerPulse 2s ease-in-out infinite;
}

.map-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: rgba(229, 57, 53, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* City name tooltip on hover */
.map-marker::after {
    content: attr(data-label);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    border: 1px solid var(--gold);
    letter-spacing: 0.5px;
}

.map-marker:hover::after {
    opacity: 1;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.3);
    background: #C62828;
    z-index: 4;
}

@keyframes markerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
    }
}

/* ========================================
   Testimonials Section
======================================== */

.testimonials-section {
    background: var(--charcoal);
}

.testimonial-card {
    background: var(--charcoal-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 83, 0.3);
}

.testimonial-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--charcoal-dark);
    font-size: 1.1rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Our Clients Section
======================================== */

.clients-section {
    background: var(--charcoal-dark);
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--charcoal);
    padding: 25px 35px;
    border-radius: var(--radius-md);
    border: 1px solid var(--charcoal-light);
    min-width: 160px;
    transition: var(--transition-normal);
}

.client-item:hover {
    border-color: rgba(212, 168, 83, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.client-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.client-item:hover img {
    transform: scale(1.1);
}

.client-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
}

.client-item:hover span {
    color: var(--gold);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
    background: var(--charcoal-dark);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
    background: var(--charcoal);
    padding: 60px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--charcoal-light);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========================================
   Footer
======================================== */

.footer {
    background: var(--charcoal-dark);
}

.footer-top {
    border-bottom: 1px solid var(--charcoal-light);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--charcoal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--charcoal-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p,
.footer-bottom a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ========================================
   Back to Top & WhatsApp Float
======================================== */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--charcoal-dark);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   Page Headers
======================================== */

.page-header {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    padding-top: 100px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/imgs/cars/car6.jpeg') center/cover;
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted);
    content: "›";
}

/* ========================================
   Forms
======================================== */

.form-control,
.form-select {
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-light);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    background: var(--charcoal);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   Cards
======================================== */

.info-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    border: 1px solid var(--charcoal-light);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 83, 0.3);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.info-card h4 {
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Fleet & Gallery
======================================== */

.fleet-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--charcoal-light);
    transition: var(--transition-normal);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.fleet-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.1);
}

.fleet-card-content {
    padding: 25px;
}

.fleet-card h4 {
    margin-bottom: 10px;
}

.fleet-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fleet-spec i {
    color: var(--gold);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
    transform: scale(0.5);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ========================================
   Founder Section
======================================== */

.founder-avatar {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--gold);
    box-shadow: 0 0 25px rgba(212, 168, 83, 0.3);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--charcoal-dark);
}

.founder-quote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

/* ========================================
   FAQ Accordion
======================================== */

.accordion-item {
    background: var(--charcoal);
    border: 1px solid var(--charcoal-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--charcoal);
    color: var(--text-light);
    font-weight: 500;
    padding: 20px 25px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--charcoal-light);
    color: var(--gold);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(60%) saturate(391%) hue-rotate(7deg) brightness(94%) contrast(86%);
}

.accordion-body {
    background: var(--charcoal-light);
    color: var(--text-muted);
    padding: 25px;
    line-height: 1.8;
}

/* ========================================
   Industries
======================================== */

.industry-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--charcoal-light);
    transition: var(--transition-normal);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.industry-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.industry-card:hover .industry-icon {
    background: var(--gradient-gold);
}

.industry-card:hover .industry-icon i {
    color: var(--charcoal-dark);
}

.industry-card h4 {
    margin-bottom: 10px;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Routes
======================================== */

.route-card {
    background: var(--charcoal);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--charcoal-light);
    transition: var(--transition-normal);
}

.route-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.route-content h5 {
    margin-bottom: 5px;
}

.route-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.85rem;
}

/* ========================================
   Responsive Styles
======================================== */

/* ---------- Extra-Large (≤1199px) ---------- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

/* ---------- Large / Tablet Landscape (≤991px) ---------- */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px;
    }

    .py-6 {
        padding: 70px 0;
    }

    /* Navigation — always visible on mobile */
    #mainNav {
        background: rgba(26, 26, 26, 0.95) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 8px 0;
        box-shadow: none;
    }

    .navbar-toggler {
        border: 2px solid var(--gold);
        border-radius: var(--radius-sm);
        padding: 6px 10px;
        font-size: 1.3rem;
        color: var(--gold);
        outline: none;
        box-shadow: none;
        transition: var(--transition-normal);
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none;
        box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.25);
    }

    .navbar-toggler:hover {
        background: rgba(212, 168, 83, 0.1);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        overflow: hidden;
    }

    .logo-icon img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    /* Mobile collapsed menu */
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 20px 15px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        margin-top: 10px;
        border: 1px solid var(--charcoal-light);
        border-top: none;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(61, 61, 61, 0.4);
        font-size: 0.95rem;
    }

    .navbar-nav .nav-item:last-child .nav-link,
    .navbar-nav .nav-item:last-child .btn {
        border-bottom: none;
    }

    .navbar-nav .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .navbar-nav .nav-item.ms-lg-3 .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu-dark {
        border: none;
        box-shadow: none;
        background: rgba(44, 44, 44, 0.6);
        margin-left: 15px;
        border-radius: var(--radius-sm);
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-image-container {
        height: 350px;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* CTA */
    .cta-section .container {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-section .row {
        text-align: center;
    }

    .cta-section .cta-buttons {
        margin-top: 20px;
    }

    /* About */
    .about-image-wrapper {
        margin-bottom: 50px;
    }

    /* Why Choose — stats overlay */
    .stats-overlay {
        left: 10px;
        padding: 18px 22px;
    }

    .stats-overlay .number {
        font-size: 2rem;
    }

    .image-grid .secondary {
        max-width: 200px;
        right: -10px;
        bottom: -10px;
    }

    /* Page headers */
    .page-title {
        font-size: 2.5rem;
    }

    .page-header {
        padding-top: 90px;
        min-height: 350px;
    }

    /* Services page – horizontal card images stack vertically */
    .service-card .row.g-0 .col-md-4 {
        max-height: 200px;
        overflow: hidden;
    }

    .service-card .row.g-0 .col-md-4 img {
        border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
        height: 200px;
        width: 100%;
        object-fit: cover;
    }

    /* Maps */
    .coverage-map-body iframe {
        height: 300px;
    }

    /* Info cards */
    .info-card {
        padding: 25px;
    }

    /* Industry cards */
    .industry-card {
        padding: 30px 20px;
    }

    /* Fleet cards */
    .fleet-card-image {
        height: 180px;
    }

    /* Route cards — disable hover translateX on touch */
    .route-card:hover {
        transform: translateX(0);
    }

    /* Footer bottom */
    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* ---------- Tablet Portrait / Phablet (≤767px) ---------- */
@media (max-width: 767px) {
    .py-6 {
        padding: 50px 0;
    }

    /* Hero */
    /* Hero — fix clipping */
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Disable Ken Burns on mobile — causes clipping */
    .hero-bg-overlay .hero-slide img {
        animation: none !important;
        transform: scale(1) translate(0, 0) !important;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .stat-item {
        flex: 0 0 auto;
        min-width: 90px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    /* Scroll indicator — hide on mobile */
    .scroll-indicator {
        display: none;
    }

    /* Sections */
    .section-title {
        font-size: 1.75rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    /* CTA */
    .cta-section .container {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0 !important;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .d-flex {
        justify-content: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        font-size: 0.9rem;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 8px;
    }

    /* Page headers */
    .page-header {
        min-height: 280px;
        padding-top: 80px;
    }

    .page-title {
        font-size: 2rem;
    }

    /* About */
    .about-image-wrapper {
        padding: 15px;
        margin-bottom: 40px;
    }

    .about-image-accent {
        display: none;
    }

    .experience-badge {
        transform: scale(0.8);
        transform-origin: top left;
    }

    /* Why Choose */
    .stats-overlay {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 15px;
        display: inline-block;
    }

    .image-grid .secondary {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 15px;
    }

    .usp-item {
        padding: 20px;
    }

    /* Maps */
    .coverage-map-body iframe {
        height: 250px;
    }

    .map-wrapper {
        height: 250px !important;
    }

    .map-marker {
        width: 10px;
        height: 10px;
    }

    .map-marker::before {
        width: 18px;
        height: 18px;
    }

    /* Service cards */
    .service-card {
        padding: 25px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    /* Fleet & Gallery */
    .fleet-card-image {
        height: 160px;
    }

    .gallery-item img {
        aspect-ratio: 4 / 3;
    }

    /* Clients marquee */
    .client-item {
        padding: 18px 25px;
        min-width: 130px;
    }

    .client-item img {
        width: 55px;
        height: 55px;
    }

    .client-item span {
        font-size: 0.75rem;
    }

    /* Back to Top & WhatsApp */
    .back-to-top {
        right: 15px;
        bottom: 85px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .whatsapp-float {
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Route cards */
    .route-card {
        padding: 20px;
        gap: 15px;
    }

    .route-icon {
        width: 50px;
        height: 50px;
    }

    .route-icon i {
        font-size: 1.2rem;
    }

    /* Industry */
    .industry-card {
        padding: 25px 15px;
    }

    .industry-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .industry-icon i {
        font-size: 1.6rem;
    }

    /* Info cards */
    .info-card {
        padding: 22px;
    }

    .info-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .info-card-icon i {
        font-size: 1.4rem;
    }

    /* Forms */
    .form-control,
    .form-select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* Accordion */
    .accordion-button {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 18px;
        font-size: 0.95rem;
    }

    /* Founder (about page) */
    .founder-image+h3 {
        font-size: 1.3rem;
    }

    blockquote.lead {
        font-size: 1rem;
    }

    /* Contact page — business hours */
    .d-flex.justify-content-between span {
        font-size: 0.9rem;
    }

    /* Quote page — sticky sidebar */
    [style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
    }
}

/* ---------- Small phones (≤575px) ---------- */
@media (max-width: 575px) {
    body {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-item {
        min-width: 80px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-section .container {
        padding: 25px 15px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    /* Service card */
    .service-card {
        padding: 20px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* USP */
    .usp-item {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .usp-icon {
        margin: 0 auto;
    }

    /* Page header */
    .page-header {
        min-height: 240px;
        padding-top: 75px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    /* Route cards */
    .route-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .route-icon {
        margin: 0 auto;
    }

    /* Fleet */
    .fleet-card-content {
        padding: 18px;
    }

    .fleet-specs {
        gap: 10px;
    }

    .fleet-spec {
        font-size: 0.8rem;
    }

    /* Gallery */
    .gallery-item img {
        aspect-ratio: 1 / 1;
    }

    /* Info cards */
    .info-card {
        padding: 18px;
    }

    /* Industry */
    .industry-card {
        padding: 22px 12px;
    }

    /* Coverage items */
    .coverage-item {
        padding: 20px 15px;
    }

    .coverage-item i {
        font-size: 1.5rem;
    }

    .coverage-item h4 {
        font-size: 1rem;
    }

    /* Footer */
    .footer-title {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.8rem;
    }

    /* Maps */
    .coverage-map-body iframe {
        height: 200px;
    }

    .map-wrapper {
        height: 200px !important;
    }

    .coverage-map-header {
        padding: 12px 15px;
    }

    .coverage-map-header h4 {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn-gold,
    .btn-outline-gold {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }

    /* Clients */
    .clients-track {
        gap: 20px;
    }

    .client-item {
        padding: 15px 20px;
        min-width: 110px;
    }

    .client-item img {
        width: 45px;
        height: 45px;
        padding: 6px;
    }

    .client-item span {
        font-size: 0.7rem;
    }

    /* Contact page — quick actions */
    .col-md-4 .p-4 {
        padding: 1rem !important;
    }

    /* Logo */
    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }
}

/* ---------- Extra small phones (≤400px) ---------- */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .cta-title {
        font-size: 1.15rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .py-6 {
        padding: 35px 0;
    }

    .page-header {
        min-height: 200px;
        padding-top: 70px;
    }

    .info-card {
        padding: 15px;
    }

    .service-card {
        padding: 15px;
    }

    .navbar-collapse {
        padding: 15px 10px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-item {
        min-width: 70px;
    }

    .coverage-map-body iframe {
        height: 170px;
    }

    .map-wrapper {
        height: 170px !important;
    }
}

/* ========================================
   Animations
======================================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}