/*
Theme Name:        Access Logistics
Theme URI:         https://accesslogistics.tech
Author:            Access Logistics Burundi
Author URI:        https://accesslogistics.tech
Description:       Thème officiel d'Access Logistics — Transport, Immobilier, Automobile au Burundi. Conçu pour la performance, le SEO et l'expérience utilisateur.
Version:           1.0.0
Requires at least: 6.0
Requires PHP:      8.0
License:           Proprietary
License URI:       https://accesslogistics.tech
Text Domain:       access-logistics
Tags:              custom, logistics, burundi, transport, responsive

--- Access Logistics Custom Theme ---
Palette officielle issue du logo :
  Rouge     : #E42313
  Bleu      : #1B3F8B
  Sombre    : #0B1220
  Blanc     : #FFFFFF
  Gris clair: #F5F7FA
*/

/* ════════════════════════════════════════════
   VARIABLES CSS
════════════════════════════════════════════ */
:root {
    /* Couleurs officielles du logo */
    --al-red:         #E42313;
    --al-red-dark:    #B51C0E;
    --al-red-light:   #FDECEA;
    --al-blue:        #1B3F8B;
    --al-blue-dark:   #102A5E;
    --al-blue-light:  #EBF0FA;
    --al-dark:        #0B1220;
    --al-dark2:       #12213A;

    /* Neutres */
    --al-white:       #FFFFFF;
    --al-offwhite:    #F5F7FA;
    --al-light:       #EEF1F6;
    --al-gray:        #7A8499;
    --al-gray2:       #B8C1D4;
    --al-text:        #1C2333;
    --al-border:      #E0E7EF;

    /* Typo */
    --font-head:      'Barlow Condensed', sans-serif;
    --font-body:      'Barlow', sans-serif;

    /* Effets */
    --shadow-sm:      0 2px 8px rgba(11,18,32,.08);
    --shadow-md:      0 8px 30px rgba(11,18,32,.12);
    --shadow-lg:      0 20px 60px rgba(11,18,32,.18);
    --radius:         10px;
    --radius-lg:      16px;
    --transition:     .25s ease;
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--al-text);
    background: var(--al-white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.1;
    color: var(--al-dark);
    text-transform: uppercase;
}
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 22px; }
p { font-size: 15.5px; line-height: 1.75; color: var(--al-gray); }

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* Section Header */
.section-tag {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--al-red);
    margin-bottom: 10px;
    display: block;
}
.section-title { color: var(--al-dark); }
.section-title .accent-red { color: var(--al-red); }
.section-title .accent-blue { color: var(--al-blue); }
.section-divider {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--al-red), var(--al-blue));
    border-radius: 2px;
    margin-top: 14px;
}
.section-desc { margin-top: 14px; max-width: 560px; }

/* Backgrounds */
.bg-dark { background: var(--al-dark); }
.bg-dark2 { background: var(--al-dark2); }
.bg-blue { background: var(--al-blue); }
.bg-offwhite { background: var(--al-offwhite); }
.bg-white { background: var(--al-white); }

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-red {
    background: var(--al-red);
    color: var(--al-white);
    border-color: var(--al-red);
}
.btn-red:hover {
    background: var(--al-red-dark);
    border-color: var(--al-red-dark);
    color: var(--al-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228,35,19,.35);
}
.btn-blue {
    background: var(--al-blue);
    color: var(--al-white);
    border-color: var(--al-blue);
}
.btn-blue:hover {
    background: var(--al-blue-dark);
    color: var(--al-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,63,139,.35);
}
.btn-outline-white {
    background: transparent;
    color: var(--al-white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--al-white);
    color: var(--al-white);
}
.btn-outline-red {
    background: transparent;
    color: var(--al-red);
    border-color: var(--al-red);
}
.btn-outline-red:hover {
    background: var(--al-red);
    color: var(--al-white);
}
.btn-lg { padding: 15px 34px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════ */
.al-topbar {
    background: var(--al-dark);
    border-bottom: 2px solid var(--al-red);
    padding: 8px 0;
    font-size: 12.5px;
}
.al-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.al-topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.al-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--al-gray2);
}
.al-topbar__item svg { color: var(--al-red); flex-shrink: 0; }
.al-topbar__phone {
    color: var(--al-red);
    font-weight: 700;
    font-size: 13px;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.al-header {
    background: var(--al-white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.al-header.scrolled { box-shadow: var(--shadow-md); }
.al-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.al-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.al-logo__img { height: 52px; width: auto; }
.al-logo__text { line-height: 1.1; }
.al-logo__main {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    color: var(--al-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
}
.al-logo__main span { color: var(--al-red); }
.al-logo__sub {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--al-gray);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
}

/* Navigation */
.al-nav { display: flex; align-items: center; gap: 2px; }
.al-nav__item { position: relative; }
.al-nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--al-dark);
    border-radius: 7px;
    transition: all var(--transition);
}
.al-nav__link:hover,
.al-nav__link.current { color: var(--al-blue); background: var(--al-blue-light); }
.al-nav__link.current { color: var(--al-blue); }

/* Dropdown */
.al-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--al-white);
    border: 1px solid var(--al-border);
    border-top: 3px solid var(--al-red);
    border-radius: 0 0 var(--radius) var(--radius);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}
