/*
Theme Name: Steer Logistics
Theme URI: https://steerlogistics.in
Author: Steer Logistics Private Limited
Author URI: https://steerlogistics.in
Description: Professional logistics & transportation theme for Steer Logistics Private Limited
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steer-logistics
Tags: logistics, transportation, business, professional
*/

/* =========================================================
   CSS VARIABLES & RESET
   ========================================================= */
:root {
  --red:        #D62828;
  --red-dark:   #b01e1e;
  --navy:       #0D1B4B;
  --navy-light: #1A2E6E;
  --white:      #FFFFFF;
  --light:      #F5F7FA;
  --gray:       #6C757D;
  --dark:       #1A1A2E;
  --border:     #E2E8F0;
  --shadow:     0 4px 24px rgba(13,27,75,0.10);
  --shadow-lg:  0 8px 40px rgba(13,27,75,0.16);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.3s ease;
  --font-main:  'Inter', 'Segoe UI', sans-serif;
  --font-head:  'Montserrat', 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: #4A5568; }

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section          { padding: 90px 0; }
.section--light   { background: var(--light); }
.section--dark    { background: var(--navy); color: var(--white); }
.section--red     { background: var(--red); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section--dark .section-label,
.section--red  .section-label { color: rgba(255,255,255,0.75); }

.section-title { margin-bottom: 16px; }
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: #64748B;
  max-width: 640px;
  margin-bottom: 48px;
}
.section-sub--white { color: rgba(255,255,255,0.8); }

.divider {
  width: 56px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 20px;
}
.divider--white { background: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214,40,40,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.text-red   { color: var(--red); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }

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

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar a:hover { color: var(--red); }
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 24px; }
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =========================================================
   WORDPRESS LAYOUT OVERRIDES
   Prevent WP core / theme.json from injecting flex/grid
   layout on the body or .wp-site-blocks wrapper.
   ========================================================= */
body {
  display: block !important;
}
.wp-site-blocks {
  display: block !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* =========================================================
   ADMIN BAR COMPATIBILITY
   ========================================================= */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: block;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.nav {
  display: block;
  width: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
}

.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo img { height: 60px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.nav__logo-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  display: block;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__menu a:hover,
.nav__menu a.active {
  color: var(--red);
  background: rgba(214,40,40,0.06);
}

.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #162055 55%, #1e2d6b 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(214,40,40,0.12) 0%, transparent 60%),
    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.03'%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");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,40,40,0.15);
  border: 1px solid rgba(214,40,40,0.4);
  color: #FF8080;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}
.hero__title span { color: var(--red); }
.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero__tagline-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero__tagline-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}
.hero__visual::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light); }
.stat-item__number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0D1B4B, #1A2E6E);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-slider {
  isolation: isolate;
}

