:root {
    --primary: #ffa100;
    --primary-dark: #cc8100;
    --bg-dark: #000000;
    --bg-card: #0d0d0d;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
    --container-max: 1750px;
    --container-padding: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    margin: 0;
    font-family: var(--font-main);
    overflow-x: hidden;
    word-spacing: normal;
}

.container {
    width: 92%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.section-header {
    margin-bottom: 5rem;
    position: relative;
}

.section-header.center {
    text-align: center;
}

.subtitle {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.main-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
}

.main-title span {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-wrapper {
    background: white;
    padding: 16px 25px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper .custom-logo-link img,
.footer-logo-wrapper .custom-logo-link img {
    max-height: 55px;
    width: auto;
    display: block;
}

.footer-logo-wrapper .custom-logo-link img {
    max-height: 60px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    color: white;
    letter-spacing: -1.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    background: var(--primary);
    color: black !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 161, 0, 0.2);
}

.nav-cta i {
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 161, 0, 0.3);
    background: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('/wp-content/uploads/2026/02/68ae451be386ec82e42da946_header-bg.avif');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 80px;
}

#three-container {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); 
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 3;
    height: 100%;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-out 2s infinite;
}

@keyframes pulse-out {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-gray);
    max-width: 1100px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: black;
    box-shadow: 0 15px 35px rgba(255, 161, 0, 0.4);
    font-size: 1.1rem;
}

.btn-primary strong {
    font-size: 1.6rem;
    font-weight: 900;
    margin-left: 0.5rem;
    letter-spacing: -1px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 161, 0, 0.5);
    background: white;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 161, 0, 0.05);
}

.hero-trust {
    margin-top: 5rem;
    display: flex;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    flex: 1;
    max-width: 600px;
}

.hero-truck {
    width: 100%;
    transform: perspective(1000px) rotateY(-15deg);
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    border-radius: 12px;
}