.al-nav__item:hover .al-nav__dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.al-nav__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 13.5px;
    color: var(--al-text);
    border-bottom: 1px solid var(--al-border);
    transition: all var(--transition);
}
.al-nav__dropdown a:last-child { border-bottom: none; }
.al-nav__dropdown a:hover { background: var(--al-offwhite); color: var(--al-red); padding-left: 24px; }
.al-nav__dropdown a .icon { font-size: 16px; }

/* CTA Button in nav */
.al-nav__cta {
    background: var(--al-red) !important;
    color: var(--al-white) !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    margin-left: 8px;
}
.al-nav__cta:hover { background: var(--al-red-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(228,35,19,.3); }

/* Mobile Toggle */
.al-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
}
.al-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--al-dark);
    border-radius: 2px;
    transition: all .3s;
}

/* ════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════ */
.al-hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--al-dark);
}
.al-hero__track {
    display: flex;
    height: 100%;
    transition: transform .75s cubic-bezier(.4,0,.2,1);
}
.al-hero__slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.al-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.al-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11,18,32,.90) 0%,
        rgba(11,18,32,.65) 50%,
        rgba(11,18,32,.20) 100%
    );
}
.al-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.al-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--al-red);
    color: var(--al-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
    animation: fadeUp .5s ease both;
}
.al-hero__title {
    font-size: clamp(38px, 5.5vw, 62px);
    color: var(--al-white);
    max-width: 580px;
    margin-bottom: 16px;
    animation: fadeUp .6s .1s ease both;
}
.al-hero__title em {
    color: var(--al-red);
    font-style: normal;
}
.al-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,.78);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 32px;
    animation: fadeUp .6s .2s ease both;
}
.al-hero__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s ease both;
}

/* Slider Controls */
.al-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.al-hero__arrow:hover { background: var(--al-red); border-color: var(--al-red); }
.al-hero__prev { left: 24px; }
.al-hero__next { right: 24px; }
.al-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.al-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all .3s;
    border: none;
}
.al-hero__dot.active {
    background: var(--al-red);
    width: 26px;
    border-radius: 4px;
}

/* Progress bar */
.al-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--al-red);
    width: 0;
    transition: width 5s linear;
    z-index: 10;
}

/* ════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════ */
.al-stats {
    background: var(--al-blue);
    padding: 0;
}
.al-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.al-stats__item {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,.12);
    transition: background var(--transition);
}
.al-stats__item:last-child { border-right: none; }
.al-stats__item:hover { background: rgba(255,255,255,.06); }
.al-stats__num {
    font-family: var(--font-head);
    font-size: 46px;
    font-weight: 800;
    color: var(--al-white);
    line-height: 1;
    display: block;
}
.al-stats__num .suffix { color: var(--al-red); }
.al-stats__label {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 6px;
    display: block;
}

