/* ============================================
   CSS VARIABLES & RESET - LIGHT THEME
   ============================================ */
:root {
    --primary: #FF0033;
    --primary-dark: #CC0029;
    --primary-light: #FF335C;
    --secondary: #2C3E50;
    --accent: #FFB800;
    --bg-light: #FFFFFF;
    --bg-gray: #F8F9FA;
    --bg-accent: #FFF5F5;
    --text-primary: #1A1A1A;
    --text-secondary: #6C757D;
    --text-light: #FFFFFF;
    --border: #E0E0E0;
    --border-light: #F0F0F0;
    --shadow: rgba(255, 0, 51, 0.15);
    --shadow-light: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   IMAGES
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.client-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.facility-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0;
}

.warehouse-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-text {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -2px;
}

.logo-subtext {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        box-shadow: -5px 0 20px var(--shadow-light);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-light) 50%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 0, 51, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease backwards;
}

.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-line.accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    max-width: 700px;
}

.stat-item {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

.stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-light);
}

.btn-primary-light {
    background: var(--text-primary);
    color: var(--bg-light);
}

.btn-primary-light:hover {
    background: var(--primary);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Preview */
.about-preview {
    background: var(--bg-gray);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-text strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.highlight-text span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.visual-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.visual-card.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.05), var(--bg-light));
}

.visual-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visual-number {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.visual-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Services Preview */
.services-preview {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
}

/* Clients Marquee */
.clients-preview {
    background: var(--bg-gray);
}

.clients-marquee {
    overflow: hidden;
    margin: 3rem 0;
    padding: 2rem 0;
    background: linear-gradient(90deg, 
        var(--bg-gray) 0%, 
        transparent 10%, 
        transparent 90%, 
        var(--bg-gray) 100%);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.client-logo:hover {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
    padding: 10rem 0 6rem;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-light) 50%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 0, 51, 0.05) 49%, rgba(255, 0, 51, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 51, 0.05) 49%, rgba(255, 0, 51, 0.05) 51%, transparent 52%);
    background-size: 50px 50px;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.content-section {
    padding: 6rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-main h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-main p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-box {
    background: var(--bg-gray);
    border-left: 3px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.sidebar-card.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.05), var(--bg-light));
}