/* Slideshow loader — logo + bouncing dots */
.slider-loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: linear-gradient(135deg, #0D1B4B, #1A2E6E);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease;
}
.slider-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.slider-loader__logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  animation: logoPulse 2s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { opacity: 0.75; transform: scale(0.97); }
  50%      { opacity: 1;    transform: scale(1.03); }
}
.loading-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}
.loading-dots span {
  width: 11px;
  height: 11px;
  background: var(--red);
  border-radius: 50%;
  display: block;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.22s; background: #fff; }
.loading-dots span:nth-child(3) { animation-delay: 0.44s; }
@keyframes dotBounce {
  0%,80%,100% { transform: scale(0.45); opacity: 0.3; }
  40%          { transform: scale(1);    opacity: 1; }
}
.about-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,27,75,0) 55%, rgba(13,27,75,0.22) 100%),
    linear-gradient(90deg, rgba(13,27,75,0.18), rgba(13,27,75,0));
}
.about-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  clip-path: inset(0 0 0 0);
  transition:
    opacity 780ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, clip-path;
}
.about-slider__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.about-slider[data-transition="fade"] .about-slider__slide {
  transform: scale(1.02);
}
.about-slider[data-transition="fade"] .about-slider__slide.is-active {
  transform: scale(1);
}
.about-slider[data-transition="slide-left"] .about-slider__slide {
  transform: translateX(36px) scale(1.03);
}
.about-slider[data-transition="slide-right"] .about-slider__slide {
  transform: translateX(-36px) scale(1.03);
}
.about-slider[data-transition="slide-up"] .about-slider__slide {
  transform: translateY(30px) scale(1.03);
}
.about-slider[data-transition="zoom"] .about-slider__slide {
  transform: scale(1.12);
}
.about-slider[data-transition="wipe"] .about-slider__slide {
  clip-path: inset(0 0 0 100%);
  transform: scale(1.01);
}
.about-slider[data-transition="slide-left"] .about-slider__slide.is-active,
.about-slider[data-transition="slide-right"] .about-slider__slide.is-active,
.about-slider[data-transition="slide-up"] .about-slider__slide.is-active,
.about-slider[data-transition="zoom"] .about-slider__slide.is-active,
.about-slider[data-transition="wipe"] .about-slider__slide.is-active {
  transform: translate(0, 0) scale(1);
  clip-path: inset(0 0 0 0);
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.about__points { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.about__point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about__point-icon {
  width: 40px;
  height: 40px;
  background: rgba(214,40,40,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.about__point-icon svg { width: 18px; height: 18px; }
.about__point-text h4 { color: var(--navy); margin-bottom: 2px; }
.about__point-text p  { font-size: 0.9rem; margin: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__header { text-align: center; margin-bottom: 56px; }
.services__header .section-sub { margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(214,40,40,0.08) 0%, rgba(13,27,75,0.06) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--red);
  color: var(--white);
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--red); transition: var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p  { font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries__header { text-align: center; margin-bottom: 48px; }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(214,40,40,0.5);
  transform: translateY(-3px);
}
.industry-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(214,40,40,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FF8080;
}
.industry-card__icon svg { width: 22px; height: 22px; }
.industry-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.industry-card p  { color: rgba(255,255,255,0.65); font-size: 0.86rem; line-height: 1.55; margin: 0; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.why__left { }
.why__points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why__point:hover { border-color: var(--red); box-shadow: var(--shadow); }
.why__point-num {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.why__point-text h4 { color: var(--navy); margin-bottom: 4px; }
.why__point-text p  { font-size: 0.88rem; margin: 0; }

.why__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why__feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.why__feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why__feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.why__feature-icon svg { width: 24px; height: 24px; }
.why__feature h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.why__feature p  { font-size: 0.82rem; margin: 0; color: var(--gray); }

/* =========================================================
   COMPLIANCE STRIP
   ========================================================= */
.compliance {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.compliance__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.compliance__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.compliance__icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.compliance__icon svg { width: 20px; height: 20px; }
.compliance__text h5 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.compliance__text p  { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; }
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info { }
.contact__cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact__card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.contact__card-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact__card-icon svg { width: 20px; height: 20px; }
.contact__card-text h5 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; }
.contact__card-text p, .contact__card-text a { color: var(--navy); font-weight: 600; font-size: 0.95rem; margin: 0; }
.contact__card-text a:hover { color: var(--red); }

.contact__people { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.contact__person {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px;
}
.contact__person h5 { font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.contact__person a  { font-size: 0.85rem; color: var(--red); font-weight: 600; }

.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact__form-wrap h3 { margin-bottom: 6px; }
.contact__form-wrap > p { font-size: 0.9rem; color: var(--gray); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer__main { padding: 64px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer__brand { }
.footer__brand img { height: 64px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__social:hover { background: var(--red); color: var(--white); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a::before {
  content: '›';
  color: var(--red);
  font-weight: 700;
}
.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer__contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--red); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer__bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--red); }
.footer__bottom-links { display: flex; gap: 20px; }

/* =========================================================
   MAP
   ==============================