/* Smooth floating animation for Emergency Call button */
.btn-bounce {
    animation: btnFloat 2.2s ease-in-out infinite;
}
@keyframes btnFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 24px 0 rgba(208,171,56,0.18);
    }
    20% {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 12px 32px 0 rgba(208,171,56,0.22);
    }
    40% {
        transform: translateY(-14px) scale(1.07);
        box-shadow: 0 18px 36px 0 rgba(208,171,56,0.25);
    }
    60% {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 12px 32px 0 rgba(208,171,56,0.22);
    }
    80% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 24px 0 rgba(208,171,56,0.18);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 24px 0 rgba(208,171,56,0.18);
    }
}
/* Mobile-only phone icon in navbar */
.nav-phone-mobile {
    display: none;
    margin-left: 15px;
    margin-right: 0;
    font-size: 1.5rem;
    color: var(--gold-border);
    background: rgba(255,255,255,0.08);
    border: 2px solid var(--gold-border);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.nav-phone-mobile:hover {
    background: var(--gold-border);
    color: var(--primary-black);
}
/* ============================================
   TITAN RECOVERY SERVICES - CUSTOM STYLES
   Author: Built with fire
   ============================================ */

/* ============================================
   CSS VARIABLES (CUSTOM PROPERTIES)
   ============================================ */
:root {
    /* Colors */
    --primary-black: #212121;
    --gold-border: #d0ab38;
    --logo-bg: #a8a6a9;
    --white: #ffffff;
    --emergency-green: #25D366;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-gray: #333;
    
    /* Fonts */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Bebas Neue', cursive;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 20px rgba(208, 171, 56, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c29b2e;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: var(--container-padding);
}

.text-gold {
    color: var(--gold-border);
    position: relative;
    display: inline-block;
}

.text-gold::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-border), transparent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold-border);
    color: var(--primary-black);
    border-color: var(--gold-border);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-border);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-emergency {
    background: #e74c3c;
    color: var(--white);
    border-color: #e74c3c;
}

.btn-emergency:hover {
    background: #c0392b;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--emergency-green);
    color: var(--white);
    border-color: var(--emergency-green);
}

.btn-whatsapp:hover {
    background: #1fa855;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-next,
.btn-submit {
    background: var(--gold-border);
    color: var(--primary-black);
    border-color: var(--gold-border);
    width: 100%;
    justify-content: center;
}

.btn-back {
    background: transparent;
    color: var(--white);
    border-color: var(--border-gray);
    width: 100%;
    justify-content: center;
}

.btn-back:hover {
    border-color: var(--gold-border);
    color: var(--gold-border);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-submit-contact {
    width: 100%;
    justify-content: center;
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 171, 56, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(208, 171, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(208, 171, 56, 0);
    }
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-box {
    border: 3px solid var(--gold-border);
    background: var(--logo-bg);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

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

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-box h2 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--primary-black);
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.6rem;
    color: var(--primary-black);
    letter-spacing: 2px;
    display: block;
    text-align: center;
    margin-top: 2px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-border);
    color: var(--gold-border);
    transform: scale(1.05);
}

.nav-phone i {
    font-size: 1.3rem;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border: 2px solid var(--gold-border);
    border-radius: var(--radius-sm);
    background: rgba(208, 171, 56, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-animation {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--primary-black), 
        var(--dark-gray), 
        var(--primary-black),
        #2a2a2a
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(208, 171, 56, 0.1);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInLeft 1s ease 0.2s both;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--logo-bg);
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--logo-bg);
}

.feature-item i {
    color: var(--gold-border);
    font-size: 1.3rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

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

.truck-showcase {
    position: relative;
    padding: 20px;
}

.truck-frame {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(208, 171, 56, 0.1), rgba(168, 166, 169, 0.1));
    border: 3px solid var(--gold-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.truck-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(208, 171, 56, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.truck-frame i {
    font-size: 8rem;
    color: var(--gold-border);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

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

.truck-frame span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--logo-bg);
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background: var(--primary-black);
    border: 2px solid var(--gold-border);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s ease-in-out infinite;
}

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

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1s;
}

.floating-badge i {
    color: var(--gold-border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 2s ease 1s both;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold-border);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-border);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--logo-bg);
    letter-spacing: 2px;
}

