/* ============================================================
   HEZA TRANSPORTE - LANDING PAGE
   Archivo: assets/css/heza-transporte.css
============================================================ */

/* ============================================================
   VARIABLES
============================================================ */

:root {
    --heza-dark: #111827;
    --heza-dark-soft: #1f2937;
    --heza-accent: #f59e0b;
    --heza-accent-dark: #d97706;
    --heza-light: #f8fafc;
    --heza-muted: #6b7280;
    --heza-border: #e5e7eb;
    --heza-white: #ffffff;

    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #1ebe5d;
    --whatsapp-green-deep: #128C7E;

    --heza-radius-sm: 14px;
    --heza-radius-md: 22px;
    --heza-radius-lg: 30px;

    --heza-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --heza-shadow-strong: 0 22px 70px rgba(15, 23, 42, 0.12);
}

/* ============================================================
   BASE
============================================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--heza-dark);
    background: var(--heza-white);
}

img {
    max-width: 100%;
}

a {
    transition: all 0.2s ease;
}

section[id] {
    scroll-margin-top: 90px;
}

/* ============================================================
   BOTONES
============================================================ */

.btn-heza {
    background: var(--heza-accent);
    border-color: var(--heza-accent);
    color: var(--heza-dark);
    font-weight: 700;
}

.btn-heza:hover,
.btn-heza:focus {
    background: var(--heza-accent-dark);
    border-color: var(--heza-accent-dark);
    color: var(--heza-white);
}

.btn-outline-heza {
    color: var(--heza-white);
    border-color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--heza-white);
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: var(--whatsapp-green-dark);
    border-color: var(--whatsapp-green-dark);
    color: var(--heza-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.36);
}

.btn-whatsapp:active {
    background: var(--whatsapp-green-deep) !important;
    border-color: var(--whatsapp-green-deep) !important;
    color: var(--heza-white) !important;
    transform: translateY(0);
}

.btn-whatsapp i {
    color: var(--heza-white);
}

.btn-outline-heza:hover,
.btn-outline-heza:focus {
    background: var(--heza-white);
    border-color: var(--heza-white);
    color: var(--heza-dark);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */

.navbar-heza {
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.16);
}

.navbar-heza .navbar-brand {
    color: var(--heza-white);
    letter-spacing: -0.02em;
}

.navbar-heza .navbar-brand:hover {
    color: var(--heza-white);
}

.navbar-heza .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.navbar-heza .nav-link:hover,
.navbar-heza .nav-link:focus,
.navbar-heza .nav-link.active {
    color: var(--heza-accent);
}

.navbar-heza .navbar-toggler {
    border: none;
    box-shadow: none;
}

/* ============================================================
   HERO
============================================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--heza-dark);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.66));
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -18% auto;
    width: 520px;
    height: 520px;
    background: rgba(245, 158, 11, 0.16);
    border-radius: 999px;
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--heza-white);
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
    font-weight: 600;
}

.hero h1 {
    color: var(--heza-white);
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    font-weight: 850;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    max-width: 620px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 24px;
    color: var(--heza-white);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

/* ============================================================
   SECCIONES
============================================================ */

.section-padding {
    padding: 90px 0;
}

