/* ============================================
   CSS Variables - Premium Design System
   ============================================ */
:root {
  /* Colors - Dark Ocean Theme */
  --bg-deep: #061826;
  --bg-dark: #0A2236;
  --bg-card: #0F2D46;
  --accent-primary: #15D5FF;
  --accent-secondary: #7DEBFF;
  --text-heading: #E6F7FF;
  --text-body: #B6D9E6;
  --text-muted: #7FB8CC;
  --ocean: #15D5FF;
  --ocean-light: #7DEBFF;
  --ocean-dark: #0F9BC4;
  --text: #B6D9E6;
  --muted: #7FB8CC;
  --ssi-accent: #15D5FF;
  --ssi-accent-dark: #0F9BC4;

  /* Typography */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-heading: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Spacing (8px grid) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 24px rgba(21, 213, 255, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   Container
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* Increased specificity to override Elementor */
.header .btn,
.footer .btn,
.header .elementor-button,
.footer .elementor-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--space-sm) var(--space-xl) !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  cursor: pointer !important;
  transition: all var(--transition-base) !important;
  position: relative !important;
  overflow: hidden !important;
  line-height: 1.2 !important;
}

.header .btn--primary,
.footer .btn--primary,
.elementor-button.btn--primary {
  background: var(--accent-primary) !important;
  color: var(--bg-deep) !important;
  box-shadow: 0 4px 16px rgba(21, 213, 255, 0.3) !important;
}

.header .btn--primary::before,
.footer .btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.header .btn--primary:hover,
.footer .btn--primary:hover,
.elementor-button.btn--primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(21, 213, 255, 0.4) !important;
  background: var(--accent-secondary) !important;
}

.header .btn--secondary,
.footer .btn--secondary,
.elementor-button.btn--secondary {
  background: transparent !important;
  color: var(--accent-primary) !important;
  border: 1px solid var(--accent-primary) !important;
  backdrop-filter: blur(10px) !important;
}

.header .btn--secondary:hover,
.footer .btn--secondary:hover,
.elementor-button.btn--secondary:hover {
  background: rgba(21, 213, 255, 0.1) !important;
  border-color: var(--accent-secondary) !important;
  color: var(--accent-secondary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(21, 213, 255, 0.2) !important;
}

/* SVG Rendering Fixes - Detailed */
/* svg {
  display: inline-block !important;
  vertical-align: middle !important;
} */

/* .header svg,
.footer svg,
.back-to-top svg {
  overflow: visible !important;
  flex-shrink: 0 !important;
  width: 20px;
  height: 20px;
} */

/* Force stroke for outline icons */
.footer__cta-chip svg,
.footer__location-item svg,
.footer__social-link svg,
.back-to-top svg,
.header__cart svg,
.header__mobile-toggle svg {
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}

/* Force size for specific items (override defaults) */
.footer__location-item svg {
  width: 14px !important;
  height: 14px !important;
}

.footer__cta-chip svg {
  width: 16px !important;
  height: 16px !important;
}

/* Filled icons (only social if they prefer fill) */
.footer__social-link svg[fill="currentColor"],
.footer__social-link svg path[fill] {
  fill: currentColor !important;
  stroke: none !important;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(6, 24, 38, 0.95);
  backdrop-filter: blur(15px);
  padding: var(--space-xs) 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.header__logo:hover {
  transform: scale(1.02);
}

.header__logo-img {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(1.1) !important;
  transition: height 0.4s ease !important;
}

.footer__logo-img {
  height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(1.1) !important;
  transition: height 0.4s ease !important;
}

.header.scrolled .header__logo-img {
  height: 40px;
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__nav-link:hover,
.header__nav-link.active {
  opacity: 1;
  color: var(--accent-primary);
}

.header__nav-icon {
  transition: transform var(--transition-base);
  opacity: 0.7;
}

.header__nav-item:hover .header__nav-icon {
  transform: rotate(180deg);
  color: var(--accent-primary);
  opacity: 1;
}

/* Submenu / Dropdown Styles */
.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header__submenu {
  position: absolute;
  top: 150%;
  left: 0 !important;
  transform: translateY(10px) !important;
  background: var(--bg-deep);
  min-width: 260px;
  padding: var(--space-sm) 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid var(--accent-primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 100;
  margin: 0;
}

/* Invisible bridge to prevent menu from closing when moving mouse from link to submenu */
.header__nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.header__nav-item:hover .header__submenu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.header__submenu li {
  width: 100%;
}

.header__submenu-link {
  display: block;
  padding: 0.75rem var(--space-lg);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-align: left;
}

.header__submenu-link:hover {
  background: rgba(21, 213, 255, 0.1);
  color: var(--accent-primary);
  padding-left: calc(var(--space-lg) + 8px);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__language {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0 !important;
  background-color: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  opacity: 0.5 !important;
}

.header__language-btn.active {
  color: var(--accent-primary) !important;
  opacity: 1 !important;
}

.header__flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  color: #ffffff !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all var(--transition-base) !important;
  padding: 10px !important;
}

.header__cart:hover {
  background: rgba(21, 213, 255, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.header__cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent-primary);
  color: var(--bg-deep);
  font-size: 0.625rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__ssi-badge {
  display: none;
  align-items: center;
  transition: opacity var(--transition-base);
  padding-left: var(--space-md);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header__ssi-badge:hover {
  opacity: 1;
}

.header__ssi-logo {
  height: 24px !important;
  width: auto !important;
  transition: all var(--transition-base) !important;
}

@media (min-width: 1200px) {
  .header__ssi-badge {
    display: flex;
  }
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}

.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.header__mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .header {
    padding: var(--space-sm) 0;
  }

  .header__logo-img {
    height: 36px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-deep);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl);
    gap: var(--space-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
  }

  .header__nav.mobile-open {
    right: 0;
  }

  .header__nav-link {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
  }

  .header__nav-icon {
    display: none;
  }

  .header__nav-item {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
  }

  .header__submenu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: unset;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    transition: all var(--transition-base);
  }

  .header__nav-item.submenu-open .header__submenu {
    display: flex;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 0;
  }

  .header__submenu-link {
    font-size: 1rem;
    padding: 0.5rem 0;
    text-align: center;
    opacity: 0.7;
    white-space: normal;
  }

  .header__submenu-link:hover {
    padding-left: 0;
    opacity: 1;
    background: transparent;
  }

  .header__actions {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}

/* Header Overlay */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 7, 13, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Footer - Premium Design
   ============================================ */
.footer {
  padding: 0;
  background: linear-gradient(180deg, #061826 0%, #040a12 100%);
  border-top: 1px solid rgba(21, 213, 255, 0.15);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 213, 255, 0.4), transparent);
}

/* Zone A: CTA Strip */
.footer__cta {
  padding: var(--space-3xl) var(--space-lg);
  border-bottom: 1px solid rgba(21, 213, 255, 0.15);
}

.footer__cta-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 45, 70, 0.6);
  border: 1px solid rgba(21, 213, 255, 0.2);
  border-radius: 16px;
  padding: var(--space-2xl);
  text-align: center;
  backdrop-filter: blur(10px);
}

.footer__cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.footer__cta-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.footer__cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.footer__cta-btn-primary,
.footer__cta-btn-secondary {
  min-width: 160px;
  padding: var(--space-sm) var(--space-xl);
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__cta-btn-primary {
  background: var(--accent-primary);
  color: var(--bg-deep);
  border: 1px solid var(--accent-primary);
  font-weight: 600;
}

.footer__cta-btn-primary:hover {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 213, 255, 0.4);
}

.footer__cta-btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.footer__cta-btn-secondary:hover {
  background: rgba(21, 213, 255, 0.1);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 213, 255, 0.2);
}

