/* Industrial Red Theme - Ankara Nakliye */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--pure-white);
}

/* CSS Variables - White & Red Theme */
:root {
    --primary-red: #dc2626;
    --dark-red: #b91c1c;
    --light-red: #ef4444;
    --accent-red: #fecaca;
    --pure-white: #ffffff;
    --off-white: #fefefe;
    --light-gray: #f8f9fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --red-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --white-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --shadow-light: 0 2px 10px rgba(220, 38, 38, 0.1);
    --shadow-medium: 0 8px 25px rgba(220, 38, 38, 0.15);
    --shadow-heavy: 0 15px 35px rgba(220, 38, 38, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.text-industrial {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Navigation Styles */
.navbar {
    background: var(--pure-white) !important;
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: var(--shadow-medium);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-heavy);
}

/* Brand Styling */
.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--red-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: brandShimmer 3s infinite;
}

.brand-icon i {
    font-size: 1.5rem;
    color: var(--pure-white);
    z-index: 2;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: 2px;
}

.brand-sub {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: 3px;
}

/* Custom Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    width: 35px;
    height: 35px;
    position: relative;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 1rem;
    padding: 0.75rem 0 !important;
    position: relative;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

/* CTA Button */
.btn-cta {
    background: var(--red-gradient);
    border: none;
    color: var(--pure-white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: var(--dark-red);
    transform: translateX(5px);
    color: white !important;
}

/* Modern Hero Section */
.modern-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Geometric Background */
.hero-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--red-gradient);
    top: -200px;
    right: -200px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--red-gradient);
    bottom: -150px;
    left: -150px;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--red-gradient);
    top: 50%;
    left: 10%;
    animation: floatShape 10s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--red-gradient);
    top: 20%;
    right: 15%;
    animation: floatShape 7s ease-in-out infinite reverse;
}

/* Modern Hero Content */
.modern-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.tag-icon {
    width: 30px;
    height: 30px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.hero-tag span {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--primary-red);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.modern-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.text-primary {
    color: var(--primary-red);
}

.text-gradient {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-dark {
    color: var(--text-dark);
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: var(--red-gradient);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.modern-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Modern Features Pills */
.modern-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pure-white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
    border-color: var(--primary-red);
}

.feature-pill i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.feature-pill span {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Modern Hero Actions */
.modern-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--red-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    color: white;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Modern Stats */
.modern-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: slideInUp 0.8s ease-out 1s both;
}

.stat-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.stat-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Modern Hero Visual */
.modern-hero-visual {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.truck-hero-modern {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: var(--red-gradient);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    animation: heroFloat 4s ease-in-out infinite;
}

.truck-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 4s infinite;
}

.truck-hero-modern i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.truck-text {
    text-align: center;
    z-index: 2;
    position: relative;
}

.truck-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.truck-text p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1;
}

/* Scroll Indicator Modern */
.scroll-indicator-modern {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--border-light);
    position: relative;
    border-radius: 1px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

/* Modern Hero Animations */
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(90deg); }
    50% { transform: translate(-5px, 15px) rotate(180deg); }
    75% { transform: translate(-15px, -5px) rotate(270deg); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes truckFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes shimmer {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

@keyframes trailMove {
    0%, 100% { opacity: 0; transform: translateY(-50%) scaleX(0); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1); }
}


@keyframes scrollDot {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 22px; opacity: 0.5; }
}

/* Hero Section - White & Red Theme */
.hero {
    min-height: 100vh;
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--red-gradient);
    color: var(--pure-white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-red);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-red);
    animation: underlineGrow 2s ease-out;
}

.gradient-text {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    color: var(--light-red);
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Industrial Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-left: 4px solid var(--primary-red);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(220, 38, 38, 0.2);
    transition: width 0.3s ease;
}

.feature-item:hover::before {
    width: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
    border-left-color: var(--orange-accent);
}

.feature-item i {
    color: var(--primary-red);
    margin-right: 1rem;
    font-size: 1.5rem;
    z-index: 2;
    position: relative;
}

.feature-item span {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

/* Hero Animation - Keep the truck animation */
.hero-animation {
    position: relative;
    z-index: 2;
}

.moving-truck-container {
    position: relative;
    height: 120px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.moving-truck {
    position: absolute;
    left: -15%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    animation: moveTruckIndustrial 10s ease-in-out infinite;
}

.truck-path {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-red) 20%, 
        var(--orange-accent) 50%,
        var(--primary-red) 80%, 
        transparent 100%);
    opacity: 0.7;
}

