:root {
    --orange-primary: #D68910;
    --orange-vibrant: #E69A1A;
    --orange-light: #F0AC1F;
    --orange-glow: rgba(214, 137, 16, 0.3);
    
    --dark-primary: #0F0F0F;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #2A2A2A;
    
    --gray-light: #E0E0E0;
    --gray-medium: #999;
    --gray-dark: #666;
    
    --white: #FFFFFF;
    --green-whatsapp: #25D366;
    
    --font-display: 'Bebas Neue', cursive;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px var(--orange-glow);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark-primary);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loader-logo-ds {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange-primary);
    letter-spacing: 12px;
    line-height: 1;
    margin-bottom: -10px;
    text-shadow: 0 0 30px var(--orange-glow);
}

.loader-logo-cartage {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-vibrant);
    letter-spacing: 8px;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-primary);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

/* ANIMATED TRUCK LOADER */
.loader-truck-container {
    position: relative;
    width: 300px;
    height: 100px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--dark-tertiary);
    border-radius: 2px;
}

.loader-road::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--orange-primary) 0px,
        var(--orange-primary) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadScroll 1s linear infinite;
}

@keyframes roadScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-40px); }
}

.loader-truck {
    position: absolute;
    bottom: 4px;
    left: -80px;
    width: 80px;
    height: 50px;
    animation: truckDrive 3s ease-in-out infinite;
}

@keyframes truckDrive {
    0% { left: -80px; }
    100% { left: 100%; }
}

.loader-truck-bed {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 45px;
    height: 28px;
    background: linear-gradient(to right, var(--orange-primary), var(--orange-vibrant));
    border: 2px solid var(--orange-light);
    border-radius: 3px;
}

.loader-truck-bed::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--orange-light);
    border-radius: 2px 2px 0 0;
}

.loader-truck-cab {
    position: absolute;
    bottom: 18px;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(to right, var(--orange-vibrant), var(--orange-primary));
    border: 2px solid var(--orange-light);
    border-radius: 3px 3px 0 0;
}

.loader-truck-cab::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 12px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 2px;
}

.loader-wheel {
    position: absolute;
    bottom: 0;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #666, #2a2a2a);
    border: 3px solid #444;
    border-radius: 50%;
    animation: wheelSpin 0.5s linear infinite;
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
}

.loader-wheel-front {
    right: 8px;
}

.loader-wheel-rear {
    left: 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--orange-primary);
    transition: var(--transition-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
}

.brand-icon svg {
    width: 64px;
    height: 64px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #00D4FF;
    letter-spacing: 2px;
}

.brand-tag {
    font-size: 0.7rem;
    color: var(--gray-medium);
    letter-spacing: 3px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--orange-primary);
    transition: var(--transition-medium);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    color: var(--white) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--orange-vibrant);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero-diagonal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-primary);
    overflow: hidden;
    padding-bottom: 150px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--orange-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.label-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--orange-primary);
    text-shadow: 0 0 40px var(--orange-glow);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--orange-vibrant);
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--orange-glow);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--orange-glow); }
    50% { box-shadow: 0 0 40px var(--orange-glow); }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-primary);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-medium);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 2rem;
}

.stat-info {
    min-width: 0;
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--orange-primary);
    line-height: 1;
    display: block;
    word-wrap: break-word;
}

.stat-number span {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* 3D Truck */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.truck-3d {
    perspective: 1000px;
    width: 100%;
    max-width: 600px;
}

.truck-scene {
    position: relative;
    width: 100%;
}

.truck-svg {
    width: 100%;
    height: auto;
}

/* Cargo jiggle effect */
.cargo-boxes {
    animation: cargoJiggle 2s ease-in-out infinite;
}

@keyframes cargoJiggle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Tipper bed subtle movement */
.tipper-bed {
    animation: tipperVibrate 3s ease-in-out infinite;
}

@keyframes tipperVibrate {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

/* Wind/speed lines animation */
.wind-lines {
    animation: windBlow 1.5s ease-in-out infinite;
}

@keyframes windBlow {
    0% {
        opacity: 0.2;
        transform: translateX(0) scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-15px) scaleX(1.2);
    }
    100% {
        opacity: 0.1;
        transform: translateX(-30px) scaleX(0.8);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-medium);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray-medium);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.5; }
}

