/* =========================================
   LogisticsVIG — Design System
   Palette: Navy #19315b | Orange #e7904e | White #ffffff
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --navy: #19315b;
    --navy-mid: #1f3e73;
    --navy-light: #254a88;
    --navy-dark: #0f1e38;
    --orange: #e7904e;
    --orange-dark: #cf7235;
    --orange-light: #f0a876;
    --white: #ffffff;

    /* Semantic Aliases */
    --primary: var(--orange);
    --primary-dark: var(--orange-dark);
    --bg: var(--navy-dark);
    --surface: var(--navy);
    --surface-alt: var(--navy-mid);
    --text-primary: var(--white);
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-faint: rgba(255, 255, 255, 0.35);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: var(--orange);

    /* Effects */
    --glass: rgba(25, 49, 91, 0.6);
    --glass-light: rgba(255, 255, 255, 0.04);
    --shadow-orange: 0 20px 40px rgba(231, 144, 78, 0.2);
    --shadow-navy: 0 20px 40px rgba(15, 30, 56, 0.5);

    /* Layout */
    --section-padding: 110px 7%;
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

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

ul {
    list-style: none;
}

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

/* =========================================
   UTILITY
   ========================================= */
.highlight {
    color: var(--orange);
}

.tag {
    display: inline-block;
    background: rgba(231, 144, 78, 0.12);
    border: 1px solid rgba(231, 144, 78, 0.3);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(231, 144, 78, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(231, 144, 78, 0.06);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy-light);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* =========================================
   NAVBAR
   ========================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    padding: 14px 7%;
    background: rgba(15, 30, 56, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-navy);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo span {
    color: var(--orange);
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer logo can be slightly larger */
.footer-brand .logo-img {
    height: 46px;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links li a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--white);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 7%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(15, 30, 56, 0.92) 40%,
            rgba(15, 30, 56, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 38px;
    max-width: 520px;
    line-height: 1.8;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-faint);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
    background: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0 7%;
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(231, 144, 78, 0.05);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* =========================================
   SECTIONS COMMON
   ========================================= */
section {
    padding: var(--section-padding);
}

.section-badge {
    display: inline-block;
    background: rgba(231, 144, 78, 0.1);
    border: 1px solid rgba(231, 144, 78, 0.25);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 56px;
    line-height: 1.8;
}

.section-header-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 520px;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.04);
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--orange);
    color: white;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.check-item i {
    color: var(--orange);
    flex-shrink: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
    background: var(--navy);
}

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

.service-card {
    background: var(--navy-dark);
    border: 1px solid var(--border);
    padding: 38px 34px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    border-color: rgba(231, 144, 78, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(231, 144, 78, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--orange);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: white;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

.coverage-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
}

.coverage-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coverage-img-wrapper:hover img {
    transform: scale(1.04);
}

.coverage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.cov-stat {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
    text-align: center;
    transition: var(--transition);
}

.cov-stat:hover {
    border-color: var(--orange);
    background: rgba(231, 144, 78, 0.05);
}

.cov-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    display: block;
}

.cov-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =========================================
   RECRUITMENT
   ========================================= */
.recruitment-section {
    background: var(--navy);
}

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

.recruitment-content .section-subtitle {
    margin-bottom: 32px;
}

.perks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(231, 144, 78, 0.05);
    border: 1px solid rgba(231, 144, 78, 0.15);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: var(--transition);
}

.perk-item:hover {
    border-color: rgba(231, 144, 78, 0.4);
}

.perk-icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.perk-item h5 {
    font-size: 0.88rem;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: var(--white);
}

.perk-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Recruitment Form */
.recruit-form-card {
    background: var(--navy-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
}

.recruit-form-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.recruit-form-card .form-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-faint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(25, 49, 91, 0.8);
    box-shadow: 0 0 0 3px rgba(231, 144, 78, 0.12);
}

.form-group select option {
    background: var(--navy);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.95rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 80px 7% 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(231, 144, 78, 0.08);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-line i {
    color: var(--orange);
    flex-shrink: 0;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* =========================================
   PAGE LOADER
   ========================================= */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: min(480px, 90vw);
}

.loader-logo {
    height: 64px;
    width: auto;
    animation: loaderPulse 1.8s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.96);
    }
}

/* Road scene */
.loader-road-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loader-road {
    position: relative;
    width: 100%;
    height: 48px;
    background: var(--navy);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Animated dashes (road markings) */
.loader-dashes {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 200%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            var(--orange) 0px,
            var(--orange) 20px,
            transparent 20px,
            transparent 40px);
    animation: dashesScroll 0.6s linear infinite;
    opacity: 0.35;
}

@keyframes dashesScroll {
    from {
        transform: translateY(-50%) translateX(0);
    }

    to {
        transform: translateY(-50%) translateX(-80px);
    }
}

