/* =============================================
   RAMPLAS 24 HORAS - Improved Stylesheet v2
   ============================================= */

/* Variables & Reset */
:root {
    --primary: #FF6B00;
    --primary-dark: #e65100;
    --primary-glow: rgba(255, 107, 0, 0.3);
    --dark-bg: #0a0a0a;
    --dark-surface: #141414;
    --dark-surface-2: #1c1c1c;
    --light-text: #f5f5f5;
    --gray-text: #a8a8a8;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --nav-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.section-padding {
    padding: 100px 0;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.text-center .section-tag {
    padding-left: 0;
}

.text-center .section-tag::before {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.88rem;
    letter-spacing: 1px;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: white;
    color: var(--dark-bg);
    border-color: white;
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(10, 10, 10, 0.9);
    height: var(--nav-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* LOGO - Requires the cropped logo.png (864x244, transparent bg) */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.logo:hover img {
    filter: brightness(1.15);
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

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

.nav-link:hover::after {
    width: 100%;
}

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

.btn-contact {
    background: var(--primary);
    padding: 10px 24px;
    border-radius: 6px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(255, 107, 0, 0.25);
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('hero.png') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-height);
    padding-bottom: 40px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 620px;
    margin-bottom: 40px;
    color: #ccc;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Trust Badges */
.hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.service-card {
    background: var(--dark-surface);
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 18px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: rgba(255, 107, 0, 0.15);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-text);
    max-width: 500px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ===== FLEET SHOWCASE ===== */
.fleet {
    background: var(--dark-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.fleet-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-slow);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 0, 0.2);
}

.fleet-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.fleet-info {
    padding: 24px 28px;
}

.fleet-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-info h3 i {
    color: var(--primary);
    font-size: 1rem;
}

.fleet-info p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    background-color: var(--dark-surface);
}

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

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    padding: 18px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.exp-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-text .section-tag {
    margin-bottom: 12px;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.features-list {
    margin: 28px 0;
}

.features-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.features-list i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== STATS BANNER ===== */
.stats-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('hero.png') center/cover fixed;
    padding: 70px 0;
    text-align: center;
}

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

.stat-item {
    padding: 20px;
}

.stat-item .counter {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: white;
}

.stat-item .stat-suffix {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--primary);
    font-weight: bold;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ===== CLIENTS ===== */
.clients {
    background: var(--dark-bg);
    padding: 70px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.clients .section-header {
    margin-bottom: 0;
}

.clients .section-header h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: var(--transition);
}

.client-logo:hover {
    transform: scale(1.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.65;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-item i {
    width: 52px;
    height: 52px;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover i {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.info-item h4 {
    margin-bottom: 4px;
    font-size: 1rem;
    text-transform: none;
}

.info-item a {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    font-size: 1.1rem;
}

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

.contact-form-box {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.4rem;
    margin-bottom: 28px;
    text-align: center;
    text-transform: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-bg);
    border: 1px solid var(--border-subtle);
    color: white;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a8a8a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* ===== FOOTER ===== */
footer {
    background: #050505;
    padding: 40px 0 30px;
    text-align: center;
    color: var(--gray-text);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer Logo */
.footer-logo {
    height: 55px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== FLOATING ACTION BUTTONS ===== */

/* Phone Call Button */
.phone-float {
    position: fixed;
    bottom: 102px;
    right: 30px;
    background: var(--primary);
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    z-index: 10000;
    transition: var(--transition);
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5);
    color: white;
    background: var(--primary-dark);
}

/* Phone Tooltip */
.phone-tooltip {
    position: absolute;
    right: 68px;
    background: white;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.phone-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid white;
}

.phone-float:hover .phone-tooltip {
    opacity: 1;
}

/* Phone ring animation */
.phone-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    z-index: -1;
    animation: phonePulse 2.5s ease-out infinite;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: var(--transition);
}

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

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: white;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* WhatsApp Pulse */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

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

/* Tablet */
@media (max-width: 992px) {
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .clients-grid {
        gap: 16px 24px;
    }

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

    .section-padding {
        padding: 70px 0;
    }

    .hero-trust {
        gap: 20px;
    }

    .logo img {
        height: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navbar mobile */
    .logo img {
        height: 44px;
    }

    .hero-content {
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 30px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - var(--nav-height));
        padding: 40px 24px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 8px;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        padding: 14px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .nav-menu .nav-link:hover {
        background: var(--dark-surface);
    }

    .nav-menu .btn-contact {
        text-align: center;
        justify-content: center;
        margin-top: 10px;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero mobile - centered, no clipping */
    .hero {
        min-height: 100svh;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn {
        justify-content: center;
        text-align: center;
        padding: 14px 24px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    /* Services mobile - single column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 22px;
    }

    /* Fleet mobile */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-info {
        padding: 20px 22px;
    }

    /* Clients mobile */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 18px;
    }

    .client-logo {
        height: 42px;
    }

    /* Stats mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-banner {
        padding: 50px 0;
        background-attachment: scroll;
    }

    /* About mobile */
    .about-image {
        max-width: 100%;
    }

    .exp-badge {
        bottom: 12px;
        right: 12px;
        padding: 14px 16px;
    }

    .exp-badge .years {
        font-size: 2rem;
    }

    /* Contact mobile */
    .contact-wrapper {
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-box {
        padding: 28px 20px;
    }

    /* Footer mobile */
    .footer-links {
        gap: 16px;
    }

    .footer-logo {
        height: 45px;
    }

    /* Floating buttons mobile */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 18px;
    }

    .phone-float {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        bottom: 82px;
        right: 20px;
    }

    .whatsapp-tooltip,
    .phone-tooltip {
        display: none;
    }

    /* Reduce animation distances on mobile */
    .reveal-left {
        transform: translateX(-20px);
    }

    .reveal-right {
        transform: translateX(20px);
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .logo img {
        height: 38px;
    }

    .hero-content {
        padding-top: calc(var(--nav-height) + 30px);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.82rem;
    }

    .stat-item .counter,
    .stat-item .stat-suffix {
        font-size: 2.2rem;
    }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