/* Sections */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--orange-primary);
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--dark-primary);
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--orange-primary);
    margin: 1rem auto 0;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    right: -6px;
    top: -2px;
}

/* Services with Flip Cards */
.services-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-flip-card {
    perspective: 1000px;
    height: 450px;
    cursor: pointer;
    position: relative;
}

.service-flip-card.featured {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-primary);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.5);
    pointer-events: none;
    white-space: nowrap;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flip-card-front {
    background: var(--white);
    border: 3px solid var(--dark-primary);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.flip-card-back {
    background: var(--dark-primary);
    color: var(--white);
    transform: rotateY(180deg);
    border: 3px solid var(--orange-primary);
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.flip-card-front h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.service-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--orange-primary);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flip-card-front p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.flip-hint {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--orange-primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: auto;
}

.flip-card-back h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--orange-primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.service-details {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-details li {
    padding: 0.6rem 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-flip {
    background: var(--orange-primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition-medium);
}

.btn-flip:hover {
    background: var(--white);
    color: var(--dark-primary);
    transform: translateY(-3px);
}







/* Gallery */
.gallery-section {
    background: var(--dark-primary);
    color: var(--white);
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--orange-primary);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.gallery-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--orange-glow));
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--orange-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.gallery-overlay p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Pricing Calculator */
.pricing-section {
    background: var(--white);
}

.pricing-calculator {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.calculator-panel {
    background: var(--dark-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 3px solid var(--orange-primary);
}

.calculator-panel h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.calc-group {
    margin-bottom: 2rem;
}

.calc-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.calc-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.calc-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255, 140, 0, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.radio-option:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--orange-primary);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
}

.calc-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    margin-right: 0.75rem;
}

.price-result {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--orange-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.result-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-light);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.result-price {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--orange-primary);
    letter-spacing: 2px;
    text-shadow: 0 0 30px var(--orange-glow);
}

.result-note {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-style: italic;
    margin-top: 0.5rem;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--dark-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--orange-primary);
    transition: var(--transition-medium);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    width: 100%;
}

.testimonial-card {
    min-width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    flex-shrink: 0;
    background: var(--white);
    padding: 2rem 3rem 3rem;
    border-radius: 16px;
    border: 3px solid var(--dark-primary);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

/* Truck-style testimonial cards */
.testimonial-truck {
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 92%, var(--dark-primary) 92%, var(--dark-primary) 100%);
    padding-bottom: 3.5rem;
    margin: 0 15px;
}

.truck-top {
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: truckBounce 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-top svg {
    width: 48px;
    height: 48px;
}

@keyframes truckBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* REMOVED - No more wheel circles */
/* .testimonial-truck::before,
.testimonial-truck::after {
    content: '';
    position: absolute;
    bottom: 10px;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, #333 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-truck::before {
    left: 80px;
    animation: wheelRoll 4s linear infinite;
}

.testimonial-truck::after {
    right: 80px;
    animation: wheelRoll 4s linear infinite;
}

@keyframes wheelRoll {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-style: italic;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--orange-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--dark-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-medium);
}

.slider-btn:hover {
    background: var(--orange-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-medium);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--orange-primary);
    transform: scale(1.3);
}

/* Contact Section */
.contact-section {
    background: var(--dark-primary);
    color: var(--white);
    padding: 100px 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-lead {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.contact-card:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--orange-primary);
    transform: translateX(10px);
}

.contact-card.whatsapp {
    border-color: var(--green-whatsapp);
}

.contact-card.whatsapp:hover {
    background: var(--green-whatsapp);
    border-color: var(--green-whatsapp);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-icon {
    background: var(--green-whatsapp);
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-medium);
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

.contact-form-modern h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-primary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255, 140, 0, 0.1);
}

.form-field label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray-medium);
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-field input:focus + label,
.form-field select:focus + label,
.form-field textarea:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:not(:placeholder-shown) + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--orange-primary);
    background: var(--dark-primary);
    padding: 0 0.5rem;
}

