/* ============================================================
   Cash Auto — Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Proza+Libre:wght@400;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #22577a;
  --accent: #57cc99;
  --dark: #1a3d54;
  --bg: #f8f9fa;
  --text: #333333;
  --text-secondary: #666666;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Proza Libre', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
ol {
  list-style: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

small {
  font-size: 14px;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background-color: var(--bg);
}

.section--compact {
  padding: 32px 0;
}

.eu-projects {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.eu-projects img {
  width: 100%;
  max-width: 700px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section--dark {
  background-color: var(--dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Components
   ============================================================ */

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}

.btn:hover {
  background-color: #45b888;
  border-color: #45b888;
  color: var(--white);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --- Cards --- */
.card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--available {
  background-color: var(--accent);
  color: var(--white);
}

.badge--occupied {
  background-color: #636e72;
  color: var(--white);
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  transition: box-shadow 0.2s;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

.navbar__logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
}

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

.navbar__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__lang button {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
  transition: color 0.2s, background-color 0.2s;
}

.navbar__lang button.active {
  color: var(--primary);
  background-color: var(--bg);
}

.navbar__lang button:hover {
  color: var(--primary);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* --- Hamburger Animation (when drawer is open) --- */
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Drawer --- */
.navbar__drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
}

.navbar__drawer.is-open {
  display: flex;
}

.navbar__drawer a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--bg);
}

.navbar__drawer a:hover,
.navbar__drawer a.active {
  color: var(--primary);
}

/* Spacer to push page content below fixed navbar */
body {
  padding-top: 70px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark);
  opacity: 0.7;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  padding: 40px 20px;
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ============================================================
   About Section (Home)
   ============================================================ */
.about {
  display: block;
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}

.about__image img {
  width: 100%;
  object-fit: cover;
}

.about__clients h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.about__clients ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.about__clients li {
  padding: 4px 0;
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 16px;
}

.about__clients li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ============================================================
   Quick Links Section (Home)
   ============================================================ */
.quicklinks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.quicklinks__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quicklinks__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.quicklinks__card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.quicklinks__card-body {
  padding: 24px;
}

.quicklinks__card-body h3 {
  margin-bottom: 8px;
}

.quicklinks__card-body p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 16px;
}

.quicklinks__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
}

.quicklinks__card-link::after {
  content: "\2192";
  transition: transform 0.2s;
}

.quicklinks__card:hover .quicklinks__card-link::after {
  transform: translateX(4px);
}

/* ============================================================
   Property List (Warehouses)
   ============================================================ */
.property-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.property-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.property-item__thumb {
  width: 100%;
  max-width: 120px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.property-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-item__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  flex-shrink: 0;
}

.property-item__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.property-item__gallery img:hover {
  opacity: 0.8;
}

.property-item__info {
  flex: 1;
}

.property-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.property-item__header h3 {
  margin-bottom: 0;
}

.property-item__badge {
  display: inline-block;
}

.property-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--bg);
  color: var(--text-secondary);
  border-radius: 4px;
}

/* ============================================================
   Services Grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 28px 24px;
  overflow: hidden;
}

.service-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 20px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================================
   Gallery Grid
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ============================================================
   Page Header
   ============================================================ */
.page-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0;
}

/* ============================================================
   Page Hero (reusable hero with background image)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 61, 84, 0.88) 0%, rgba(34, 87, 122, 0.78) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 48px;
}

.page-hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 36px;
}

.page-hero__content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-hero__content h1 {
    font-size: 44px;
  }

  .page-hero__content p {
    font-size: 17px;
  }
}

/* ============================================================
   Team Content
   ============================================================ */
.team-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.team-content p {
  margin-bottom: 24px;
}