.sidebar-card h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item-side {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.stat-item-side:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number-side {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label-side {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.excellence-section {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.excellence-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.excellence-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.excellence-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.excellence-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.excellence-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.excellence-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.infrastructure-section {
    padding: 6rem 0;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.infra-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.infra-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.infra-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.infra-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.infra-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detail-section {
    padding: 6rem 0;
}

.service-detail-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 15px var(--shadow-light);
}

.service-detail-header {
    display: flex;
    align-items: start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 51, 0.1);
    border: 2px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.service-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.service-detail-content h3 {
    margin: 2rem 0 1.5rem;
    color: var(--text-primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fleet-item {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.fleet-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.fleet-size {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.fleet-type {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.feature-check {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.achievement-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.achievement-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.warehouse-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.warehouse-feature-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.warehouse-feature-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.industry-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.industry-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CLIENTS PAGE
   ============================================ */
.clients-section {
    padding: 6rem 0;
}

.clients-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.client-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.client-detail-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.client-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.client-detail-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.05), var(--bg-light));
}

.client-logo-large {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.client-logo-medium {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.client-industry {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.client-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.client-stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.client-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.client-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.highlight-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.achievements-clients-section {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.achievements-grid-clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.achievement-client-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.achievement-client-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.achievement-client-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-section {
    padding: 6rem 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 2rem;
    color: var(--primary);
}

blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.stats-section {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card-large {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.stat-card-large:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.stat-number-large {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.stat-card-large p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   FACILITIES PAGE
   ============================================ */
.facilities-overview {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.overview-stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.overview-stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.overview-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.facilities-detail-section {
    padding: 6rem 0;
}

.facility-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: 0 2px 15px var(--shadow-light);
}

.facility-card.large {
    border-left: 4px solid var(--primary);
}

.facility-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.facility-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.facility-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.facility-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.facility-size {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.facility-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-grid-facility {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.feature-icon-facility {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.facility-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.stat-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stat-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-row span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-row strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.highlight-stat {
    color: var(--primary) !important;
}

.equipment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.equipment-list li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.equipment-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.capability-item {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.capability-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    flex-shrink: 0;
}

.capability-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.capability-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.facility-simple-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.simple-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.simple-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.simple-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.infrastructure-features {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.equipment-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.equipment-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.equipment-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.compliance-section {
    padding: 6rem 0;
}

.compliance-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.compliance-content h2 {
    margin-bottom: 1rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.compliance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.compliance-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 184, 0, 0.1);
    border: 2px solid var(--accent);
    border-radius: 8px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    color: var(--accent);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 51, 0.1);
    border: 2px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-info-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-cta-card {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.05), var(--bg-light));
    border: 1px solid var(--primary);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-cta-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-benefits svg {
    color: var(--primary);
    flex-shrink: 0;
}

.commitment-section {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-icon {
    margin-bottom: 2rem;
    color: var(--primary);
}

.commitment-content h2 {
    margin-bottom: 1.5rem;
}

.commitment-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .about-content-grid,
    .content-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .facility-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    section {
        padding: 4rem 0;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .excellence-grid,
    .infra-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .client-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   WAREHOUSE DETAIL SECTIONS
   ============================================ */
.warehouse-detail {
    padding: 4rem 0;
}

.warehouse-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.warehouse-card.featured {
    border-left: 5px solid var(--primary);
}

.warehouse-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.warehouse-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.warehouse-header h2 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.warehouse-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0.5rem 0;
}

.warehouse-image-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.warehouse-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.warehouse-images-grid {
    margin: 2rem 0;
}

.warehouse-content {
    margin-top: 2rem;
}

.warehouse-content h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.warehouse-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.warehouse-highlights {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item-wh {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-item-wh strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
    .warehouse-card {
        padding: 2rem 1.5rem;
    }
    
    .warehouse-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .warehouse-images-grid img {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
}

/* ============================================
   FLEET PAGE STYLES
   ============================================ */
.fleet-overview-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.fleet-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.fleet-highlight-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.fleet-highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow);
}

.fleet-highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fleet-highlight-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.fleet-highlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.fleet-vehicles-section {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.section-subtitle-center {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.fleet-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 2px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.vehicle-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.05), var(--bg-light));
}

.vehicle-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.vehicle-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.vehicle-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.vehicle-description {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vehicle-specs {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vehicle-spec-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.vehicle-spec-item strong {
    color: var(--text-primary);
}

.fleet-features-section {
    padding: 6rem 0;
}

.fleet-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fleet-feature-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.fleet-feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px var(--shadow);
}

.fleet-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.fleet-feature-box h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.fleet-feature-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.transporter-section {
    background: var(--bg-gray);
    padding: 6rem 0;
}

.transporter-content {
    max-width: 900px;
    margin: 0 auto;
}

.transporter-content h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.transporter-benefits {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.benefit-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .fleet-vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-highlights {
        grid-template-columns: 1fr;
    }
    
    .vehicle-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

/* ============================================
   ENHANCED CONTACT PAGE STYLES
   ============================================ */
.business-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.business-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-gray);
    border-radius: 4px;
    font-size: 0.9rem;
}

.business-detail-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.business-detail-item span {
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
}

.contact-info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.map-container {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.map-directions {
    margin-top: 4rem;
}

.map-directions h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.direction-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 6px 25px var(--shadow);
}

.direction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.direction-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.direction-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Contact Section */
.why-contact-section {
    padding: 6rem 0;
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-contact-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.why-contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 6px 25px var(--shadow);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.why-contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-contact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .business-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VEHICLE IMAGE STYLES
   ============================================ */
.vehicle-image-container {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-photo {
    transform: scale(1.05);
}

.fleet-note {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: 8px;
    text-align: center;
}

.fleet-note strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.fleet-note code {
    background: var(--bg-gray);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    color: var(--primary);
}

.fleet-note ul {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.fleet-note li {
    background: var(--bg-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .vehicle-image-container {
        height: 200px;
    }
}

/* ============================================
   ENHANCED UNIFIED FOOTER STYLES
   ============================================ */

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #FFF5F5 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content Styles */
.hero-content-left {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 0, 51, 0.1);
    border: 1px solid rgba(255, 0, 51, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
    color: var(--primary);
}

.hero-title-new {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 20px;
    background: rgba(255, 0, 51, 0.1);
    z-index: -1;
}

.hero-subtitle-new {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-subtitle-new strong {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-buttons-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.btn-modern {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-modern-primary {
    background: var(--primary);
    color: #ffffff;
    border: 2px solid var(--primary);
}

.btn-modern-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.3);
}

.btn-modern-primary svg {
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover svg {
    transform: translateX(5px);
}

.btn-modern-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-modern-secondary:hover {
    background: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Right Content - Stats Cards */
.hero-content-right {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-card-large {
    grid-column: 1 / -1;
    background: transparent;
    color: #ffffff;
    border: none;
}

.stat-card-large:hover {
    border-color: transparent;
}

.stat-card-accent {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #ffffff;
    border: none;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-icon-small {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number-medium {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.4;
}

.stat-label-medium {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.stat-card-large .stat-label-large {
    color: rgba(255, 255, 255, 0.95);
}

.stat-card-accent .stat-label-medium {
    color: rgba(255, 255, 255, 0.95);
}

.stat-trend {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.8rem;
}

/* Floating Badge */
.floating-badge {
    margin-top: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge-content {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #CC0029);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-text strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.08;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title-new {
        font-size: 3.5rem;
    }
    
    .hero-content-right {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 1rem;
    }
    
    .hero-buttons-new {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card-large {
        grid-column: 1;
    }
    
    .floating-badge {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-number-medium {
        font-size: 2rem;
    }
}

/* ============================================
   HERO WITH TRUCK IMAGE ON RIGHT
   ============================================ */
.hero-content-right {
    position: relative;
}

.hero-content-right::before {
    content: '';
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 120%;
    height: 110%;
    background: url('images/hero-truck.png') center right / contain no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero-stats-grid,
.floating-badge {
    position: relative;
    z-index: 2;
}

/* Alternative: Full background image on right column */
.hero-modern .hero-grid {
    position: relative;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/hero-truck.png') center right / cover no-repeat;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

/* Enhanced version with truck in background */
@media (min-width: 1025px) {
    .hero-modern {
        background: 
            linear-gradient(to right, 
                rgba(255, 255, 255, 1) 0%, 
                rgba(255, 255, 255, 0.95) 50%, 
                rgba(255, 255, 255, 0.85) 100%
            ),
            url('images/hero-truck.png');
        background-position: center right;
        background-size: 50% auto;
        background-repeat: no-repeat;
    }
}

/* Mobile: hide truck image */
@media (max-width: 1024px) {
    .hero-content-right::before,
    .hero-image-overlay {
        display: none;
    }
}