.form-field textarea {
    resize: vertical;
}

.btn-submit {
    margin-top: 1rem;
}

.form-footer {
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon svg {
    width: 56px;
    height: 56px;
}

.footer-desc {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--orange-primary);
    font-style: italic;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--orange-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--orange-primary);
}

.footer-contact li {
    color: var(--gray-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--gray-medium);
}

/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--green-whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-medium);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--green-whatsapp);
    animation: pulsate 2s ease-out infinite;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--orange-vibrant);
    transform: translateY(-5px);
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="flip-left"] {
    transform: perspective(2000px) rotateY(-40deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2000px) rotateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-cards {
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: var(--transition-medium);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-flip-card.featured {
        transform: scale(1);
    }

    .service-icon-large {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .flip-card-front h3 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-calculator {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-fab,
    .back-to-top {
        width: 55px;
        height: 55px;
        bottom: 20px;
    }
    
    .whatsapp-fab {
        right: 20px;
    }
    
    .back-to-top {
        left: 20px;
    }

    /* ===== MOBILE SERVICE CARD FIXES ===== */
    .service-flip-card {
        height: 380px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 1.5rem;
    }

    .service-icon-large {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }

    .flip-card-front h3 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .service-tag {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .flip-card-front p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .flip-hint {
        font-size: 0.8rem;
    }

    .flip-card-back {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }

    .flip-card-back h3 {
        font-size: 1.3rem;
    }

    .service-details li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    /* ===== MOBILE SECTION HEADER FIX ===== */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .section-container {
        padding: 60px 16px;
    }

    .hero-container {
        padding: 80px 16px 100px;
    }

    /* ===== MOBILE GALLERY FIX ===== */
    .gallery-item {
        height: 180px;
        aspect-ratio: auto;
    }

    .gallery-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-overlay h4 {
        font-size: 1.1rem;
    }

    /* ===== MOBILE TESTIMONIALS FIX ===== */
    .testimonial-card {
        padding: 1.25rem 1.5rem 2rem;
    }

    .testimonial-truck {
        padding-bottom: 2.5rem;
    }

    .truck-top {
        margin-bottom: 0.5rem;
    }

    .truck-top svg {
        width: 36px;
        height: 36px;
    }

    .stars {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        min-height: auto;
    }

    .testimonial-author strong {
        font-size: 1rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }

    .testimonials-slider {
        padding: 0 10px;
    }

    /* ===== MOBILE CONTACT FIX ===== */
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 16px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-lead {
        font-size: 1rem;
    }

    .contact-cards {
        gap: 0.75rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .quote-cta-box {
        padding: 1.5rem;
    }

    .quick-contact-options {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* ===== MOBILE FOOTER FIX ===== */
    .footer-container {
        padding: 0 16px;
    }

    .footer-grid {
        gap: 2rem;
    }
}

/* ========================================
   ANIMATED TIPPER TRUCK - BURNT ORANGE
   ======================================== */

.truck-animation-scene {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.truck-container {
    position: absolute;
    right: -700px;
    top: 50%;
    transform: translateY(-50%);
    animation: truckJourney 12s infinite;
}

@keyframes truckJourney {
    0% { right: -700px; }
    30% { right: 40%; }
    40%, 60%, 75% { right: 40%; }
    100% { right: 120%; }
}

.truck {
    position: relative;
    width: 600px;
    height: 300px;
}

.wind-lines {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 100px;
    opacity: 0;
}

.truck-container.moving .wind-lines {
    animation: windEffect 0.8s infinite;
}

@keyframes windEffect {
    0% { opacity: 0; transform: translateY(-50%) translateX(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-50%) translateX(30px); }
}

.wind-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(to right, rgba(200, 200, 200, 0.6), transparent);
    border-radius: 2px;
}

.wind-line:nth-child(1) { top: 20px; width: 80px; }
.wind-line:nth-child(2) { top: 45px; width: 100px; }
.wind-line:nth-child(3) { top: 70px; width: 90px; }

.truck-container.dumping .dump-bed-container {
    transform: rotate(55deg);
}

.truck-container.dumping .hydraulic {
    height: 250px;
    transform: rotate(40deg);
}

.debris-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 900px;
    height: 300px;
    pointer-events: none;
    z-index: 6;
}

.debris {
    position: absolute;
    opacity: 0;
    top: 75px;
    left: 535px;
    transition: all 1.4s cubic-bezier(0.4, 0.1, 0.3, 1);
}

.truck-container.dumping .debris { opacity: 1; }

.truck-container.collecting .debris {
    opacity: 0 !important;
    top: 50px !important;
    left: 400px !important;
    transition: all 0.8s ease-in !important;
}

.garbage-bag {
    width: 50px;
    height: 55px;
    background: linear-gradient(to bottom, #1a1a1a, #000);
    border-radius: 40% 40% 45% 45%;
    box-shadow: inset -5px -5px 10px rgba(255, 255, 255, 0.1);
}

.garbage-bag::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 34px;
    height: 39px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.plank {
    width: 70px;
    height: 18px;
    background: linear-gradient(to right, #8b4513, #a0522d, #8b4513);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.plank::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #654321;
    top: 7px;
}

.cardboard-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c8a882 0%, #9b7653 100%);
    border: 3px solid #8b6914;
}

.cardboard-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8b6914;
}

.cardboard-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #8b6914;
}

.brick {
    width: 42px;
    height: 24px;
    background: linear-gradient(to bottom, #b22222, #8b0000);
    border: 2px solid #660000;
}

.brick::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #660000;
    top: 50%;
}

.garbage-bag-2 {
    width: 48px;
    height: 52px;
    background: linear-gradient(to bottom, #2d5016, #1a3d0a);
    border-radius: 40% 40% 45% 45%;
    box-shadow: inset -5px -5px 10px rgba(255, 255, 255, 0.1);
}

.bottle {
    width: 20px;
    height: 38px;
    background: linear-gradient(to bottom, rgba(100, 149, 237, 0.4), rgba(65, 105, 225, 0.3));
    border-radius: 8px 8px 5px 5px;
    border: 3px solid rgba(100, 149, 237, 0.6);
}

.bottle::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 5px;
    width: 10px;
    height: 8px;
    background: rgba(100, 149, 237, 0.5);
    border-radius: 5px 5px 0 0;
}

.concrete {
    width: 40px;
    height: 34px;
    background: linear-gradient(135deg, #a9a9a9, #696969);
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.concrete::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #555;
    border-radius: 50%;
    top: 11px;
    left: 14px;
}

.pipe {
    width: 65px;
    height: 16px;
    background: linear-gradient(to bottom, #c0c0c0, #808080);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wood-piece {
    width: 35px;
    height: 42px;
    background: linear-gradient(to right, #654321, #8b4513);
    border-radius: 3px;
}

.truck-container.dumping .garbage-bag { top: 238px; left: 590px; transform: rotate(125deg); transition-delay: 0.4s; }
.truck-container.dumping .plank { top: 235px; left: 540px; transform: rotate(-75deg); transition-delay: 0.2s; }
.truck-container.dumping .cardboard-box { top: 230px; left: 650px; transform: rotate(200deg); transition-delay: 0.6s; }
.truck-container.dumping .brick { top: 242px; left: 620px; transform: rotate(85deg); transition-delay: 0.3s; }
.truck-container.dumping .garbage-bag-2 { top: 236px; left: 560px; transform: rotate(-110deg); transition-delay: 0.5s; }
.truck-container.dumping .bottle { top: 243px; left: 680px; transform: rotate(260deg); transition-delay: 0.7s; }
.truck-container.dumping .concrete { top: 240px; left: 605px; transform: rotate(140deg); transition-delay: 0.25s; }
.truck-container.dumping .pipe { top: 234px; left: 665px; transform: rotate(-35deg); transition-delay: 0.45s; }
.truck-container.dumping .wood-piece { top: 237px; left: 635px; transform: rotate(175deg); transition-delay: 0.35s; }

.dump-bed-container {
    position: absolute;
    bottom: 110px;
    left: 190px;
    width: 340px;
    height: 140px;
    transform-origin: bottom right;
    transition: transform 1.2s ease-in-out;
    z-index: 5;
}

.dump-bed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #D68910 0%, #E69A1A 50%, #D68910 100%);
    border: 4px solid #B86D00;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bed-ribs {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
}

.bed-rib {
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, #B86D00 0%, #C77800 50%, #B86D00 100%);
    opacity: 0.6;
}

.bed-top {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(to bottom, #B86D00, #8b6914);
    border-radius: 3px 3px 0 0;
}

/* DS CARTAGE LOGO ON TRUCK BED - CYAN BLUE */
.truck-bed-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.bed-logo-ds {
    font-family: 'Bebas Neue', Arial Black, sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #00D4FF;
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: -5px;
}

.bed-logo-cartage {
    font-family: 'Rajdhani', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00D4FF;
    text-shadow: 
        0 0 15px rgba(0, 212, 255, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 6px;
    opacity: 0.95;
}

.hydraulic {
    position: absolute;
    bottom: 110px;
    left: 270px;
    width: 18px;
    height: 100px;
    background: linear-gradient(to right, #555, #777, #555);
    border-radius: 9px;
    transform-origin: bottom center;
    transition: all 1.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 4;
}

.hydraulic::before,
.hydraulic::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #444;
    border-radius: 50%;
    border: 3px solid #666;
}

.hydraulic::before { bottom: -2px; }
.hydraulic::after { top: -2px; }

.cab {
    position: absolute;
    bottom: 110px;
    left: 50px;
    width: 140px;
    height: 100px;
    background: linear-gradient(to right, #D68910 0%, #E69A1A 50%, #D68910 100%);
    border: 4px solid #B86D00;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.cab-roof {
    position: absolute;
    top: -15px;
    left: 10px;
    width: 80px;
    height: 20px;
    background: linear-gradient(to right, #D68910, #E69A1A);
    border: 4px solid #B86D00;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.windshield {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8d8ea 0%, #6ba3c0 100%);
    border: 3px solid #2c3e50;
    border-radius: 3px;
}

.windshield::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #2c3e50;
}

.side-window {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8d8ea 0%, #6ba3c0 100%);
    border: 3px solid #2c3e50;
    border-radius: 3px;
}

.door-handle {
    position: absolute;
    right: 25px;
    top: 70px;
    width: 20px;
    height: 12px;
    background: #2c3e50;
    border-radius: 3px;
}

.headlight {
    position: absolute;
    bottom: 120px;
    left: 42px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #fff, #ffd700);
    border-radius: 50%;
    border: 3px solid #2c3e50;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 4;
}

.mirror {
    position: absolute;
    top: 45px;
    left: -20px;
    width: 25px;
    height: 8px;
    background: #2c3e50;
    border-radius: 2px;
}

.mirror::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 18px;
    height: 14px;
    background: #6ba3c0;
    border: 2px solid #2c3e50;
    border-radius: 2px;
}

.chassis {
    position: absolute;
    bottom: 92px;
    left: 50px;
    width: 480px;
    height: 28px;
    background: linear-gradient(to bottom, #2c3e50, #1a252f);
    border-radius: 4px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.chassis::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: #444;
}

.wheel {
    position: absolute;
    bottom: 20px;
    width: 95px;
    height: 95px;
    z-index: 1;
}

.wheel.front { left: 80px; }
.wheel.rear1 { right: 200px; }
.wheel.rear2 { right: 90px; }

.truck-container.moving .wheel-rim,
.truck-container.moving .tire-ring {
    animation: spinWheel 0.5s linear infinite;
}

@keyframes spinWheel {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tire-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #3a3a3a, #000);
    border-radius: 50%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 6px 20px rgba(0, 0, 0, 0.6);
}

.tire-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    border: 8px solid #2a2a2a;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.wheel-rim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #6a6a6a, #3a3a3a);
    border-radius: 50%;
    border: 3px solid #4a4a4a;
}

.rim-spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 60%;
    background: linear-gradient(to bottom, #5a5a5a, #3a3a3a);
    transform-origin: center;
    border-radius: 2px;
}

.rim-spoke:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.rim-spoke:nth-child(2) { transform: translate(-50%, -50%) rotate(30deg); }
.rim-spoke:nth-child(3) { transform: translate(-50%, -50%) rotate(60deg); }
.rim-spoke:nth-child(4) { transform: translate(-50%, -50%) rotate(90deg); }
.rim-spoke:nth-child(5) { transform: translate(-50%, -50%) rotate(120deg); }
.rim-spoke:nth-child(6) { transform: translate(-50%, -50%) rotate(150deg); }

.center-cap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #888, #444);
    border-radius: 50%;
    border: 2px solid #5a5a5a;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

.grille {
    position: absolute;
    bottom: 118px;
    left: 50px;
    width: 40px;
    height: 20px;
    background: #2c3e50;
    border-radius: 2px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding: 3px;
}

.grille-bar {
    background: #444;
    border-radius: 1px;
}
/* ============================================
   T&C POPUP - ADDED
   ============================================ */

.tnc-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.tnc-popup.show {
    display: flex;
}

.tnc-box {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    cursor: default;
}

@keyframes slideIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.tnc-header {
    background: var(--dark-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--orange-primary);
}

.tnc-header h3 {
    margin: 0;
    color: var(--orange-primary);
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.tnc-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.tnc-content {
    padding: 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
    cursor: default;
}

.tnc-content::-webkit-scrollbar {
    width: 8px;
}

.tnc-content::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 10px;
}

.tnc-content h4 {
    color: var(--dark-primary);
    margin: 1rem 0 0.5rem 0;
    font-family: var(--font-heading);
}

.tnc-content h4:first-child {
    margin-top: 0;
}

.tnc-content p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #333;
}

.tnc-highlight {
    color: var(--orange-primary);
    font-weight: 700;
}

.tnc-footer {
    padding: 1.5rem;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
}

.tnc-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.tnc-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--orange-primary);
}

.tnc-buttons {
    display: flex;
    gap: 1rem;
}

.tnc-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.tnc-decline {
    background: #666;
    color: white;
}

.tnc-decline:hover {
    background: #555;
}

.tnc-accept {
    background: #999;
    color: white;
    opacity: 0.5;
    cursor: not-allowed;
}

.tnc-accept.enabled {
    background: var(--orange-primary);
    opacity: 1;
    cursor: pointer;
}

.tnc-accept.enabled:hover {
    background: var(--orange-vibrant);
}

@media (max-width: 768px) {
    .tnc-box {
        width: 95%;
        max-height: 85vh;
    }
    
    .tnc-content {
        max-height: 55vh;
    }
}

/* Enhanced Form Styles */
.form-section {
    margin: 1.5rem 0;
}

.section-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.radio-group-inline {
    display: flex;
    gap: 2rem;
}

.radio-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--white);
    font-size: 1rem;
}

.radio-inline input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.site-block {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.site-heading {
    font-family: var(--font-heading);
    color: var(--orange-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-site {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 140, 0, 0.1);
    border: 2px dashed var(--orange-primary);
    border-radius: 8px;
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin: 1rem 0;
}

.btn-add-site:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .radio-group-inline {
        gap: 1rem;
    }
}

.btn-remove-site {
    width: 100%;
    padding: 0.5rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.5);
    border-radius: 6px;
    color: #dc3545;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-remove-site:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
}

.location-input-wrapper {
    position: relative;
}

.btn-maps {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    z-index: 10;
}

.btn-maps:hover {
    background: var(--orange-hover);
    transform: translateY(-50%) scale(1.05);
}

/* Fix Maps Button Position */
.form-field {
    position: relative;
}

.btn-maps {
    position: static !important;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.6rem;
    transform: none !important;
    right: auto !important;
    top: auto !important;
}

/* Remove black border from field labels */
.form-field label {
    border: none !important;
    outline: none !important;
}

.site-heading {
    border: none !important;
    outline: none !important;
}

/* Fix overlapping text in load types field */
#loadTypes {
    padding-top: 1.5rem;
}

#loadTypes::placeholder {
    opacity: 0;
}

#loadTypes:focus::placeholder {
    opacity: 0.6;
}

