/*
Theme Name: Kush Express Logistics
Theme URI: https://kushexpressinc.com/
Author: Vinay Saini
Author URI: https://kushexpressinc.com/
Description: A custom-built premium WordPress theme exclusively designed for Kush Express Inc., a professional trucking and logistics company based in Menifee, California. This lightweight, responsive, SEO-friendly theme includes custom templates, modern animations, optimized layouts, and business-focused content tailored for interstate freight operations.
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kush-express
Tags: trucking, logistics, transportation, freight, responsive, custom-theme, business, seo-ready
*/

/* ===========================================================
   TABLE OF CONTENTS
===========================================================
1. CSS Variables & Theme Setup
2. Base Reset & Typography
3. Header & Navigation (Desktop & Mobile)
4. Layout & Grid Systems
5. Custom Buttons
6. Hero Section
7. Stats & Compliance Bar (USDOT / MC)
8. Info Sections & Cards
9. Fleet Gallery & Portfolio
10. Contact Form & SMS Consent
11. Content Layout (Terms & Privacy)
12. Footer
13. Scroll to Top & Micro-interactions
14. Animations
15. Responsive Styling
=========================================================== */

/* ===========================================================
   1. CSS VARIABLES & THEME SETUP
=========================================================== */
:root {
    --primary: #081B33;       /* Deep Luxury Navy */
    --primary-light: #0d2747; /* Lighter Navy for Cards */
    --secondary: #0066FF;     /* Vibrant Royal Blue */
    --secondary-hover: #0052cc;
    --accent: #FF8A00;        /* Premium Energy Orange */
    --accent-hover: #e07b00;
    --white: #ffffff;
    --light: #F7F9FC;         /* Clean background */
    --gray: #6D7480;          /* Subdued body text */
    --gray-light: #E5E7EB;    /* Borders */
    --dark: #111111;
    --success: #10B981;
    --error: #EF4444;

    --container: 1240px;
    --header-height: 90px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================================
   2. BASE RESET & TYPOGRAPHY
=========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    color: var(--gray);
    margin-bottom: 1.25rem;
}

/* ===========================================================
   3. HEADER & NAVIGATION
=========================================================== */
.site-header {
    height: var(--header-height);
    background-color: rgba(8, 27, 51, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    transition: var(--transition);
}

.logo-link img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.site-header.scrolled .logo-link img {
    max-height: 65px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
}

/* Burger Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    z-index: 1005;
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav-menu a:hover {
    color: var(--accent);
}

.mobile-nav-drawer .header-cta .btn {
    width: 100%;
}

/* ===========================================================
   4. LAYOUT & GRID SYSTEMS
========================================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background-color: var(--light);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
    position: relative;
}

.section-dark .section-title {
    color: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===========================================================
   5. CUSTOM BUTTONS
=========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-dark {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* ===========================================================
   6. HERO SECTION
=========================================================== */
.hero-section {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 27, 51, 0.95) 0%, rgba(8, 27, 51, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding-top: var(--header-height);
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ===========================================================
   7. STATS & COMPLIANCE BAR (USDOT / MC)
=========================================================== */
.stats-bar {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 30px 40px;
    border: 1px solid var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    border-right: 1px solid var(--gray-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ===========================================================
   8. INFO SECTIONS & CARDS
=========================================================== */
.info-image-wrapper {
    position: relative;
}

.info-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 480px;
}

.info-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
}

.info-badge-val {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.info-badge-lbl {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.2);
}

.service-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    color: var(--secondary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-card-link:hover {
    color: var(--primary);
}

/* Feature bullet points */
.feature-list {
    margin-top: 24px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===========================================================
   9. FLEET GALLERY & PORTFOLIO
=========================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fleet-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-md);
}

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

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 27, 51, 0.9) 0%, rgba(8, 27, 51, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    transition: var(--transition);
}

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

.fleet-card:hover .fleet-overlay {
    background: linear-gradient(to top, rgba(8, 27, 51, 0.95) 0%, rgba(8, 27, 51, 0.5) 70%, rgba(8, 27, 51, 0.2) 100%);
}

.fleet-category {
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.fleet-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fleet-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.fleet-card:hover .fleet-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 5px;
}

/* ===========================================================
   10. CONTACT FORM & SMS CONSENT
=========================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 50px;
    align-items: start;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-info-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-info-content h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.compliance-lock {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.compliance-lock p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--primary);
    background-color: var(--light);
}

.contact-form-input:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

textarea.contact-form-input {
    height: 150px;
    resize: none;
}

/* SMS Consent Specific Styling */
.sms-consent-container {
    background-color: var(--light);
    border: 1px solid var(--gray-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.sms-consent-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sms-consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
    accent-color: var(--secondary);
}

.sms-consent-label {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--gray);
    cursor: pointer;
    user-select: none;
}

.sms-consent-label a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
}

.sms-consent-label a:hover {
    color: var(--primary);
}

.form-response-msg {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-response-msg.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.form-response-msg.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border-left: 4px solid var(--error);
}

/* ===========================================================
   11. CONTENT LAYOUT (TERMS & PRIVACY)
=========================================================== */
.compliance-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.compliance-header {
    text-align: center;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.compliance-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.compliance-meta {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.compliance-body {
    font-size: 1rem;
    line-height: 1.8;
}

.compliance-section {
    margin-bottom: 40px;
}

.compliance-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-light);
}

.compliance-section h3 {
    font-size: 1.25rem;
    margin: 25px 0 15px;
}

.compliance-section p {
    margin-bottom: 20px;
}

.compliance-section ul,
.compliance-section ol {
    margin: 0 0 25px 25px;
}

.compliance-section li {
    margin-bottom: 10px;
    color: var(--gray);
}

/* Highlighting key compliance clauses */
.compliance-highlight {
    background-color: rgba(0, 102, 255, 0.05);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 25px 0;
}

.compliance-highlight p {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
}

/* ===========================================================
   12. FOOTER
=========================================================== */
.site-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-widget-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-desc {
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 25px;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-links-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.92rem;
}

.footer-contact-icon {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

.footer-compliance-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ===========================================================
   13. SCROLL TO TOP & INTERACTIONS
=========================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
}

.scroll-to-top.visible {
    right: 30px;
    opacity: 1;
}

.scroll-to-top:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

/* Page Banner */
.page-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 51, 0.9);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--accent);
}

/* ===========================================================
   14. ANIMATIONS
=========================================================== */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* ===========================================================
   15. RESPONSIVE STYLING
=========================================================== */
@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero-title { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .stats-bar {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--gray-light);
    }
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }
    .footer-grid > :first-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content {
        padding-top: 40px;
    }
    .nav-menu, .header-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .fleet-grid,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .info-image-wrapper img {
        height: 350px;
    }
    .info-badge {
        position: static;
        margin: 20px auto 0;
        max-width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid > :first-child {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .form-wrapper {
        padding: 30px 20px;
    }
    .compliance-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        padding-bottom: 15px;
    }
    .stat-item {
        padding-top: 15px;
    }
}

/* ===========================================================
   16. MARQUEE BANNER & DYNAMIC INTERACTION
=========================================================== */
.kush-marquee-container {
    background-color: var(--accent);
    color: var(--white);
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 30px;
    padding: 18px 0;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.kush-marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    min-width: 100%;
    animation: scroll-marquee 25s linear infinite;
}

@keyframes scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Counters Section Styles */
.counters-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-card {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.counter-num-wrap {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}

.counter-card-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .counters-grid {
        grid-template-columns: 1fr;
    }
}