/* ════════════════════════════════════════════
   SERVICES CARDS
════════════════════════════════════════════ */
.al-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.al-service-card {
    background: var(--al-white);
    border: 1px solid var(--al-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s ease;
    position: relative;
}
.al-service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--al-red), var(--al-blue));
    transform: scaleX(0);
    transition: transform .35s ease;
}
.al-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.al-service-card:hover::before { transform: scaleX(1); }
.al-service-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--al-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}
.al-service-card__body { padding: 24px; }
.al-service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--al-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--al-red);
}
.al-service-card__title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--al-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.al-service-card__text {
    font-size: 13.5px;
    color: var(--al-gray);
    line-height: 1.7;
    margin-bottom: 18px;
}
.al-service-card__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--al-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .2px;
}
.al-service-card__link:hover { color: var(--al-red); gap: 10px; }

/* ════════════════════════════════════════════
   FEATURED SERVICES (Location/Vente)
════════════════════════════════════════════ */
.al-featured__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.al-featured-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform .3s;
}
.al-featured-card:hover { transform: translateY(-5px); }
.al-featured-card--blue { background: var(--al-blue); }
.al-featured-card--red { background: var(--al-red); }
.al-featured-card__bg-num {
    position: absolute;
    right: 24px;
    top: 12px;
    font-family: var(--font-head);
    font-size: 100px;
    font-weight: 800;
    color: rgba(255,255,255,.07);
    line-height: 1;
    pointer-events: none;
}
.al-featured-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}
.al-featured-card__title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.al-featured-card__desc {
    font-size: 14px;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 340px;
}
.al-featured-card .btn-outline-white { font-size: 13.5px; }

/* ════════════════════════════════════════════
   PROCESS STEPS
════════════════════════════════════════════ */
.al-process { background: var(--al-dark); }
.al-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.al-process__step {
    padding: 36px 28px;
    border-right: 1px solid rgba(255,255,255,.07);
    position: relative;
    transition: background var(--transition);
}
.al-process__step:last-child { border-right: none; }
.al-process__step:hover { background: rgba(255,255,255,.04); }
.al-process__num {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 800;
    color: rgba(255,255,255,.05);
    line-height: 1;
    margin-bottom: 16px;
}
.al-process__icon {
    width: 48px; height: 48px;
    background: rgba(228,35,19,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--al-red);
    margin-bottom: 16px;
}
.al-process__title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.al-process__desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; }
.al-process__arrow {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px; height: 26px;
    background: var(--al-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 12px;
    z-index: 2;
}
.al-process__step:last-child .al-process__arrow { display: none; }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.al-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.al-about__image-wrap { position: relative; }
.al-about__img {
    width: 100%;
    height: 460px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    background: var(--al-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 90px;
}
.al-about__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--al-red);
    color: white;
    padding: 20px 26px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 35px rgba(228,35,19,.35);
    text-align: center;
}
.al-about__badge-num {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.al-about__badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .9;
    display: block;
    margin-top: 4px;
}
.al-about__quote {
    font-family: var(--font-head);
    font-size: 19px;
    font-style: italic;
    font-weight: 600;
    color: var(--al-blue);
    border-left: 4px solid var(--al-red);
    padding-left: 18px;
    margin: 24px 0;
    line-height: 1.5;
}
.al-about__values { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.al-value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--al-offwhite);
    border: 1px solid var(--al-border);
    transition: border-color var(--transition);
}
.al-value-item:hover { border-color: var(--al-red); }
.al-value-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: var(--al-red-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--al-red);
}
.al-value-title { font-weight: 700; font-size: 14.5px; color: var(--al-dark); margin-bottom: 3px; }
.al-value-desc { font-size: 13px; color: var(--al-gray); line-height: 1.55; }

/* ════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════ */
.al-cta {
    background: linear-gradient(135deg, var(--al-dark) 0%, var(--al-dark2) 100%);
    position: relative;
    overflow: hidden;
}
.al-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.al-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.al-cta__label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--al-red);
    margin-bottom: 10px;
    display: block;
}
.al-cta__title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
}
.al-cta__desc { font-size: 15px; color: rgba(255,255,255,.65); margin-top: 10px; }
.al-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════════ */
.al-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.al-contact-info { }
.al-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.al-contact-item__icon {
    width: 46px; height: 46px; min-width: 46px;
    background: var(--al-red-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--al-red);
    font-size: 18px;
}
.al-contact-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--al-gray);
    margin-bottom: 4px;
    display: block;
}
.al-contact-item__value { font-size: 15px; font-weight: 600; color: var(--al-dark); line-height: 1.5; }