/* Ribbons Section */
.ribbons-section {
    display: flex;
    width: 100%;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.ribbon {
    flex: 1;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transform: skewX(-15deg);
    margin: 0 -5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ribbon i {
    font-size: 1.4rem;
    margin-right: 12px;
}

.ribbon-content {
    transform: skewX(15deg);
    display: flex;
    align-items: center;
}

.ribbon-dark {
    background: #0a0a0a;
    color: white;
    border-top: 1px solid var(--glass-border);
}

.ribbon-orange {
    background: var(--primary);
    color: black;
    z-index: 2;
}

.ribbon-orange strong {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.ribbon-orange i {
    font-size: 2rem;
    margin-right: 15px;
}

/* About Section */
.about {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: #080808;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
}

.about .bg-text {
    position: absolute;
    top: 0;
    right: -2rem;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-style: italic;
    line-height: 0.8;
}

.about-text {
    position: relative;
    z-index: 2;
}

.about h2.main-title {
    margin-bottom: 2.5rem;
    font-style: italic;
}

.about .desc {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 650px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.features i {
    color: var(--primary);
    font-size: 1.50rem;
}

.btn-orange-cta {
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(255, 161, 0, 0.3);
    transition: var(--transition);
    border: none;
}

.btn-orange-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 161, 0, 0.4);
}

/* Stats / Why Us */
.why-us {
    position: relative;
    padding: 12rem 0;
    background: #050505;
    overflow: hidden;
}

.why-us .bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    font-weight: 900;
    color: rgba(255, 161, 0, 0.012);
    z-index: 1;
    pointer-events: none;
    letter-spacing: -10px;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us .section-header h2 {
    font-size: 4rem;
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 6rem;
}

.stat-card {
    position: relative;
    text-align: left;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, #0a0a0a, #111);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 161, 0, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.stat-card:hover::before {
    height: 100%;
}

.stat-card .num {
    display: inline-block;
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.stat-card .plus {
    display: inline-block;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 900;
    vertical-align: top;
    margin-top: 0.5rem;
    margin-left: 2px;
}

.stat-card p {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Section Header */
.section-header {
    margin-bottom: 6rem;
    position: relative;
    z-index: 15;
}

.section-header.center {
    text-align: center;
}

.section-header .subtitle {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-header .main-title {
    font-size: 3.5rem !important;
    color: white !important;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px !important;
    line-height: 1.1 !important;
    display: block !important;
}

/* Unified Why Us & Gallery Section */
.why-us-gallery {
    padding: 15rem 0 10rem;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.why-us-gallery .container {
    position: relative;
    z-index: 10;
}

/* Premium Gallery Slider */
.gallery-slider-wrapper {
    width: 100%;
    margin-top: 10rem;
    padding: 5rem 0 10rem;
    overflow: visible;
    position: relative;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transform: scale(0.9);
    opacity: 0.4;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

/* Active Slide Highlight */
.swiper-slide-active .gallery-card {
    transform: scale(1.2);
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 80px rgba(255, 161, 0, 0.25);
    z-index: 10;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-nav-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-nav-btns .swiper-button-prev,
.gallery-nav-btns .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin: 0;
    transition: all 0.3s ease;
}

.gallery-nav-btns .swiper-button-prev:after,
.gallery-nav-btns .swiper-button-next:after {
    font-size: 1rem;
    font-weight: 900;
}

.gallery-nav-btns .swiper-button-prev:hover,
.gallery-nav-btns .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: black;
    transform: scale(1.1);
}


@media (max-width: 991px) {
    .about h2.main-title { font-size: 3rem; }
    .about .bg-text { font-size: 8rem; }
}

.gallery-nav button:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 161, 0, 0.3);
}

@media (max-width: 991px) {
    .gallery-item {
        flex: 0 0 85vw;
        height: 400px;
    }
}

/* Reviews */
.reviews {
    position: relative;
    padding: 15rem 0;
    background: #050505;
    overflow: hidden;
}

.reviews .section-header .main-title {
    color: white !important;
    letter-spacing: 0.1em !important;
    word-spacing: 0.8rem !important;
}

.reviews-slider {
    margin-top: 6rem;
    padding-bottom: 2rem !important;
    overflow: visible !important;
}

.swiper-slide {
    height: auto;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
    opacity: 1;
}

.review-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 4.5rem 2.5rem 3.5rem;
    color: white;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    backdrop-filter: blur(15px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 161, 0, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.review-card:hover::before {
    opacity: 1;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.1;
    transition: var(--transition);
}

.review-card:hover .quote-icon {
    opacity: 0.3;
    transform: translateY(-5px) rotate(-10deg);
}

/* Swiper Base Overrides */
.swiper-horizontal {
  touch-action: pan-y;
  padding-top: 50px;
  padding-bottom: 20px;
}
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.05);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
}

.review-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 161, 0, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 20px rgba(255, 161, 0, 0.05);
}

.stars {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 0.8rem;
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.review-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 500;
    color: #eee;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.review-card .user {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card .user h4 {
    font-size: 1.05rem;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.review-card .user span {
    display: block;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer CTA */
.footer-cta {
    background: var(--bg-dark);
    padding: 6rem 0;
    position: relative;
    z-index: 5;
}

.cta-box {
    background: linear-gradient(135deg, #ffa100 0%, #cc8100 100%);
    padding: 4rem 5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(255, 161, 0, 0.2);
}

.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/svgs/solid/truck-fast.svg') no-repeat center right;
    background-size: contain;
    opacity: 0.1;
    transform: translateX(50px) rotate(-10deg);
    pointer-events: none;
}

.cta-subtitle {
    display: block;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-text h2 {
    color: black;
    font-size: 3rem;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.cta-text h2 span {
    color: white;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.btn-cta-main {
    background: black;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-cta-main i {
    font-size: 2rem;
    color: var(--primary);
}

.btn-content span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 1px;
}

.btn-content strong {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.btn-cta-main:hover {
    transform: translateY(-5px);
    background: #111;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-owner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: black;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* New Footer Styles */
.footer {
    padding: 8rem 0 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 6rem;
    padding-bottom: 6rem;
}

.footer-logo {
    background: white;
    padding: 16px 25px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-logo img, 
.footer-logo .custom-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-logo a {
    text-decoration: none;
}

.footer-desc {
    color: #999;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none !important;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: black !important;
    transform: translateY(-5px);
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #999;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.05rem;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.3rem;
    width: 25px;
    display: flex;
    justify-content: center;
}

.contact-item:hover, 
.contact-item:focus {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    background: #050505;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #444;
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: #666;
}

.dev-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dev-tag a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 800;
}

.dev-tag a:hover {
    color: var(--primary);
}

.contact-list li div a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: #050505;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom strong {
    color: #888;
}


.page-header {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    text-align: center;
}

.page-header .header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.02);
}

.page-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.page-header .header-container {
    position: relative;
    z-index: 5;
    max-width: var(--container-max) !important;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.page-header p {
    color: #dedede;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.post-thumb {
    height: 250px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .post-thumb img {
    transform: scale(1.1);
}

.post-content {
    padding: 2.5rem;
}

.post-meta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content h2 a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.post-content h2 a:hover {
    color: var(--primary);
}

.post-content p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.read-more {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
    gap: 1.5rem;
}

/* Pagination */
.pagination {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

/* Single Post */
.single-post-header {
    height: 60vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.single-post-header .header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
}

.single-post-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.single-post-header .header-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: var(--container-max) !important;
}

.single-post-header {
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.single-post-header .header-bg {
    filter: blur(3px) brightness(0.6);
    transform: scale(1.1);
}

.post-cat {
    margin-bottom: 2rem;
}

.post-cat a {
    background: var(--primary);
    color: black !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 161, 0, 0.3);
}

.single-post-header h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -2px;
    color: white;
    max-width: 1000px;
}

.post-meta-v2 {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    padding-top: 2rem;
}

.post-meta-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.post-content-section {
    padding: 8rem 0;
}

.post-container {
    max-width: var(--container-max) !important;
}

.post-entry {
    font-size: 1.3rem;
    line-height: 2;
    color: #f0f0f0;
    font-weight: 400;
}

.post-entry p {
    margin-bottom: 3rem;
    opacity: 0.95;
    letter-spacing: 0.01em;
}

.post-entry h2 {
    font-size: 2.5rem;
    color: white;
    margin: 5rem 0 2rem;
    letter-spacing: -1px;
}

.post-entry h2, .post-entry h3 {
    margin: 4rem 0 2rem;
    color: white;
}

.post-footer {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.post-share span {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.post-share a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.post-share a:hover {
    background: var(--primary);
    color: black;
    transform: translateY(-5px);
}

.post-navigation {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.post-navigation a {
    display: flex;
    align-items: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    gap: 2rem;
}

.post-navigation a:hover {
    border-color: var(--primary);
    background: rgba(255, 161, 0, 0.02);
}

.post-navigation .next-post a {
    justify-content: flex-end;
    text-align: right;
}

/* 404 Page */
.error-404-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    text-align: center;
}

.error-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max) !important;
}

.error-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 161, 0, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.error-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.error-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.error-truck-visual {
    margin-top: 6rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    position: relative;
}

.error-truck-visual i {
    animation: driveError 10s infinite linear;
}

@keyframes driveError {
    0% { transform: translateX(-100vw); }
    100% { transform: translateX(100vw); }
}

.error-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 80%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .navbar { padding: 0.8rem 0; }
    .logo-wrapper { padding: 5px; max-width: 120px; }
    .logo-wrapper a { font-size: 0.9rem; }
    .logo-wrapper img { max-height: 30px; }

    .menu-toggle { display: flex; order: 3; padding: 5px; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-btns { gap: 0.8rem; justify-content: flex-end; }
    .nav-cta { 
        padding: 0.5rem 0.8rem; 
        border-radius: 50px; 
        width: auto; 
        height: auto; 
        justify-content: center; 
        font-size: 0.75rem;
        order: 2;
        background: var(--primary);
        color: black !important;
        font-weight: 900;
        white-space: nowrap;
    }
    .nav-cta i { font-size: 0.8rem; }
    .nav-cta span { display: inline-block; margin-left: 3px; }
}

@media (max-width: 400px) {
    .logo-wrapper { max-width: 110px; }
    .nav-cta span { display: none; } /* On very small screens, fallback to icon only to prevent break */
    .nav-cta { width: 40px; height: 40px; border-radius: 50%; padding: 0; }
}

@media (max-width: 768px) {
    .hero { 
        height: 85vh; 
        min-height: 500px;
        padding: 8rem 0 4rem; 
        background-position: 65% center;
    }
    .hero-container { flex-direction: column; text-align: center; }
    .hero h1 { 
        font-size: 3.5rem; 
        letter-spacing: -1px; 
        line-height: 1.05;
        margin-bottom: 1.5rem;
    }
    .hero p { margin: 0 auto 3rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 1.5rem; align-items: center; margin-top: 3rem; }
    
    .ribbons-section { flex-direction: column; margin-top: 0; }
    .ribbon { transform: skewX(0); margin: 0; padding: 1.5rem; }
    .ribbon-content { transform: skewX(0); }
    
    .grid { grid-template-columns: 1fr; gap: 3rem; }
    .section-header h2 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    
    .footer-cta { padding: 4rem 0; }
    .cta-box { padding: 3rem 2rem; flex-direction: column; text-align: center; gap: 2.5rem; }
    .cta-text h2 { font-size: 1.8rem; line-height: 1.3; }
    .cta-actions { align-items: center; width: 100%; }
    .btn-cta-main { width: 100%; padding: 1.2rem 1.5rem; justify-content: center; }
    .btn-content strong { font-size: 1.6rem; letter-spacing: 0; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .footer-desc { margin: 0 auto 2rem; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .footer-bottom-flex { flex-direction: column; gap: 1.5rem; text-align: center; }

    /* Fix Post Navigation */
    .post-navigation { grid-template-columns: 1fr; }
    .post-navigation a { padding: 2rem; }

    /* Fix Headers */
    .page-header { height: auto; padding: 12rem 0 6rem; }
    .page-header h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .page-header p { font-size: 1rem; }

    .single-post-header { height: auto; padding: 12rem 0 6rem; }
    .single-post-header h1 { font-size: 2.2rem; }

    /* Fix Ribbons */
    .ribbon-orange strong { font-size: 1.6rem; letter-spacing: 0; }
    .ribbon-orange i { font-size: 1.5rem; }

    /* Fix Hero Button Phone */
    .btn-primary strong { font-size: 1.2rem; }

    /* Reduce Section Spacing */
    .about, .why-us, .blog-section, .post-content-section, .reviews, .footer-cta {
        padding: 4rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

.reviews-nav-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.reviews-nav-btns .swiper-button-prev,
.reviews-nav-btns .swiper-button-next {
    position: static;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50%;
    margin: 0;
    transition: all 0.3s ease;
}

.reviews-nav-btns .swiper-button-prev:after,
.reviews-nav-btns .swiper-button-next:after {
    font-size: 1.1rem !important;
}

.reviews-nav-btns .swiper-button-prev:hover,
.reviews-nav-btns .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: black;
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .reviews { padding: 8rem 0; }
    .reviews-slider { margin-top: 4rem; }
    .review-card { padding: 4rem 2rem 3rem; }
    .reviews-nav-btns { margin-top: 3rem; gap: 1.5rem; }
}
