/* ============================================================
   VLAMAKS DOO — style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:       #f97316;
  --orange-dark:  #ea6c0a;
  --orange-light: #fff7ed;
  --navy:         #0f172a;
  --slate-800:    #1e293b;
  --slate-700:    #334155;
  --slate-500:    #64748b;
  --slate-300:    #cbd5e1;
  --slate-200:    #e2e8f0;
  --slate-100:    #f1f5f9;
  --slate-50:     #f8fafc;
  --white:        #ffffff;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  --transition: .3s ease;
  --font: 'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Helpers ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 96px; }
.section--alt { background: var(--slate-50); }
.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 580px;
  line-height: 1.75;
}
.section-sub--white { color: rgba(255,255,255,.72); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
}
.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-light {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding-block: 10px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar__contacts a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.top-bar__contacts a:hover { color: var(--orange); }
.top-bar__contacts svg { flex-shrink: 0; opacity: .7; }
.top-bar__lang {
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-bar__lang a {
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.top-bar__lang a.active,
.top-bar__lang a:hover { color: var(--orange); font-weight: 700; }
.top-bar__lang span { color: rgba(255,255,255,.25); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo img {
  height: 44px;
  width: auto;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--navy); }
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: scaleX(1); }

.navbar__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
}
.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: var(--orange-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--slate-100);
  transition: var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--orange);
  background: var(--orange-light);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.65) 55%,
    rgba(15,23,42,.30) 100%
  );
}
.hero .container { position: relative; z-index: 1; padding-block: 120px 80px; }
.hero__content { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.18);
  border: 1px solid rgba(249,115,22,.4);
  color: #fdba74;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__question {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero__title span { color: var(--orange); }

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--orange); }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding-block: 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 32px;
  border-right: 1px solid var(--slate-200);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--slate-50); }
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
}
.stat-item__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-item__label {
  font-size: .85rem;
  color: var(--slate-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ── About Preview (homepage) ───────────────────────────────── */
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview__text {}
.about-preview__text p {
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-preview__highlights {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-preview__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--slate-700);
}
.about-preview__highlights li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.about-preview__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-preview__image:hover img { transform: scale(1.04); }
.about-preview__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-preview__image-badge .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.about-preview__image-badge .label {
  font-size: .8rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ── Services ───────────────────────────────────────────────── */
.services {}
.services .section-header { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--orange);
  color: var(--white);
}
.service-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card__desc {
  color: var(--slate-500);
  line-height: 1.75;
  font-size: .95rem;
}

/* ── Where We Drive ─────────────────────────────────────────── */
.where {
  background: var(--navy);
  padding-block: 96px;
}
.where .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.where__header {}
.where__header .section-title { white-space: nowrap; }
.where__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.where-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.where-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.where-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(249,115,22,.2);
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.where-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.where-card__desc {
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  font-size: .95rem;
}
.where-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.25);
  color: #fdba74;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
  padding-block: 80px;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text {}
.cta-banner__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}
.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-banner__sub {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.5) 60%, rgba(15,23,42,.2) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
.page-hero__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.1;
}

/* ── About Page ─────────────────────────────────────────────── */
.about-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-page__text p {
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-page__mission {
  background: var(--slate-50);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 28px;
}
.about-page__mission strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.about-page__mission p {
  font-size: .95rem;
  margin: 0;
}
.about-page__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
.about-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Stats Page ─────────────────────────────────────────────── */
.stats-page { background: var(--navy); padding-block: 80px; }
.stats-page .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.stats-page .stat-item {
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 48px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.stats-page .stat-item:last-child { border-right: none; }
.stats-page .stat-icon { background: rgba(249,115,22,.15); }
.stats-page .stat-item__num { font-size: 3rem; color: var(--white); }
.stats-page .stat-item__label { color: rgba(255,255,255,.55); font-size: .9rem; }

/* ── Team ───────────────────────────────────────────────────── */
.team .container { text-align: center; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange-light);
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 800;
}
.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: .85rem;
  color: var(--slate-500);
  margin-bottom: 16px;
}
.team-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.team-card__phone:hover { color: var(--orange-dark); }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--slate-100);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.5);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { color: var(--white); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--slate-300);
  background: var(--slate-50);
  border: 2px dashed var(--slate-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.gallery-item:hover .gallery-placeholder {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}
.gallery-placeholder svg { opacity: .5; }
.gallery-placeholder span { font-size: .85rem; font-weight: 600; opacity: .6; }

/* ── Contact ────────────────────────────────────────────────── */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info { }
.contact__info p {
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-light);
  display: grid;
  place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-500);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-weight: 600;
  color: var(--navy);
}
.contact-detail__value a { color: var(--navy); transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--orange); }

.contact__team {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--slate-200);
}
.contact__team h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-team-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-team-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--slate-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}
.contact-team-item__name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.contact-team-item__phone { color: var(--orange); font-weight: 600; font-size: .9rem; }

/* ── Form ───────────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--slate-500);
  margin-bottom: 32px;
  font-size: .95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-block: 72px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {}
.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer__tagline {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,.1);
}
.footer__col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__links a:hover { color: var(--orange); }
.footer__links a::before {
  content: '→';
  font-size: .75rem;
  color: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.footer__links a:hover::before { opacity: 1; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

/* ── Scroll Animations ──────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="100"] { transition-delay: .1s; }
[data-animate-delay="200"] { transition-delay: .2s; }
[data-animate-delay="300"] { transition-delay: .3s; }
[data-animate-delay="400"] { transition-delay: .4s; }
[data-animate-delay="500"] { transition-delay: .5s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-preview .container { grid-template-columns: 1fr; gap: 48px; }
  .about-preview__image { aspect-ratio: 16/9; max-width: 600px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .where .container { grid-template-columns: 1fr; gap: 48px; }
  .where__header .section-title { white-space: normal; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-page .container { grid-template-columns: 1fr; gap: 48px; }
  .about-page__image { aspect-ratio: 16/9; }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .top-bar { display: none; }
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--slate-200); padding: 24px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .where__content { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .page-hero { height: 260px; }
  .stats-page .container { grid-template-columns: 1fr; }
  .stats-page .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