.loading-animation {
    position: relative;
    height: 80px;
    margin-bottom: 2rem;
}

.boxes-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: end;
}

.box {
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    border: 2px solid var(--orange-accent);
    position: relative;
    animation: loadingBoxesIndustrial 2.5s ease-in-out infinite;
}

.box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: var(--orange-accent);
    transform: translate(-50%, -50%);
}

.box-1 { animation-delay: 0s; }
.box-2 { animation-delay: 0.4s; }
.box-3 { animation-delay: 0.8s; }

/* Hero Buttons */
.btn-primary-industrial {
    background: var(--red-gradient);
    border: none;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
    margin-right: 1rem;
}

.btn-primary-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-industrial:hover::before {
    left: 100%;
}

.btn-primary-industrial:hover {
    background: var(--dark-red);
    transform: translateX(5px);
    color: white;
}

.btn-outline-industrial {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-industrial:hover::before {
    left: 0;
}

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

/* Hero Stats - Industrial Style */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-red);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-5px);
    border-top-color: var(--orange-accent);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Industrial Animations */
@keyframes brandShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes industrialPattern {
    0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
    100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

@keyframes underlineGrow {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes moveTruckIndustrial {
    0% { left: -15%; transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(2deg); }
    50% { left: 50%; transform: translateY(-50%) rotate(0deg); }
    75% { transform: translateY(-50%) rotate(-2deg); }
    100% { left: 115%; transform: translateY(-50%) rotate(0deg); }
}

@keyframes loadingBoxesIndustrial {
    0%, 100% { transform: translateY(0) rotateZ(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotateZ(180deg); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-main {
        font-size: 1.2rem;
    }
    
    .brand-sub {
        font-size: 0.8rem;
    }
    
    /* Modern Hero Mobile */
    .modern-hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .modern-hero .container .row {
        flex-direction: column-reverse;
    }
    
    .modern-hero-content {
        text-align: center;
        padding: 2rem 0;
    }
    
    .modern-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .title-line {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .title-decoration {
        width: 40px;
        height: 3px;
    }
    
    .modern-hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 1.5rem;
    }
    
    .modern-features {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .feature-pill {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .modern-hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
    
    .modern-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-modern {
        padding: 1rem;
    }
    
    /* Modern Hero Visual Mobile */
    .hero-image-container {
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .truck-hero-modern {
        height: 220px;
        max-width: 300px;
    }
    
    .truck-hero-modern i {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .truck-text h3 {
        font-size: 1.4rem;
    }
    
    .truck-text p {
        font-size: 1rem;
    }
    
    .geometric-shape {
        opacity: 0.03;
    }
    
    .shape-1, .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .shape-3, .shape-4 {
        width: 100px;
        height: 100px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero .container .row {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-industrial,
    .btn-outline-industrial {
        width: 100%;
        margin: 0;
        padding: 0.8rem 1.5rem;
    }
    
    /* Hero Animation Mobile */
    .hero-animation {
        margin-bottom: 2rem;
    }
    
    .moving-truck-container {
        height: 100px;
    }
    
    .moving-truck {
        font-size: 3rem;
    }
    
    .loading-animation {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .box {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    /* Navigation Mobile */
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .navbar-cta {
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Hero Mobile Small */
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hero Animation Small Mobile */
    .moving-truck-container {
        height: 80px;
    }
    
    .moving-truck {
        font-size: 2.5rem;
    }
    
    .loading-animation {
        height: 50px;
    }
    
    .box {
        width: 20px;
        height: 20px;
    }
    
    /* Modern Hero Small Mobile */
    .modern-hero-title {
        font-size: 2rem;
    }
    
    .hero-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .tag-icon {
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
    }
    
    .modern-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .modern-features {
        gap: 0.75rem;
    }
    
    .feature-pill {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .modern-stats {
        gap: 0.75rem;
    }
    
    .stat-modern {
        padding: 0.9rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image-container {
        height: 200px;
    }
    
    .truck-hero-modern {
        height: 180px;
        max-width: 250px;
    }
    
    .truck-hero-modern i {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }
    
    .truck-text h3 {
        font-size: 1.2rem;
    }
    
    .truck-text p {
        font-size: 0.9rem;
    }
    
    .scroll-indicator-modern {
        bottom: 1rem;
        font-size: 0.8rem;
    }
    
    /* Mobile Placeholder Adjustments */
    .truck-hero-placeholder {
        height: 200px;
        margin: 1rem 0;
    }
    
    .truck-hero-placeholder i {
        font-size: 2.5rem;
    }
    
    .truck-hero-placeholder p {
        font-size: 0.9rem;
    }
    
    .features-image-placeholder {
        height: 250px;
    }
    
    .features-image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 120px;
    }
    
    .image-placeholder i {
        font-size: 1.2rem;
    }
    
    .image-placeholder p {
        font-size: 0.8rem;
    }
}

/* Additional Industrial Elements */
.section-divider {
    height: 5px;
    background: var(--red-gradient);
    margin: 3rem 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--orange-accent);
    transform: translate(-50%, -50%) rotate(45deg);
}

.industrial-card {
    background: white;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.industrial-card:hover {
    box-shadow: var(--shadow-medium);
    border-left-color: var(--light-red);
    transform: translateX(5px);
}

/* Section Styling */
.services-section, .features-section, .process-section, .testimonials-section, .cta-section {
    padding: 5rem 0;
}

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

.process-section {
    background: var(--pure-white);
}

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

.cta-section {
    background: var(--red-gradient);
    color: var(--pure-white);
}

/* Section Headers */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-red);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Service Cards */
.service-card-modern {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-modern i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.service-card-modern:hover .service-icon-modern {
    background: var(--red-gradient);
}

.service-card-modern:hover .service-icon-modern i {
    color: var(--pure-white);
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-features i {
    color: var(--primary-red);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.btn-service {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-service:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    text-decoration: none;
    transform: translateX(5px);
}

/* Features Section */
.features-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Features Visual */
.features-visual {
    position: relative;
}

.features-image {
    position: relative;
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--pure-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    min-width: 150px;
}

.floating-card .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.floating-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Process Section */
.process-timeline {
    position: relative;
}

.process-line {
    position: absolute;
    top: 4rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--red-gradient);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-medium);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--pure-white);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.process-step:hover .step-icon {
    background: var(--primary-red);
    transform: scale(1.1);
}

.process-step:hover .step-icon i {
    color: var(--pure-white);
}

.process-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--primary-red);
    font-size: 1rem;
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-body p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.customer-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--pure-white);
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-red {
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
}

.btn-outline-red:hover {
    background: var(--pure-white);
    color: var(--primary-red);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

.footer-brand .brand-main,
.footer-brand .brand-sub {
    color: var(--pure-white);
}

.footer-brand .brand-sub {
    color: var(--primary-red);
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 0.9rem;
}

.contact-item-footer i {
    color: var(--primary-red);
    width: 20px;
}

.contact-item-footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-divider {
    border: none;
    height: 1px;
    background: #374151;
    margin: 2rem 0 1rem;
}

.footer-bottom {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--light-red);
}

/* Blog Section on Homepage */
.blog-section {
    padding: 5rem 0;
    background: var(--pure-white);
}

.blog-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red-gradient);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: auto;
    font-size: 0.9rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.blog-read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--dark-red);
    transform: translateX(3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--pure-white);
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: var(--pure-white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.scroll-arrow:hover {
    background: var(--primary-red);
    color: var(--pure-white);
}

/* Page Header Styles */
.page-header {
    padding: 8rem 0 5rem;
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}


.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-nav span {
    color: var(--text-light);
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

.page-header-visual {
    position: relative;
    z-index: 2;
}

.header-animation .moving-truck-container {
    height: 80px;
    position: relative;
    overflow: hidden;
}

.header-animation .moving-truck {
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--primary-red);
    animation: moveTruckIndustrial 8s ease-in-out infinite;
}

/* Services Grid Section */
.services-grid-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.service-card-detailed {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-card-detailed:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon-large i {
    font-size: 2rem;
    color: var(--primary-red);
}

.service-card-detailed:hover .service-icon-large {
    background: var(--red-gradient);
}

.service-card-detailed:hover .service-icon-large i {
    color: var(--pure-white);
}

.service-title {
    flex-grow: 1;
}

.service-title h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-badge {
    background: var(--accent-red);
    color: var(--primary-red);
}

.service-badge.professional {
    background: #dbeafe;
    color: #1e40af;
}

.service-badge.economy {
    background: #dcfce7;
    color: #166534;
}

.service-badge.special {
    background: #fef3c7;
    color: #d97706;
}

.service-badge.nationwide {
    background: #e0e7ff;
    color: #4338ca;
}

.service-badge.quick {
    background: #fce7f3;
    color: #be185d;
}

.service-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.service-body p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features-detailed {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features-detailed li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features-detailed i {
    color: var(--primary-red);
    margin-right: 1rem;
    font-size: 0.9rem;
    width: 16px;
}

.service-price {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.service-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-service-detail {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-service-detail:hover {
    background: var(--border-light);
    color: var(--text-dark);
    text-decoration: none;
}

.btn-primary-industrial {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--pure-white);
}

.advantage-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.advantage-card:hover .advantage-icon {
    background: var(--red-gradient);
}

.advantage-card:hover .advantage-icon i {
    color: var(--pure-white);
}

.advantage-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-buttons {
        flex-direction: column;
    }
    
    .service-buttons .btn {
        width: 100%;
    }
    
    .header-animation {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .service-card-detailed {
        padding: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem 1rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

/* Additional Inner Page Styles */

/* Service Hero - Additional Styles */
.service-hero {
    background: var(--white-gradient);
    padding: 120px 0 80px;
    border-bottom: 3px solid var(--primary-red);
}

.service-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-actions .btn {
    min-width: 150px;
}

.service-hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

/* Mission Cards - Additional Styles */
.mission-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--pure-white);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--pure-white);
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--pure-white);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    box-shadow: var(--shadow-light);
}

.team-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Package Cards */
.package-card {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-red);
}

.package-card.featured {
    border: 3px solid var(--primary-red);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 600;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* Statistics Section - Additional */
.statistics {
    background: var(--red-gradient);
    color: var(--pure-white);
}

.stat-item {
    padding: 2rem;
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 3rem;
    color: var(--pure-white);
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Process Steps - Additional */
.process-step {
    position: relative;
    padding: 2rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--pure-white);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-red);
    color: var(--pure-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

/* Quote Form */
.quote-form {
    background: var(--light-gray);
}

.quote-card {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Related Services - Additional */
.related-services .service-card {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.related-services .service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-services .service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.related-services .service-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

/* About Story Section */
.about-story {
    padding: 5rem 0;
}

.about-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

/* Contact Form Container */
.contact-form-container {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.required {
    color: var(--primary-red);
}

.form-control,
.form-select {
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pure-white);
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.1);
    outline: none;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.form-group:focus-within .form-icon {
    color: var(--primary-red);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
}

/* Form Check */
.form-check {
    margin: 1.5rem 0;
}

.form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.1);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Info Container */
.contact-info-container {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    height: fit-content;
}

.contact-info-header {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Info Items */
.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-content p {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.info-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.info-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* Social Contact */
.social-contact {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.social-contact h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-link {
    width: 100px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    background: var(--primary-red);
    transform: translateY(-3px);
    color: var(--pure-white);
}

.social-link:hover {
    color: var(--primary-red);
    background: var(--accent-red);
    text-decoration: none;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.social-link i {
    width: 18px;
    font-size: 1rem;
}

/* Quick Contact Cards */
.contact-quick-info {
    margin-top: 2rem;
}

.quick-contact-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-details h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

/* Button Loader */
.btn-loader {
    display: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.btn:disabled .btn-loader {
    display: block;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.contact-item i {
    width: 20px;
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--pure-white);
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--pure-white);
    color: var(--text-dark);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.5rem;
    border: none;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-red);
    color: var(--primary-red);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.1);
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.3rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
        font-size: 0.9rem;
    }
    
    .form-icon {
        left: 0.9rem;
        font-size: 0.9rem;
    }
    
    .quick-contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .social-links-contact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Privacy Policy Modal */
.privacy-content {
    padding: 1rem 0;
}

.privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.privacy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.privacy-section h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.privacy-section h6 i {
    color: var(--primary-red);
    width: 20px;
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section ul li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-section ul li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.privacy-section a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.privacy-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: 1rem;
}

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: var(--accent-red);
    border-bottom: 1px solid var(--border-light);
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.modal-header .modal-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
    gap: 1rem;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 70vh;
    }
    
    .privacy-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .privacy-section h6 {
        font-size: 0.95rem;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.9rem;
    }
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--primary-red);
}

.footer-brand span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pure-white);
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}


.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    color: var(--pure-white);
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.developer-credit {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.developer-credit a {
    color: var(--primary-red);
    text-decoration: none;
}

.developer-credit a:hover {
    color: var(--light-red);
}

/* FAQ Section Styles */
.faq-section .accordion-item {
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--pure-white);
    color: var(--text-dark);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--accent-red);
    color: var(--primary-red);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Service Features Section */
.service-features .feature-box {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.service-features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.service-features .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-features .feature-icon i {
    font-size: 1.8rem;
    color: var(--pure-white);
}

/* Service Process */
.service-process .process-step {
    text-align: center;
}

.service-process .process-step h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-process .process-step p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--red-gradient);
    padding: 4rem 0;
    color: var(--pure-white);
}

.cta-title {
    color: var(--pure-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Placeholder Styles for Missing Images */
.truck-hero-placeholder {
    width: 100%;
    height: 300px;
    background: var(--red-gradient);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-align: center;
    box-shadow: var(--shadow-heavy);
}

.truck-hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.truck-hero-placeholder p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    border: 2px dashed var(--border-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-placeholder p {
    font-size: 0.9rem;
    margin: 0;
}

.features-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--accent-red);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    text-align: center;
}

.features-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-image-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Avatar Placeholders */
.customer-avatar-placeholder,
.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-avatar-placeholder {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
}

 /* Blog Detail Specific Styles */

 
        .blog-article {
            background: var(--pure-white);
        }

        .article-header {
            padding: 8rem 0 2rem;
            background: var(--light-gray);
        }

        .article-category {
            display: inline-block;
            background: var(--red-gradient);
            color: var(--pure-white);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .article-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
        }

        .author-title {
            display: block;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .article-stats {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .article-stats span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-image {
            padding: 2rem 0;
        }

        .featured-image {
            border-radius: 15px;
            box-shadow: var(--shadow-medium);
        }

        .article-content {
            padding: 3rem 0;
        }

        .article-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .article-body .lead {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .article-body h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 2.5rem 0 1.5rem 0;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 0.5rem;
        }

        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 2rem 0 1rem 0;
        }

        .article-list {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        .article-list li {
            margin-bottom: 0.8rem;
            color: var(--text-light);
        }

        /* Info Boxes */
        .info-box, .warning-box {
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-box {
            background: #e0f2fe;
            border-left: 4px solid #0277bd;
        }

        .warning-box {
            background: #fff3e0;
            border-left: 4px solid #ff9800;
        }

        .info-box i, .warning-box i {
            font-size: 1.5rem;
            margin-top: 0.25rem;
        }

        .info-box i {
            color: #0277bd;
        }

        .warning-box i {
            color: #ff9800;
        }

        .info-box h4, .warning-box h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .info-box p, .warning-box p {
            margin: 0;
            color: var(--text-light);
        }

        /* Criteria Grid */
        .criteria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .criteria-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--pure-white);
            border-radius: 10px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .criteria-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .criteria-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .criteria-icon i {
            font-size: 1.5rem;
            color: var(--primary-red);
        }

        .criteria-item h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .criteria-item p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Checklist */
        .checklist {
            background: var(--light-gray);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .checklist-section {
            margin-bottom: 2rem;
        }

        .checklist-section:last-child {
            margin-bottom: 0;
        }

        .checklist-section h4 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            cursor: pointer;
            position: relative;
            padding-left: 2rem;
            color: var(--text-light);
        }

        .checklist-item input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .checkmark {
            position: absolute;
            left: 0;
            top: 2px;
            height: 18px;
            width: 18px;
            background: var(--pure-white);
            border: 2px solid var(--primary-red);
            border-radius: 3px;
        }

        .checklist-item input:checked ~ .checkmark {
            background: var(--primary-red);
        }

        .checklist-item .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .checklist-item input:checked ~ .checkmark:after {
            display: block;
        }

        .checklist-item .checkmark:after {
            left: 4px;
            top: 1px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        /* Cost Tips */
        .cost-tips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .cost-tip {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--pure-white);
            border-radius: 10px;
            box-shadow: var(--shadow-light);
        }

        .tip-number {
            width: 40px;
            height: 40px;
            background: var(--red-gradient);
            color: var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }

        .tip-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .tip-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Article Tags */
        .article-tags {
            padding: 2rem 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            margin: 2rem 0;
        }

        .tags-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-right: 1rem;
        }

        .tag {
            display: inline-block;
            background: var(--accent-red);
            color: var(--primary-red);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.85rem;
            margin: 0.2rem 0.3rem;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--primary-red);
            color: var(--pure-white);
            text-decoration: none;
        }

        /* Social Share */
        .social-share {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .share-label {
            font-weight: 600;
            color: var(--text-dark);
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            transform: scale(1.1);
            color: var(--pure-white);
        }

        .share-btn.facebook { background: #3b5998; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.whatsapp { background: #25d366; }

        /* Author Bio */
        .author-bio {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            display: flex;
            gap: 1.5rem;
        }

        .author-avatar-large {
            flex-shrink: 0;
        }

        .author-avatar-large img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info-large h4 {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .author-info-large .author-title {
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .author-bio-text {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .author-social {
            display: flex;
            gap: 0.5rem;
        }

        .author-social a {
            width: 35px;
            height: 35px;
            background: var(--primary-red);
            color: var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .author-social a:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }

        /* Sidebar Widgets */
        .sidebar {
            position: sticky;
            top: 100px;
        }

        .widget {
            background: var(--pure-white);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-light);
        }

        .widget-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-red);
        }

        .cta-widget {
            background: var(--red-gradient);
            color: var(--pure-white);
            text-align: center;
        }

        .cta-widget h4 {
            color: var(--pure-white);
            margin-bottom: 1rem;
        }

        .cta-widget p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }

        .popular-post {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-light);
        }

        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .post-thumb {
            flex-shrink: 0;
        }

        .post-thumb img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
        }

        .post-info h6 {
            margin-bottom: 0.5rem;
        }

        .post-info h6 a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .post-info h6 a:hover {
            color: var(--primary-red);
        }

        .post-meta {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .categories-list {
            list-style: none;
            padding: 0;
        }

        .categories-list li {
            margin-bottom: 0.8rem;
        }

        .categories-list a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .categories-list a:hover {
            color: var(--primary-red);
            padding-left: 0.5rem;
        }

        .categories-list span {
            background: var(--accent-red);
            color: var(--primary-red);
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .contact-widget .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .contact-widget .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-widget .contact-item i {
            color: var(--primary-red);
            font-size: 1.1rem;
            margin-top: 0.2rem;
        }

        .contact-widget .contact-item strong {
            display: block;
            color: var(--text-dark);
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .contact-widget .contact-item a,
        .contact-widget .contact-item span {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .contact-widget .contact-item a:hover {
            color: var(--primary-red);
        }

        /* Related Posts */
        .related-posts .blog-card {
            height: auto;
        }

        .related-posts .blog-content {
            padding: 1.5rem;
        }

        .related-posts .blog-title {
            font-size: 1.1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .article-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .author-bio {
                flex-direction: column;
                text-align: center;
            }

            .social-share {
                flex-wrap: wrap;
            }

            .cost-tips,
            .criteria-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                margin-top: 3rem;
            }
        }
    

/* Blog image placeholder positioning */
.blog-image {
    position: relative;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

/* Navbar toggle fix for mobile */
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .truck-hero-placeholder {
        height: 250px;
    }
    
    .truck-hero-placeholder i {
        font-size: 3rem;
    }
    
    .truck-hero-placeholder p {
        font-size: 1rem;
    }
    
    .features-image-placeholder {
        height: 300px;
    }
    
    .features-image-placeholder i {
        font-size: 2.5rem;
    }
    
    .image-placeholder {
        height: 150px;
    }
    
    .image-placeholder i {
        font-size: 1.5rem;
    }
    
    .page-title, .service-title {
        font-size: 2rem;
    }
    
    .package-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-section {
        text-align: center;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}