/* Multiple select styling */
#service[multiple] {
    min-height: 150px;
    padding: 1rem;
}

#service[multiple] option {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 4px;
    cursor: pointer;
}

#service[multiple] option:checked {
    background: var(--orange-primary);
    color: white;
}

/* Fix fieldset/legend black backgrounds */
.form-field fieldset,
.form-field legend,
.form-section fieldset,
.form-section legend {
    background: transparent !important;
    border: none !important;
}

/* Remove black box backgrounds from labels */
.form-field label,
.section-label {
    background: transparent !important;
}

/* Style single select dropdown options to be visible */
#service option {
    background: var(--dark-primary);
    color: white;
    padding: 0.5rem;
}

#service option:hover {
    background: rgba(214, 137, 16, 0.2);
}

/* Checkbox container for multi-select services */
.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.service-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.service-checkbox-item:hover {
    background: rgba(255, 140, 0, 0.1);
}

.service-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.service-checkbox-item label {
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin: 0;
}

.service-checkbox-item input[type="checkbox"]:checked + label {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Redesigned Form Sections */
.form-section-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--orange-primary);
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    font-weight: 700;
}

/* Inline form groups (for radio buttons next to labels) */
.form-inline-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.inline-label {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Field label for checkboxes */
.field-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Improved site header */
.site-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

/* Better site block styling */
.site-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

/* Remove old site-heading styles */
.site-heading {
    display: none;
}

/* Improve service checkboxes layout */
.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
}