/* ============================================
   BOOKING SECTION COMPACT (MOVED AFTER HERO)
   ============================================ */
.booking-section-compact {
    padding: 60px 0;
    background: var(--dark-gray);
    border-top: 2px solid var(--border-gray);
}

.booking-container-compact {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    background: var(--primary-black);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.form-step h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-gray);
    font-size: 1.5rem;
}

.form-step h3 i {
    color: var(--gold-border);
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-option:hover .service-option-content {
    border-color: var(--gold-border);
    background: rgba(208, 171, 56, 0.05);
}

.service-option input[type="radio"]:checked + .service-option-content {
    border-color: var(--gold-border);
    background: rgba(208, 171, 56, 0.1);
    box-shadow: var(--shadow-gold);
}

.service-option-content i {
    font-size: 2rem;
    color: var(--gold-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--logo-bg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-border);
    background: rgba(208, 171, 56, 0.05);
}

.form-group select {
    cursor: pointer;
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--white);
    font-weight: 500;
}

.checkbox-label:hover,
.radio-label:hover {
    border-color: var(--gold-border);
    background: rgba(208, 171, 56, 0.05);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold-border);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + span,
.radio-label input[type="radio"]:checked + span {
    color: var(--gold-border);
}

.checkbox-label:has(input[type="checkbox"]:checked),
.radio-label:has(input[type="radio"]:checked),
.checkbox-label.checked,
.radio-label.checked {
    border-color: var(--gold-border);
    background: rgba(208, 171, 56, 0.1);
}

.checkbox-label span,
.radio-label span {
    flex: 1;
    user-select: none;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Progress Bar */
.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.progress-step.active .progress-circle {
    background: var(--gold-border);
    border-color: var(--gold-border);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
}

.progress-step span {
    font-size: 0.85rem;
    color: var(--logo-bg);
    font-weight: 600;
}

.progress-step.active span {
    color: var(--gold-border);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--border-gray);
    margin: 0 -10px;
    margin-top: -30px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--primary-black);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(208, 171, 56, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: var(--gold-border);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold-border);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--logo-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-border);
    background: rgba(208, 171, 56, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}

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