/* Truck moving across the road */
.loader-truck {
    position: absolute;
    bottom: 6px;
    left: -80px;
    width: 80px;
    height: auto;
    animation: truckDrive 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    filter: drop-shadow(0 2px 6px rgba(231, 144, 78, 0.4));
}

@keyframes truckDrive {
    0% {
        left: -80px;
    }

    100% {
        left: 100%;
    }
}

/* Progress bar */
.loader-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-light));
    border-radius: 3px;
    transition: width 0.2s ease;
}

/* "Cargando..." text */
.loader-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.loader-dots span {
    display: inline-block;
    animation: dotBounce 1.2s ease-in-out infinite;
    opacity: 0;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px 5%;
    }

    .about-grid,
    .coverage-grid,
    .recruitment-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        direction: ltr;
    }

    .about-img-wrapper,
    .coverage-img-wrapper {
        height: 320px;
    }

    .coverage-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    nav .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .recruit-form-card {
        padding: 28px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 1001;
    /* must be above nav (1000) so close button is clickable */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--orange);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 7%;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    line-height: 1;
}

/* =========================================
   ACTIVE NAV LINK
   ========================================= */
.nav-links li a.active {
    color: var(--white);
}

.nav-links li a.active::after {
    width: 100%;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    background: var(--navy);
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    transition: var(--transition);
    margin: 0;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(231, 144, 78, 0.35);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-faint);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    background: var(--navy-dark);
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: start;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: rgba(231, 144, 78, 0.3);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(231, 144, 78, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.contact-map iframe {
    display: block;
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 86px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 900;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #25d366;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--navy-mid);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 8000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* =========================================
   RESPONSIVE — NEW SECTIONS
   ========================================= */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .contact-form-card {
        padding: 28px;
    }

    .whatsapp-btn {
        bottom: 82px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* =========================================
   HERO PARTICLES
   ========================================= */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0;
    animation: heroParticle linear infinite;
}

/* Alternate: ring particles */
.hero-particles span:nth-child(even) {
    background: transparent;
    border: 1.5px solid var(--orange);
    width: 7px;
    height: 7px;
    animation-name: heroParticlePulse;
}

.hero-particles span:nth-child(1) {
    left: 8%;
    top: 28%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 22%;
    top: 64%;
    animation-duration: 13s;
    animation-delay: 1.5s;
}

.hero-particles span:nth-child(3) {
    left: 38%;
    top: 42%;
    animation-duration: 8s;
    animation-delay: 0.8s;
}

.hero-particles span:nth-child(4) {
    left: 55%;
    top: 25%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.hero-particles span:nth-child(5) {
    left: 70%;
    top: 72%;
    animation-duration: 9.5s;
    animation-delay: 0.3s;
}

.hero-particles span:nth-child(6) {
    left: 84%;
    top: 38%;
    animation-duration: 14s;
    animation-delay: 1.2s;
}

.hero-particles span:nth-child(7) {
    left: 14%;
    top: 80%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.hero-particles span:nth-child(8) {
    left: 62%;
    top: 55%;
    animation-duration: 7.5s;
    animation-delay: 0.6s;
}

@keyframes heroParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    15% {
        opacity: 0.55;
    }

    85% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-70px) scale(0.3);
    }
}

@keyframes heroParticlePulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.8);
    }
}

/* =========================================
   SLOPE DIVIDERS
   ========================================= */
.slope-divider {
    height: 52px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

/* navy → navy-dark (diagonal going to dark) */
.slope-to-dark {
    background: var(--navy);
}

.slope-to-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy-dark);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/* navy-dark → navy (diagonal going to light) */
.slope-to-navy {
    background: var(--navy-dark);
}

.slope-to-navy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* =========================================
   CERTIFICATIONS STRIP
   ========================================= */
.certs-strip {
    background: var(--navy-dark);
    /* border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); */
    padding: 28px 0 24px;
    overflow: hidden;
}

.certs-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.certs-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.certs-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: certsScroll 28s linear infinite;
}

.certs-track:hover {
    animation-play-state: paused;
}

@keyframes certsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.cert-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s, color 0.3s;
    cursor: default;
}

.cert-item i {
    color: var(--orange);
    flex-shrink: 0;
}

.cert-item:hover {
    border-color: rgba(231, 144, 78, 0.4);
    color: var(--white);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    background: var(--navy-dark);
    padding: var(--section-padding);
}

.faq-list {
    max-width: 820px;
    margin: 60px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(231, 144, 78, 0.4);
}

.faq-item summary {
    list-style: none;
    padding: 20px 28px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::-moz-list-bullet {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s ease;
    width: 24px;
    text-align: center;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-body {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.faq-body strong {
    color: var(--orange);
}

@media (max-width: 768px) {
    .faq-list {
        margin-top: 40px;
    }

    .faq-item summary {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    .faq-body {
        padding: 0 20px 20px;
        padding-top: 14px;
    }
}

/* Captcha */

.grecaptcha-badge {
    visibility: hidden !important;
}