.service-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-checkbox-item:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--orange-primary);
}

.service-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange-primary);
    cursor: pointer;
    margin: 0;
}

.service-checkbox-item span {
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
}

.service-checkbox-item:has(input:checked) {
    background: rgba(214, 137, 16, 0.15);
    border-color: var(--orange-primary);
}

.service-checkbox-item:has(input:checked) span {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Maps button full width in site block */
.site-block .btn-maps {
    width: 100%;
    margin: 0.75rem 0;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .service-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .form-inline-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   QUOTE PAGE STYLES
   ============================================ */

.quote-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--blue-secondary) 100%);
    text-align: center;
}

.quote-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.quote-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.quote-form-section {
    padding: 60px 0 100px;
    background: var(--dark-primary);
    min-height: 100vh;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-section-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-title-orange {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--orange-primary);
    margin: 0 0 1.25rem 0;
    font-weight: 700;
}

.form-inline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.label-orange {
    font-size: 1.05rem;
    color: var(--orange-primary);
    font-weight: 600;
}

.site-label {
    font-size: 1.1rem;
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-option:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--orange-primary);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.checkbox-option:has(input:checked) {
    background: rgba(214, 137, 16, 0.15);
    border-color: var(--orange-primary);
}

.checkbox-option:has(input:checked) span {
    color: var(--orange-primary);
    font-weight: 600;
}

