:root {
  --bg-main: #6f8f8b;
  --bg-alt: #d8c88a;
  --text-dark: #1e1e1e;
  --text-light: #ffffff;
  --accent: #2f5f5b;

  --glass: rgba(0, 0, 0, 0.25);
  --glass-strong: rgba(0, 0, 0, 0.35);
  --border-soft: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-light);
  padding-top: 64px;
}

a,
a:hover {
  color: white;
  text-decoration: none;
}

/* =========================
   CONTACT BAR
========================= */
.contact-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-inner {
  max-width: 1400px;
  margin: auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.contact-left,
.contact-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  align-items: center;
}

.contact-inner a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}

.contact-inner a:hover {
  opacity: 1;
}

/* Snap into row when space allows */
@media (min-width: 720px) {
  .contact-inner {
    justify-content: space-between;
  }

  .contact-left,
  .contact-right {
    justify-content: flex-start;
  }
}

/* =========================
   LUXE STORE ALERT
========================= */
.store-alert.luxe {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 3000;

  background: linear-gradient(
    135deg,
    rgba(216, 200, 138, 0.98),
    rgba(216, 200, 138, 0.85)
  );
  color: var(--text-dark);

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.18);

  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* soft glow halo */
.store-alert.luxe::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto 0;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(216, 200, 138, 0.35),
    rgba(216, 200, 138, 0)
  );
  pointer-events: none;
  z-index: -1;
}

/* shimmer sweep */
.store-alert.luxe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: shimmer 1.8s ease-out 0.6s forwards;
  pointer-events: none;
}

.store-alert.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.store-alert-inner {
  max-width: 1400px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LEFT SIDE */
.alert-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.25;
}

/* DOT */
.alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 6px rgba(47, 95, 91, 0.25),
    0 0 12px rgba(47, 95, 91, 0.8);
  animation: pulseDot 1.6s infinite;
}

/* CTA + CLOSE */
.alert-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.alert-cta {
  padding: 9px 22px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(47, 95, 91, 0.95),
    rgba(47, 95, 91, 0.75)
  );
  color: white;
  font-size: 0.85rem;
  font-weight: 600;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.alert-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    rgba(47, 95, 91, 1),
    rgba(47, 95, 91, 0.85)
  );
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.alert-close {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
}

.alert-close:hover {
  opacity: 1;
}

/* MOBILE STACK */
@media (max-width: 640px) {
  .store-alert-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations */
@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 6px rgba(47, 95, 91, 0.25),
      0 0 12px rgba(47, 95, 91, 0.8);
  }
  50% {
    transform: scale(1.4);
    box-shadow:
      0 0 0 10px rgba(47, 95, 91, 0.15),
      0 0 18px rgba(47, 95, 91, 1);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 6px rgba(47, 95, 91, 0.25),
      0 0 12px rgba(47, 95, 91, 0.8);
  }
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

/* =========================
   HERO
========================= */
.hero {
  padding: 70px 18px 48px;
  text-align: center;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
}

.hero-logo {
  max-width: 760px;
  width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.hero h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 12px 0;
}

.hero p {
  max-width: 760px;
  margin: auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* =========================
   ABOUT US
========================= */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-wrap {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-eyebrow {
  display: inline-block;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--bg-alt);
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.about-text p {
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 16px;
}

.about-cta {
  margin-top: 10px;
}

.about-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 70px 18px;
  max-width: 1400px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

/* =========================
   FEATURE SPLIT
========================= */
.feature-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .feature-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.feature-card {
  background: var(--glass);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: clamp(240px, 35vw, 420px);
  object-fit: cover;
  border-radius: 18px;
}

/* =========================
   VISIBILITY SYSTEM
========================= */
.mobile-only {
  display: block;
}
.tablet-up {
  display: none;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
  .tablet-up {
    display: block;
  }
}

/* =========================
   FEATURED SHOWCASE
========================= */
.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .showcase {
    grid-template-columns: 240px 1fr;
  }
}

.brand-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-pill {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.brand-pill.active {
  background: var(--accent);
}

.brand-pill.active .dot {
  background: white;
  opacity: 1;
}

.brand-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--glass-strong);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 1100px) {
  .brand-spotlight {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-spotlight img {
  width: 100%;
  border-radius: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 20px;
}

.tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}

/* =========================
   CTA BUTTON
========================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  color: var(--text-light);

  background: linear-gradient(
    135deg,
    rgba(47, 95, 91, 0.85),
    rgba(47, 95, 91, 0.65)
  );

  border: 1px solid rgba(255, 255, 255, 0.28);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(6px);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.cta-button i {
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    rgba(47, 95, 91, 1),
    rgba(47, 95, 91, 0.8)
  );
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(216, 200, 138, 0.8),
    0 14px 30px rgba(0, 0, 0, 0.35);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* =========================
   MOBILE ACCORDION
========================= */
.brand-accordion {
  display: grid;
  gap: 18px;
}

.brand-accordion-card {
  background: var(--glass-strong);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.accordion-header i {
  transition: transform 0.2s ease;
}

.brand-accordion-card.open .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
}

.brand-accordion-card.open .accordion-body {
  display: block;
}

.accordion-body img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 12px;
}

/* =========================
   PRODUCTS
========================= */
.products-wrap {
  display: flex;
  flex-direction: column;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 34px 0;
}