.al-contact-form {
    background: var(--al-white);
    border: 1px solid var(--al-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.al-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.al-form__group { margin-bottom: 16px; }
.al-form__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--al-dark);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 7px;
    display: block;
}
.al-form__input,
.al-form__select,
.al-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--al-border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--al-text);
    background: var(--al-white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: var(--font-body);
}
.al-form__input:focus,
.al-form__select:focus,
.al-form__textarea:focus {
    border-color: var(--al-blue);
    box-shadow: 0 0 0 3px rgba(27,63,139,.1);
}
.al-form__input.error { border-color: var(--al-red); }
.al-form__textarea { resize: vertical; min-height: 120px; }
.al-form__submit {
    width: 100%;
    background: var(--al-red);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.al-form__submit:hover {
    background: var(--al-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(228,35,19,.3);
}
.al-form__msg { padding: 12px 16px; border-radius: var(--radius); margin-top: 14px; font-size: 13.5px; display: none; }
.al-form__msg.success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; display: block; }
.al-form__msg.error { background: var(--al-red-light); color: var(--al-red-dark); border: 1px solid #FFCDD2; display: block; }

/* Map */
.al-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    margin-top: 30px;
    border: 1px solid var(--al-border);
}
.al-map iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.al-footer { background: #07101C; }
.al-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.al-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.al-footer__logo img { height: 44px; }
.al-footer__desc { font-size: 13.5px; color: #5A6A80; line-height: 1.8; max-width: 270px; }
.al-footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.al-social {
    width: 38px; height: 38px;
    background: #102030;
    border: 1px solid #1A3050;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: #5A6A80;
    font-size: 15px;
    transition: all var(--transition);
    text-decoration: none;
}
.al-social:hover { background: var(--al-red); border-color: var(--al-red); color: white; }
.al-footer__col-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1A2D45;
}
.al-footer__links { display: flex; flex-direction: column; gap: 10px; }
.al-footer__links a {
    font-size: 13.5px;
    color: #5A6A80;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all var(--transition);
}
.al-footer__links a::before { content: '›'; color: var(--al-red); font-size: 15px; }
.al-footer__links a:hover { color: white; padding-left: 4px; }
.al-footer__contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.al-footer__contact-icon {
    width: 34px; height: 34px; min-width: 34px;
    background: #102030;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--al-red);
    font-size: 14px;
}
.al-footer__contact-label { font-size: 10.5px; font-weight: 700; color: #2A4060; letter-spacing: .5px; text-transform: uppercase; display: block; }
.al-footer__contact-value { font-size: 13.5px; color: #5A6A80; margin-top: 2px; line-height: 1.55; }
.al-footer__contact-value a { color: var(--al-red); }

.al-footer__bottom {
    border-top: 1px solid #0F1E30;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.al-footer__copy { font-size: 12.5px; color: #2A4060; }
.al-footer__copy a { color: var(--al-red); font-weight: 600; }
.al-footer__legal { display: flex; gap: 22px; }
.al-footer__legal a { font-size: 12px; color: #2A4060; }
.al-footer__legal a:hover { color: white; }

/* WhatsApp Float */
.al-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 22px rgba(37,211,102,.45);
    z-index: 9999;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
}
.al-wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.al-wa-float__tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--al-dark);
    color: white;
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.al-wa-float:hover .al-wa-float__tooltip { opacity: 1; }

/* ════════════════════════════════════════════
   PAGE HERO (Inner pages)
════════════════════════════════════════════ */
.al-page-hero {
    background: linear-gradient(135deg, var(--al-dark) 0%, var(--al-dark2) 100%);
    padding: 56px 0 50px;
    position: relative;
    overflow: hidden;
}
.al-page-hero::after {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(228,35,19,.08) 0%, transparent 70%);
}
.al-page-hero__inner { position: relative; z-index: 1; }
.al-breadcrumb {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: rgba(255,255,255,.45);
    margin-bottom: 14px;
}
.al-breadcrumb a { color: rgba(255,255,255,.45); }
.al-breadcrumb a:hover { color: var(--al-red); }
.al-breadcrumb__sep { color: rgba(255,255,255,.2); }
.al-breadcrumb__current { color: var(--al-red); }
.al-page-hero__title {
    font-size: clamp(34px, 5vw, 54px);
    color: white;
    margin-bottom: 12px;
}
.al-page-hero__subtitle {
    font-size: 15.5px;
    color: rgba(255,255,255,.65);
    max-width: 540px;
    line-height: 1.7;
}

/* ════════════════════════════════════════════
   VEHICLE CARDS (Locations/Ventes)
════════════════════════════════════════════ */
.al-vehicles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.al-vehicle-card {
    background: white;
    border: 1px solid var(--al-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s;
    position: relative;
}
.al-vehicle-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: var(--al-blue);
}
.al-vehicle-card__badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 12px;
    text-transform: uppercase; letter-spacing: .3px;
}
.badge-available { background: #E8F5E9; color: #2E7D32; }
.badge-reserved { background: #FFF3E0; color: #E65100; }
.badge-new { background: var(--al-red); color: white; }
.al-vehicle-card__img {
    width: 100%; height: 195px;
    object-fit: cover;
    background: var(--al-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
}
.al-vehicle-card__body { padding: 18px 20px; }
.al-vehicle-card__brand { font-size: 11px; font-weight: 700; color: var(--al-red); text-transform: uppercase; letter-spacing: .8px; }
.al-vehicle-card__name { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--al-dark); margin: 4px 0 10px; }
.al-vehicle-card__specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.al-spec-tag { font-size: 11.5px; color: var(--al-gray); background: var(--al-light); padding: 4px 9px; border-radius: 5px; }
.al-vehicle-card__footer {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding-top: 12px; border-top: 1px solid var(--al-border);
}
.al-vehicle-card__price-label { font-size: 10.5px; color: var(--al-gray); text-transform: uppercase; display: block; }
.al-vehicle-card__price { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--al-dark); line-height: 1; }
.al-vehicle-card__price-unit { font-size: 12px; color: var(--al-gray); }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.al-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.al-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.al-reveal-delay-1 { transition-delay: .1s; }
.al-reveal-delay-2 { transition-delay: .2s; }
.al-reveal-delay-3 { transition-delay: .3s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .al-services__grid { grid-template-columns: repeat(2, 1fr); }
    .al-process__grid { grid-template-columns: repeat(2, 1fr); }
    .al-about__grid { grid-template-columns: 1fr; gap: 40px; }
    .al-footer__top { grid-template-columns: 1fr 1fr; }
    .al-vehicles__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .al-topbar { display: none; }
    .al-nav { display: none; position: fixed; inset: 72px 0 0 0; background: white; flex-direction: column; align-items: stretch; padding: 20px; overflow-y: auto; box-shadow: var(--shadow-lg); z-index: 998; gap: 4px; }
    .al-nav.open { display: flex; }
    .al-nav__toggle { display: flex; }
    .al-nav__link { padding: 14px 18px; font-size: 15px; border-radius: 8px; }
    .al-nav__dropdown { position: static; opacity: 1; pointer-events: all; transform: none; border: none; box-shadow: none; background: var(--al-offwhite); border-radius: var(--radius); margin-top: 4px; }
    .al-nav__cta { text-align: center; margin: 8px 0 0; padding: 14px !important; }

    .al-hero { height: 520px; }
    .al-hero__title { font-size: 38px; }
    .al-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .al-services__grid { grid-template-columns: 1fr; }
    .al-featured__grid { grid-template-columns: 1fr; }
    .al-process__grid { grid-template-columns: 1fr 1fr; }
    .al-about__badge { right: 10px; bottom: -16px; padding: 14px 18px; }
    .al-cta__inner { flex-direction: column; text-align: center; }
    .al-cta__actions { justify-content: center; }
    .al-contact__grid { grid-template-columns: 1fr; }
    .al-footer__top { grid-template-columns: 1fr; gap: 28px; }
    .al-footer__bottom { flex-direction: column; text-align: center; }
    .al-vehicles__grid { grid-template-columns: 1fr; }
    .al-form__row { grid-template-columns: 1fr; }
    .section-pad { padding: 52px 0; }
}

@media (max-width: 480px) {
    .al-process__grid { grid-template-columns: 1fr; }
    .al-hero__btns { flex-direction: column; }
    .al-hero { height: 480px; }
}
</style>