.btn-maps-full {
    width: 100%;
    padding: 0.75rem;
    background: var(--orange-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin: 0.75rem 0;
    transition: all 0.3s;
}

.btn-maps-full:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.btn-submit-quote {
    width: 100%;
    padding: 1rem;
    background: var(--orange-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-submit-quote:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 137, 16, 0.4);
}

.form-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.nav-link-back {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-link-back:hover {
    color: var(--orange-primary);
}

@media (max-width: 640px) {
    .quote-hero-content h1 {
        font-size: 2rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .form-inline-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Quote CTA Box on Main Page */
.quote-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.quote-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.quote-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-get-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--orange-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.btn-get-quote:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(214, 137, 16, 0.5);
}

.or-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 140, 0, 0.3);
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.or-divider span {
    background: var(--dark-primary);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.quick-contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.quick-contact-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    color: #25D366;
}

.phone-btn:hover {
    background: rgba(0, 150, 255, 0.15);
    border-color: #0096FF;
    color: #0096FF;
}

.email-btn:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

@media (max-width: 640px) {
    .quote-cta-box {
        padding: 2rem;
    }
    
    .quote-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .btn-get-quote {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
    
    .quick-contact-options {
        grid-template-columns: 1fr;
    }
}

/* Quote Page Header Adjustments */
.quote-page-header {
    min-height: auto;
}


.quote-form-section {
    margin-top: -40px;
}

/* Make logo clickable */
.nav-brand {
    cursor: pointer;
    text-decoration: none;
}

/* Quote Page Hero - Better Spacing */
.quote-hero-diagonal {
    padding: 120px 0 60px !important;
    min-height: 40vh !important;
}

.quote-hero-diagonal .hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-hero-diagonal .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-hero-diagonal .hero-label {
    display: inline-flex;
}

.quote-hero-diagonal .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.quote-hero-diagonal .hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Optimize Form Section Spacing */
.quote-form-section {
    padding: 40px 0 80px !important;
    margin-top: 0 !important;
}

.quote-container {
    max-width: 900px;
}

.quote-form {
    padding: 2rem;
}

.form-section-box {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
}

.section-title-orange {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-inline-row {
    margin-bottom: 1rem;
}

/* Tighter spacing on mobile */
@media (max-width: 640px) {
    .quote-hero-diagonal {
        padding: 100px 0 40px !important;
        min-height: 35vh !important;
    }
    
    .quote-hero-diagonal .hero-title {
        font-size: 2.5rem;
    }
    
    .quote-form-section {
        padding: 20px 0 60px !important;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .form-section-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* Site Header with Remove Button */
.site-header-with-remove {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-remove-site {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 6px;
    color: #ff4d4d;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove-site:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: #ff4d4d;
    transform: translateY(-2px);
}

.btn-remove-site svg {
    width: 14px;
    height: 14px;
}

/* Add Site Button Styling */
.btn-add-site {
    width: 100%;
    padding: 0.85rem;
    background: rgba(214, 137, 16, 0.15);
    border: 2px dashed var(--orange-primary);
    border-radius: 8px;
    color: var(--orange-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-add-site:hover {
    background: rgba(214, 137, 16, 0.25);
    border-style: solid;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .site-header-with-remove {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .btn-remove-site {
        width: 100%;
        justify-content: center;
    }
}
/* ========================================
   GALLERY LIGHTBOX
   ======================================== */
.gallery-view-hint {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: rgba(255,255,255,0.8);
}

.gallery-item:hover .gallery-view-hint {
    opacity: 1;
}

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--orange-primary);
}

.lightbox-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.lightbox-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--orange-primary);
}

.lightbox-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    gap: 1rem;
    position: relative;
}

.lightbox-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
}

.lightbox-image {
    max-height: 60vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid var(--orange-primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    letter-spacing: 2px;
}

.lightbox-nav {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-nav:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
}

.lightbox-thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    width: 100%;
    justify-content: center;
}

.lightbox-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.9;
}

.lightbox-thumb.active {
    border-color: var(--orange-primary);
    opacity: 1;
    box-shadow: 0 0 10px rgba(214, 137, 16, 0.5);
}

.lightbox-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 2rem;
}

.lightbox-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.lightbox-empty p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.lightbox-empty span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Lightbox Mobile */
@media (max-width: 640px) {
    .lightbox-image {
        max-height: 50vh;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }

    .lightbox-header {
        padding: 0.75rem 1rem;
    }

    .lightbox-title {
        font-size: 1.1rem;
    }
}

/* ========================================
   MASTER MOBILE FIX - OVERRIDE ALL
   This must stay at the very bottom
   ======================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Force all containers to respect screen width */
    .nav-container,
    .hero-container,
    .section-container,
    .contact-container,
    .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Prevent any child from overflowing */
    .header,
    .hero-diagonal,
    .services-section,
    .gallery-section,
    .testimonials-section,
    .contact-section,
    .footer,
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Contact heading */
    .contact-info h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }

    /* Quote CTA box */
    .quote-cta-box {
        padding: 1.5rem !important;
    }

    .quote-cta-box h3 {
        font-size: 1.4rem;
    }

    .btn-get-quote {
        font-size: 0.95rem !important;
        padding: 0.9rem 1.2rem !important;
        white-space: nowrap;
    }

    /* Trust indicators */
    .trust-indicators {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}