.section-kicker {
    color: var(--heza-accent-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 1;
}

.section-text {
    color: var(--heza-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================================
   FLOTA
============================================================ */

.fleet-section {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 32%),
        var(--heza-light);
}

.fleet-card {
    background: var(--heza-white);
    border-radius: var(--heza-radius-lg);
    overflow: hidden;
    border: 1px solid var(--heza-border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.fleet-image {
    height: 330px;
    background: #e5e7eb;
    overflow: hidden;
    position: relative;
}

.fleet-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(17, 24, 39, 0.16));
    pointer-events: none;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-content {
    padding: 28px;
}

.fleet-category {
    color: var(--heza-accent-dark);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fleet-title {
    font-size: 1.8rem;
    font-weight: 850;
    margin: 8px 0;
    letter-spacing: -0.03em;
}

.fleet-description {
    color: var(--heza-muted);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--heza-dark-soft);
}

.feature-list i {
    color: var(--heza-accent-dark);
}

/* ============================================================
   SWIPER
============================================================ */

.fleetSwiper {
    padding: 6px 4px 56px;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    width: 46px;
    height: 46px;
    color: var(--heza-dark);
    background: var(--heza-white);
    border: 1px solid var(--heza-border);
    border-radius: 999px;
    box-shadow: var(--heza-shadow-soft);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 800;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    background: var(--heza-accent);
    opacity: 1;
}

/* ============================================================
   SERVICIOS
============================================================ */

.service-card {
    height: 100%;
    border: 1px solid var(--heza-border);
    border-radius: 24px;
    padding: 28px;
    background: var(--heza-white);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: var(--heza-shadow-soft);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--heza-accent-dark);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

/* ============================================================
   OPERACIÓN Y SEGURIDAD
============================================================ */

.operation-section {
    background:
        linear-gradient(120deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.86)),
        url("../img/hero/operacion-transporte.jpg") center/cover no-repeat;
    color: var(--heza-white);
    position: relative;
    overflow: hidden;
}

.operation-section::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -10%;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    filter: blur(18px);
}

.operation-section .container {
    position: relative;
    z-index: 2;
}

.operation-section .section-text {
    color: rgba(255, 255, 255, 0.75);
}

.operation-item {
    padding: 22px;
    border-radius: var(--heza-radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.operation-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   CONTACTO
============================================================ */

.contact-section {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 30%),
        var(--heza-light);
}

.contact-box {
    background: var(--heza-white);
    border-radius: var(--heza-radius-lg);
    border: 1px solid var(--heza-border);
    box-shadow: var(--heza-shadow-strong);
    padding: 34px;
}

.contact-box .form-label {
    font-weight: 700;
    color: var(--heza-dark-soft);
}

.contact-box .form-control,
.contact-box .form-select {
    border-color: var(--heza-border);
    border-radius: 14px;
}

.contact-box .form-control:focus,
.contact-box .form-select:focus {
    border-color: var(--heza-accent);
    box-shadow: 0 0 0 0.22rem rgba(245, 158, 11, 0.18);
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: var(--heza-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 38px 0;
}

.footer a {
    color: var(--heza-white);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    color: var(--heza-accent);
}

/* ============================================================
   LISTAS DESTACADAS
============================================================ */

.hero-list,
.service-list {
    list-style: none;
    padding: 0;
}

.hero-list {
    display: grid;
    gap: 10px;
    max-width: 560px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.hero-list i {
    color: var(--heza-accent);
}

.service-list {
    display: grid;
    gap: 9px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--heza-dark-soft);
    font-size: 0.96rem;
    line-height: 1.45;
}

.service-list i {
    color: var(--heza-accent-dark);
    margin-top: 3px;
    font-size: 0.9rem;
}

.navbar-heza.navbar-scrolled {
    background: rgba(17, 24, 39, 0.98);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.22);
}

/* ============================================================
   VISTA FLOTA COMPLETA
============================================================ */

.fleet-page-hero {
    min-height: 56vh;
    padding: 150px 0 80px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.7)),
        url("../img/hero/hero-transporte.jpg") center/cover no-repeat;
    color: var(--heza-white);
}

.fleet-page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% auto;
    width: 480px;
    height: 480px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.16);
    filter: blur(22px);
    pointer-events: none;
}

.fleet-page-hero .container {
    position: relative;
    z-index: 2;
}

.fleet-page-hero h1 {
    color: var(--heza-white);
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.fleet-page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 720px;
}

.fleet-count-box {
    display: inline-block;
    min-width: 190px;
    padding: 24px;
    border-radius: var(--heza-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--heza-white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fleet-grid-card {
    display: flex;
    flex-direction: column;
}

.fleet-grid-card .fleet-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-grid-card .fleet-content .mt-4 {
    margin-top: auto !important;
}

.fleet-cta {
    background: var(--heza-light);
    padding: 0 0 90px;
}

.fleet-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 36px;
    border-radius: var(--heza-radius-lg);
    background:
        linear-gradient(120deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.86));
    color: var(--heza-white);
    box-shadow: var(--heza-shadow-strong);
}

.fleet-cta-box p {
    color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {
    .hero h1 {
        font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 120px 0 70px;
        min-height: auto;
    }

    .hero-card {
        margin-top: 30px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .fleet-image {
        height: 260px;
    }

    .navbar-heza .navbar-collapse {
        padding: 16px 0 8px;
    }

    .navbar-heza .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar-heza .nav-link {
        padding: 10px 0;
    }

    .fleet-page-hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .fleet-count-box {
        display: block;
        text-align: left;
    }

    .fleet-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero {
        text-align: left;
    }

    .hero h1 {
        letter-spacing: -0.045em;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        letter-spacing: -0.04em;
    }

    .fleet-content,
    .contact-box {
        padding: 24px;
    }

    .fleet-title {
        font-size: 1.55rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero {
        padding-top: 110px;
    }

    .hero-badge {
        font-size: 0.88rem;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .fleet-image {
        height: 220px;
    }

    .service-card,
    .operation-item {
        padding: 22px;
    }

    .footer {
        text-align: center;
    }

    .footer .text-md-end a {
        display: inline-block;
        margin: 6px 8px !important;
    }

    .fleet-page-hero h1 {
        font-size: 2.35rem;
    }

    .fleet-cta {
        padding-bottom: 60px;
    }

    .fleet-cta-box {
        padding: 26px;
    }
}