.section-description {
    font-size: 1.2rem;
    color: var(--logo-bg);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION (SIMPLE CARDS WITH IMAGES)
   ============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-simple {
    background: var(--primary-black);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card-simple:hover {
    border-color: var(--gold-border);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(208, 171, 56, 0.1), rgba(168, 166, 169, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image i {
    font-size: 4rem;
    color: var(--gold-border);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card-simple:hover .service-image i {
    transform: scale(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(208, 171, 56, 0.05), rgba(33, 33, 33, 0.3));
    z-index: 1;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-content p {
    color: var(--logo-bg);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION (NEW)
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.testimonials-scroll-container {
    position: relative;
    padding: 40px 0;
}

.testimonials-scroll {
    display: flex;
    /* gap: 30px; */
    overflow-x: auto;
    scroll-behavior: smooth;
    /* padding: 20px 50px; */
    scrollbar-width: none;
}

/* ============================================
   FLEET SECTION (RECTANGLE CARDS)
   ============================================ */
.fleet-section {
    padding: var(--section-padding);
    background: var(--dark-gray);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.fleet-rect-card {
    background: var(--primary-black);
    border: 2px solid var(--gold-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(208,171,56,0.08);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    position: relative;
    min-height: 260px;
}
.fleet-rect-card:hover {
    box-shadow: 0 8px 32px rgba(208,171,56,0.18);
    border-color: #fffbe6;
    transform: translateY(-8px) scale(1.03);
}
.fleet-rect-icon {
    font-size: 2.8rem;
    color: var(--gold-border);
    margin-bottom: 18px;
}
.fleet-rect-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}
.fleet-rect-desc {
    color: var(--logo-bg);
    font-size: 1.05rem;
    margin-bottom: 18px;
    flex: 1;
}
.fleet-rect-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid #2ecc71;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.98rem;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(46,204,113,0.08);
}
.fleet-rect-badge i {
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@media (max-width: 900px) {
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .fleet-rect-card {
        padding: 24px 14px 18px 14px;
        min-height: 180px;
    }
    .fleet-rect-icon {
        font-size: 2rem;
    }
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-border);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.why-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(208, 171, 56, 0.2), rgba(208, 171, 56, 0.05));
    border: 2px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-border);
    transition: var(--transition-bounce);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.why-card p {
    color: var(--logo-bg);
    line-height: 1.8;
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-section {
    padding: var(--section-padding);
    background: var(--dark-gray);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    margin-bottom: 20px;
}

.coverage-text p {
    color: var(--logo-bg);
    margin-bottom: 30px;
}

.coverage-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.coverage-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.coverage-feature i {
    color: var(--gold-border);
    font-size: 1.2rem;
}

.coverage-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(208, 171, 56, 0.05), rgba(168, 166, 169, 0.05));
    border: 3px solid var(--gold-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder > i {
    font-size: 8rem;
    color: var(--gold-border);
    opacity: 0.3;
}

.map-pin {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: pinDrop 2s ease infinite;
}

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

.map-pin i {
    font-size: 3rem;
    color: #e74c3c;
}

.map-pin span {
    background: var(--primary-black);
    padding: 8px 15px;
    border-radius: 50px;
    border: 2px solid var(--gold-border);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.coverage-radius {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 2px dashed var(--gold-border);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-radius 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes pulse-radius {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* ============================================
   CONTACT SECTION (NEW)
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box {
    background: var(--dark-gray);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 30px;
}

.contact-info-box h3 {
    margin-bottom: 25px;
    color: var(--gold-border);
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(208, 171, 56, 0.2), rgba(208, 171, 56, 0.05));
    border: 2px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold-border);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--logo-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p,
.contact-text a {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-text a:hover {
    color: var(--gold-border);
}

.google-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--gold-border);
    box-shadow: var(--shadow-lg);
}

.google-map iframe {
    display: block;
    border-radius: var(--radius-sm);
}

.contact-right {
    background: var(--dark-gray);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 40px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--logo-bg);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-border);
    background: rgba(208, 171, 56, 0.05);
}

.contact-form textarea {
    resize: vertical;
}

/* Custom select dropdown background and option colors */
select, select option, select optgroup {
    background-color: #181818 !important;
    color: #fff !important;
}

select:focus, select:active {
    background-color: #181818 !important;
    color: #fff !important;
}

/* For Webkit browsers (Chrome, Safari) */
select::-webkit-input-placeholder { color: #fff; }
select option { background: #181818; color: #fff; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-gray);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--gold-border);
    font-size: 1.3rem;
}

.footer-col p {
    color: var(--logo-bg);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--logo-bg);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-border);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--gold-border);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--logo-bg);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gold-border);
    border-color: var(--gold-border);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--emergency-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .coverage-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-phone-mobile {
        display: flex;
    }
    .nav-center {
        display: none;
    }
    .nav-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-scroll-btn,
    .testimonial-scroll-btn {
        display: none;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .booking-progress {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .progress-step span {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-badge {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .badge-1,
    .badge-2 {
        position: static;
        margin: 10px auto;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .contact-right {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .logo-box h2 {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .truck-frame i {
        font-size: 5rem;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */
@media (max-width: 768px) {
    .nav-right {
        position: fixed;
        top: 80px;
        right: -100%;
        background: rgba(33, 33, 33, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px;
        border-radius: 12px 0 0 12px;
        box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-right.active {
        right: 0;
    }
}