.footer__cta-trust {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.footer__cta-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(21, 213, 255, 0.1);
  border: 1px solid rgba(21, 213, 255, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.footer__cta-chip svg {
  flex-shrink: 0;
  color: var(--accent-primary);
}

.footer__cta-chip:hover {
  background: rgba(21, 213, 255, 0.15);
  border-color: var(--accent-primary);
  color: var(--text-heading);
}

/* Zone B: Main Footer Grid */
.footer__main {
  padding: var(--space-3xl) var(--space-lg);
  border-bottom: 1px solid rgba(21, 213, 255, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1280px;
  margin: 0 auto;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__column--brand {
  align-items: flex-start !important;
  text-align: left !important;
}

.footer__column-title,
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.footer__column-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__column-description {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(21, 213, 255, 0.1);
  border: 1px solid rgba(21, 213, 255, 0.2);
  color: var(--text-body);
  transition: all var(--transition-base);
  text-decoration: none;
}

.footer__social-link:hover {
  background: rgba(21, 213, 255, 0.2);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 213, 255, 0.3);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 2px;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.footer__nav-link:hover {
  color: var(--accent-primary);
}

.footer__nav-link:hover::after {
  width: 100%;
}

/* Location Cards */
.footer__column--location {
  display: flex;
  min-width: 260px;
  width: 100%;
  flex: 1 1 0;
}

.footer__location-card {
  width: 100%;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-style: normal;
  transition: all var(--transition-base);
}

.footer__location-card:hover {
  background: rgba(21, 213, 255, 0.05);
  border-color: rgba(21, 213, 255, 0.2);
}

.footer__location-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.footer__location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 0.375rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__location-item:last-child {
  margin-bottom: 0;
}

.footer__location-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-primary);
  width: 14px;
  height: 14px;
}

.footer__location-item:hover {
  color: var(--accent-primary);
}

/* Zone C: Certificates */
.footer__certificates {
  padding: var(--space-2xl) var(--space-lg);
  border-bottom: 1px solid rgba(21, 213, 255, 0.15);
  text-align: center;
}

.footer__certificates-label {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.footer__certificates-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.footer__cert-logo {
  height: 50px !important;
  width: auto;
  filter: grayscale(30%);
  transition: all var(--transition-base);
  margin: 0;
}

.footer__cert-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

/* Zone D: Bottom Bar */
.footer__bottom {
  padding: var(--space-lg) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  color: var(--text-body);
  font-size: 0.875rem;
  margin: 0;
}

.footer__bottom-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer__bottom-link {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  position: relative;
}

.footer__bottom-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.footer__bottom-link:hover {
  color: var(--accent-primary);
}

.footer__bottom-link:hover::after {
  width: 100%;
}

.footer__bottom-separator {
  color: var(--text-muted);
  opacity: 0.5;
  font-size: 0.875rem;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 50px !important;
  height: 50px !important;
  background: rgba(15, 45, 70, 0.9) !important;
  color: #15d5ff !important;
  border: 1px solid rgba(21, 213, 255, 0.3) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 999 !important;
  opacity: 0;
  visibility: hidden !important;
  transition: all var(--transition-base) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  padding: 10px !important;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--accent-secondary);
  box-shadow: 0 8px 24px rgba(21, 213, 255, 0.5);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   Responsive Adjustments - Tablet
   ============================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .footer__column--location {
    grid-column: span 1;
  }
}

/* ============================================
   Responsive Adjustments - Mobile
   ============================================ */
@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__cta-content {
    padding: var(--space-xl) var(--space-md);
  }

  .footer__cta-buttons {
    flex-direction: column;
  }

  .footer__cta-btn-primary,
  .footer__cta-btn-secondary {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-nav {
    justify-content: center;
  }
}