/* ═══════════════════════════════════════════════════════
   Dockside Industries Inc. — style.css
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Brand Tokens ────────────────────────────────────── */
:root {
  --brand-blue-light: #4FA8FF;
  --brand-blue-mid: #1E5BC6;
  --brand-blue-deep: #0A2A6E;
  --brand-black: #0B0F14;
  --brand-white: #FFFFFF;
  --brand-gray-100: #F4F6F9;
  --brand-gray-300: #D4D9E0;
  --brand-gray-600: #5A6573;
  --brand-gray-800: #1F2530;
  --accent-safety: #FFB400;

  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --header-h: 72px;
  --section-px: clamp(1rem, 4vw, 3rem);
  --section-py: clamp(3rem, 6vw, 6rem);
  --max-w: 1280px;
  --radius: 10px;
  --radius-sm: 6px;
}

/* ── Light Mode (default) ────────────────────────────── */
[data-theme="light"] {
  --bg-page: var(--brand-white);
  --bg-alt: var(--brand-gray-100);
  --bg-header: var(--brand-black);
  --bg-footer: var(--brand-black);
  --bg-card: var(--brand-white);
  --border-card: var(--brand-gray-300);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
  --text-heading: var(--brand-blue-deep);
  --text-primary: var(--brand-gray-800);
  --text-secondary: var(--brand-gray-600);
  --text-header: var(--brand-white);
  --text-footer: var(--brand-gray-300);
  --btn-primary-bg: var(--brand-blue-mid);
  --btn-primary-text: var(--brand-white);
  --btn-primary-hover: var(--brand-blue-deep);
  --border-color: var(--brand-gray-300);
  --header-border: transparent;
  --footer-border: transparent;
  --input-bg: var(--brand-white);
  --input-border: var(--brand-gray-300);
  --input-text: var(--brand-gray-800);
}

/* ── Dark Mode ───────────────────────────────────────── */
[data-theme="dark"] {
  --bg-page: var(--brand-black);
  --bg-alt: var(--brand-gray-800);
  --bg-header: var(--brand-black);
  --bg-footer: var(--brand-black);
  --bg-card: var(--brand-gray-800);
  --border-card: var(--brand-gray-600);
  --shadow-card: none;
  --text-heading: var(--brand-white);
  --text-primary: var(--brand-gray-100);
  --text-secondary: var(--brand-gray-300);
  --text-header: var(--brand-white);
  --text-footer: var(--brand-gray-300);
  --btn-primary-bg: var(--brand-blue-light);
  --btn-primary-text: var(--brand-black);
  --btn-primary-hover: #73bbff;
  --border-color: var(--brand-gray-600);
  --header-border: var(--brand-gray-800);
  --footer-border: var(--brand-gray-800);
  --input-bg: var(--brand-gray-800);
  --input-border: var(--brand-gray-600);
  --input-text: var(--brand-gray-100);
}

/* ── Theme transition ────────────────────────────────── */
html {
  transition: background-color 250ms ease, color 250ms ease;
}
*, *::before, *::after {
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
@media (prefers-reduced-motion: reduce) {
  html, *, *::before, *::after {
    transition: none !important;
  }
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.075rem);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-alt); }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--btn-primary-bg);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}
.btn--primary:hover { background: var(--btn-primary-hover); }
.btn--accent {
  background: var(--accent-safety);
  color: var(--brand-black);
}
.btn--accent:hover { background: #ffc333; }
.btn--outline {
  background: transparent;
  color: var(--brand-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--brand-white); background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid var(--header-border);
  height: var(--header-h);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.header__logo img {
  height: 44px;
  width: auto;
}
.header__logo-wrap {
  display: flex;
  align-items: center;
}
.header__nav { display: flex; gap: 1.75rem; }
.header__nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-header);
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.header__nav a:hover { opacity: 1; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-header);
  background: rgba(255,255,255,0.1);
  transition: background 0.15s ease;
}
.theme-toggle:hover { background: rgba(255,255,255,0.2); }
.theme-toggle svg { width: 20px; height: 20px; }
.header__cta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--accent-safety);
  color: var(--brand-black);
  transition: background 0.15s ease;
}
.header__cta:hover { background: #ffc333; }
.header__cta-icon { display: none; }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-header);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-header);
  padding: 1rem 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid var(--header-border);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: 0.75rem var(--section-px);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-header);
  opacity: 0.85;
}
.mobile-nav a:hover { opacity: 1; background: rgba(255,255,255,0.05); }