/* ============================================================
   Contact Info
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 24px;
  color: var(--accent);
}

.contact-info__map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

.contact-info__map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s;
}

.lightbox__close:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  transition: background-color 0.2s;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* ============================================================
   Cookie Consent Banner
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1500;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}

.cookie-banner__buttons .btn {
  padding: 8px 20px;
  font-size: 14px;
}

.cookie-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1499;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s, transform 0.2s;
}

.cookie-icon:hover {
  background-color: var(--dark);
  transform: scale(1.1);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 32px 0 0;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.footer__about p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 14px;
}

.footer__contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
  padding: 12px 0 12px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   Responsive — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  /* Typography */
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  /* Layout */
  .section {
    padding: 80px 0;
  }

  /* About */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .about__image {
    margin-top: 0;
  }

  /* Quick Links */
  .quicklinks {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Property Items */
  .property-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
  }

  .property-item__thumb {
    width: 120px;
    height: 90px;
  }

  .property-item__gallery {
    width: 260px;
  }

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

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact Map */
  .contact-info__map iframe {
    height: 400px;
  }

  /* Cookie Banner */
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__text {
    flex: 1;
  }

  /* Footer Grid */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Responsive — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  /* Typography */
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  /* Navigation — show links, hide hamburger */
  .navbar__hamburger {
    display: none;
  }

  .navbar__links {
    display: flex;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Footer Grid */
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Wave Dividers
   ============================================================ */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -1px; /* prevent 1px gap */
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 70px;
  }
}

/* ============================================================
   Stats Strip
   ============================================================ */
.stats-strip {
  background-color: var(--primary);
  padding: 56px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
  text-align: center;
}

.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat__number {
    font-size: 64px;
  }
}

/* ============================================================
   Clients Section
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0 24px;
}

.client-card {
  background-color: var(--white);
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--accent);
  transition: box-shadow 0.2s, transform 0.2s;
}

.client-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   Warehouses Hero
   ============================================================ */
.warehouses-hero {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.warehouses-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 61, 84, 0.88) 0%, rgba(34, 87, 122, 0.78) 100%);
}

.warehouses-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  padding: 60px 20px 48px;
}

.warehouses-hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 36px;
}

.warehouses-hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
}

.warehouses-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.warehouses-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.warehouses-hero__stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.warehouses-hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.8;
}

.warehouses-hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.warehouses-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--white);
  backdrop-filter: blur(4px);
}

.warehouses-hero__tag svg {
  color: var(--accent);
}

@media (min-width: 768px) {
  .warehouses-hero__content h1 {
    font-size: 44px;
  }

  .warehouses-hero__subtitle {
    font-size: 18px;
  }

  .warehouses-hero__stat-number {
    font-size: 56px;
  }

  .warehouses-hero__stats {
    gap: 60px;
  }
}

@media (min-width: 1024px) {
  .warehouses-hero__content h1 {
    font-size: 50px;
  }

  .warehouses-hero__stat-number {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  .warehouses-hero {
    height: auto;
    min-height: 480px;
    padding: 20px 0 0;
  }

  .warehouses-hero__stats {
    gap: 24px;
  }

  .warehouses-hero__stat-number {
    font-size: 36px;
  }

  .warehouses-hero__tag {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* ============================================================
   Page Header — with background image variant
   ============================================================ */
.page-header--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0 64px;
}

.page-header--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0.82;
}

.page-header--bg h1 {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Team Principles
   ============================================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.principle-card {
  background-color: var(--primary);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  transition: background-color 0.2s, transform 0.2s;
}

.principle-card:hover {
  background-color: var(--dark);
  transform: translateY(-3px);
}

.principle-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 0;
}

.principle-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--accent);
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.stat:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3) { transition-delay: 0.2s; }
.stat:nth-child(4) { transition-delay: 0.3s; }

.client-card:nth-child(2) { transition-delay: 0.05s; }
.client-card:nth-child(3) { transition-delay: 0.1s; }
.client-card:nth-child(4) { transition-delay: 0.15s; }
.client-card:nth-child(5) { transition-delay: 0.2s; }
.client-card:nth-child(6) { transition-delay: 0.25s; }
.client-card:nth-child(7) { transition-delay: 0.3s; }

.principle-card:nth-child(2) { transition-delay: 0.08s; }
.principle-card:nth-child(3) { transition-delay: 0.16s; }
.principle-card:nth-child(4) { transition-delay: 0.24s; }
.principle-card:nth-child(5) { transition-delay: 0.32s; }

/* Respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-left,
  .fade-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Responsive — Mobile only (below 768px)
   ============================================================ */
@media (max-width: 767px) {
  /* Navigation — hide links, show hamburger */
  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__lang {
    margin-right: 12px;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
  }

  .hero__content p {
    font-size: 16px;
  }
}