@media (min-width: 768px) {
  .product-row {
    grid-template-columns: 280px 1fr;
  }
}

.product-meta {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-meta .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.product-meta h3 {
  margin: 10px 0;
  font-size: 1.8rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 22px;
}

@media (min-width: 1100px) {
  .brand-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

.brand-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px 10px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  background: rgba(0, 0, 0, 0.22);
}

.brand-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.brand-card .name {
  font-weight: 700;
  text-align: center;
}

.brand-card .sub {
  font-size: 0.85rem;
  opacity: 0.85;
  text-align: center;
}

/* =========================
   PRETTY DIVIDER
========================= */
.pretty-divider {
  margin: 44px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0)
  );
  position: relative;
}

.pretty-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 110px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(216, 200, 138, 0),
    rgba(216, 200, 138, 0.95),
    rgba(216, 200, 138, 0)
  );
  opacity: 0.9;
}

/* =========================
   FEATURED PRODUCTS
========================= */
.featured-products .product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .featured-products .product-showcase {
    grid-template-columns: 240px 1fr;
  }
}

.product-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-pill {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.product-pill:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.28);
}

.product-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.product-pill.active {
  background: var(--accent);
}

.product-pill.active .dot {
  background: white;
  opacity: 1;
}

.product-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--glass-strong);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 1100px) {
  .product-spotlight {
    grid-template-columns: 1fr 1fr;
  }
}

.product-spotlight img {
  width: 100%;
  border-radius: 18px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 32px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: 26px;
  font-family: "Playfair Display", serif;
  font-size: 5.5rem;
  opacity: 0.15;
  color: var(--bg-alt);
}

.quote {
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author .name {
  font-weight: 700;
}

.author .location {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =========================
   FAQs
========================= */
.faqs {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 28px;
}

.faq-wrap {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.faq-card {
  background: var(--glass-strong);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq-question i {
  transition: transform 0.25s ease;
}

.faq-card.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  line-height: 1.6;
  opacity: 0.95;
}

.faq-card.open .faq-answer {
  display: block;
}

/* =========================
   CONTACT FORM
========================= */
.contact-card {
  max-width: 700px;
  margin: auto;
  background: rgba(0, 0, 0, 0.25);
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-intro {
  text-align: center;
  margin-bottom: 24px;
  opacity: 0.95;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  width: 100%;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field textarea {
  width: 100%;
  display: block;
}

.field input {
  min-height: 48px;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  font-size: 0.9rem;
  opacity: 0.9;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: white;
  font-size: 1rem;
}

.contact-button-two {
  margin-top: 20px;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.contact-button-two:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

/* =========================
   FOOTER
========================= */
footer {
  background: #1f1f1f;
  padding: 70px 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* GRID */
.footer-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
}

/* Tablet layout */
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .brand-accordion {
    display: none;
  }
}

/* Desktop layout */
@media (min-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
  }
}

/* =========================
   BRAND COLUMN
========================= */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

/* Desktop aligns left */
@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

/* LOGO */
.footer-logo {
  width: 200px;
  opacity: 0.95;
}

/* 2x size on desktop */
@media (min-width: 1100px) {
  .footer-logo {
    width: 360px;
  }
}

/* TAGLINE */
.footer-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.5;
  max-width: 420px;
  opacity: 0.95;
}

/* ADDRESS */
.footer-address {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-contact span {
  opacity: 0.6;
}

footer a {
  color: white;
  text-decoration: none;
  opacity: 0.95;
}

footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* =========================
   HOURS
========================= */
.footer-hours h4,
.footer-map h4 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.footer-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-note {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================
   MAP
========================= */
.footer-map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.map-frame {
  position: relative;
  width: 100%;
  padding-top: 62%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.05) brightness(0.95);
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
  margin-top: 56px;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* =========================
   FOOTER SOCIAL
========================= */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-label {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

/* Icons row */
.footer-social-icons {
  display: flex;
  gap: 14px;
}

/* Icon buttons */
.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.footer-social-icons i {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Hover lift */
.footer-social-icons a:hover {
  transform: translateY(-3px);
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
/* Tablet: center map on its own row */
@media (min-width: 768px) and (max-width: 1099px) {
  .footer-map {
    grid-column: 1 / -1; /* span both columns */
    align-items: center;
    text-align: center;
  }

  .footer-map .map-frame {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* =========================
   ULTRA WIDE
========================= */
@media (min-width: 1800px) {
  body {
    font-size: 18px;
  }

  .section,
  .contact-inner,
  .feature-inner,
  .footer-inner {
    max-width: 1800px;
  }
}

/* =========================
   FORM OVERLAY + MODAL
========================= */
.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.form-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.loader-card,
.success-card {
  background: var(--glass-strong);
  border-radius: 28px;
  padding: 42px 36px;
  text-align: center;
  min-width: 280px;
  max-width: 90vw;
  border: 1px solid var(--border-soft);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: popIn 0.25s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.95) translateY(8px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Spinner */
.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--bg-alt);
  margin: 0 auto 18px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Icon */
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.success-icon i {
  font-size: 2rem;
  color: white;
}

.success-card h3 {
  margin: 12px 0 8px;
  font-size: 1.6rem;
}

.success-card p {
  opacity: 0.9;
  margin-bottom: 24px;
}