@media (max-width: 960px) {
  .header__nav { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 640px) {
  .header__cta-text { display: none; }
  .header__cta-icon { display: block; }
  .header__cta { padding: 0.55rem; line-height: 0; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: var(--header-h);
  aspect-ratio: 2560 / 938;
  overflow: hidden;
}
.hero picture,
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,20,0.6) 0%, rgba(11,15,20,0.15) 100%);
  z-index: 1;
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--section-px) clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  left: 0; right: 0;
}
.hero__h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  max-width: 720px;
  margin-bottom: 0.75rem;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-safety);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hero {
    aspect-ratio: unset;
    min-height: 520px;
    height: auto;
  }
  .hero__content {
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero__h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
}

/* ═══════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
[data-theme="dark"] .service-card:hover {
  box-shadow: none;
  border-color: var(--brand-blue-light);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--btn-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--btn-primary-text);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   WHY DOCKSIDE
   ═══════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  text-align: center;
}
.trust-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trust-item__icon svg { width: 28px; height: 28px; }
.trust-item__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}
.trust-item__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════════════════════ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.area-tag {
  display: inline-block;
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-heading);
  box-shadow: var(--shadow-card);
}
.area-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   GALLERY CAROUSEL
   ═══════════════════════════════════════════════════════ */
.gallery-carousel {
  position: relative;
  overflow: hidden;
}
.gallery-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
}
.gallery-carousel__track::-webkit-scrollbar {
  display: none;
}
.gallery-carousel .gallery-item {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  outline: none;
}
.gallery-carousel .gallery-item:focus-visible {
  outline: 3px solid var(--btn-primary-bg);
  outline-offset: 2px;
}
.gallery-carousel .gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-carousel .gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,42,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-carousel .gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
}
.gallery-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
  backdrop-filter: blur(4px);
}
.gallery-carousel__btn:hover {
  background: rgba(0,0,0,0.7);
}
.gallery-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.gallery-carousel__btn svg {
  width: 24px;
  height: 24px;
}
.gallery-carousel__btn--prev { left: 0.75rem; }
.gallery-carousel__btn--next { right: 0.75rem; }

.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.gallery-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.gallery-carousel__dot.active {
  background: var(--btn-primary-bg);
  transform: scale(1.25);
}

@media (max-width: 960px) {
  .gallery-carousel .gallery-item {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}
@media (max-width: 640px) {
  .gallery-carousel .gallery-item {
    flex: 0 0 100%;
  }
  .gallery-carousel__btn { width: 40px; height: 40px; }
  .gallery-carousel__btn svg { width: 20px; height: 20px; }
}

/* ── Lightbox ──────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11,15,20,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox__btn {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.3); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step {
  text-align: center;
  counter-increment: step;
  position: relative;
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-safety);
  color: var(--brand-black);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}
.step__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.step + .step::before {
  content: '';
  position: absolute;
  top: 28px;
  left: -1rem;
  width: calc(100% - 56px - 2rem);
  height: 2px;
  background: var(--border-color);
  transform: translateX(calc(-50% + 28px));
}
@media (max-width: 960px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step + .step::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about-text {
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.contact-info__item svg {
  width: 20px;
  height: 20px;
  color: var(--btn-primary-bg);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info__item a {
  color: var(--btn-primary-bg);
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.contact-info__item a:hover { opacity: 0.8; }
.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-card);
}
.contact-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

/* Contact form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--btn-primary-bg);
}
.form-group textarea { resize: vertical; min-height: 80px; }

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

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-footer);
  color: var(--text-footer);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--footer-border);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo img { height: 78px; width: auto; }
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.footer__info p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-footer);
}
.footer__info a {
  color: var(--accent-safety);
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.footer__info a:hover { opacity: 0.8; }
.footer__bar {
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
