/* ============================================================
   PRIME STORAGES – styles.css
   Modern, mobile-first, lightweight. Orange + Metallic Silver.
   ============================================================ */

/* ─── Custom Properties ─── */
:root {
  /* Brand colors */
  --orange-50:  #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --silver-100: #f4f4f5;
  --silver-200: #e4e4e7;
  --silver-300: #d4d4d8;
  --silver-400: #a1a1aa;
  --silver-500: #71717a;
  --silver-600: #52525b;
  --silver-700: #3f3f46;
  --silver-800: #27272a;
  --silver-900: #18181b;

  /* Semantic tokens */
  --color-primary:    var(--orange-500);
  --color-primary-hover: var(--orange-600);
  --color-primary-light: var(--orange-50);
  --color-text:       var(--silver-800);
  --color-text-muted: var(--silver-500);
  --color-bg:         #ffffff;
  --color-bg-alt:     var(--silver-100);
  --color-border:     var(--silver-200);
  --color-surface:    #ffffff;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 1rem;

  /* Spacing */
  --section-pad: clamp(2rem, 5vw, 4rem);
  --container-max: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.12);
}

/* ─── Dark Mode ─── */
@media (prefers-color-scheme: dark) {
  :root {
    --color-text:       #f0f0f0;
    --color-text-muted: var(--silver-400);
    --color-bg:         var(--silver-900);
    --color-bg-alt:     var(--silver-800);
    --color-border:     var(--silver-700);
    --color-surface:    var(--silver-800);
    --color-primary-light: rgba(249, 115, 22, .1);

    --shadow-sm: 0 1px 2px rgba(0,0,0,.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,.3);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.35);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.4);
  }
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-primary-hover); }
ul { list-style: none; }

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Utility ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badge Utility */
.badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible {
  outline-offset: 3px;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}
.btn-lg {
  padding: .85rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}
.btn-block { width: 100%; }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(24,24,27,.85);
  }
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  height: 56px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.main-nav a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover {
  background: var(--color-primary-hover) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: .75rem;
  }
  .main-nav a {
    font-size: 1.25rem;
    padding: .75rem 1.5rem;
  }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  padding-top: calc(72px + var(--section-pad));
  padding-bottom: var(--section-pad);
  background:
    radial-gradient(ellipse at 20% 80%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(161,161,170,.06) 0%, transparent 50%),
    var(--color-bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.trust-badge svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Hero Logo Showcase */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-showcase {
  width: clamp(220px, 30vw, 380px);
  height: clamp(220px, 30vw, 380px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  position: relative;
}
.hero-logo-showcase::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(249,115,22,.12);
}
.hero-logo-img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.1));
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-showcase { width: 200px; height: 200px; }
}

/* ═══════════════ FEATURES ═══════════════ */
.features {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.feature-card p {
  color: var(--color-text-muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* ═══════════════ GALLERY / CAROUSEL ═══════════════ */
.gallery {
  padding: var(--section-pad) 0;
}
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform .4s var(--ease);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

@media (max-width: 768px) {
  .carousel-btn--prev { left: 8px; }
  .carousel-btn--next { right: 8px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .2s var(--ease);
}
.carousel-dot.active,
.carousel-dot:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Carousel placeholder when no images */
.carousel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
  border: 2px dashed var(--color-border);
}

/* ═══════════════ REMOVAL ═══════════════ */
.removal {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}
.removal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.removal-content h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.removal-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.removal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.removal-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all 0.2s var(--ease);
}
.removal-list li:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
}
.removal-list svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Box Graphic Styling */
.removal-visual {
  display: flex;
  justify-content: center;
}
.box-cluster {
  position: relative;
  width: 260px;
  height: 260px;
}
.box-item {
  position: absolute;
  background: linear-gradient(135deg, var(--silver-200), var(--silver-300));
  border: 2px solid var(--color-border);
  border-radius: 8px;
}
.box-1 { width: 140px; height: 140px; bottom: 0; left: 0; z-index: 2; box-shadow: 10px 10px 30px rgba(0,0,0,0.1); }
.box-2 { width: 100px; height: 100px; bottom: 20px; right: 0; z-index: 1; opacity: 0.7; }
.box-3 { width: 90px; height: 90px; top: 0; left: 60px; z-index: 0; opacity: 0.5; }

@media (max-width: 840px) {
  .removal-grid { grid-template-columns: 1fr; gap: 3rem; }
  .removal-visual { order: -1; margin-bottom: 1rem; }
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.step p {
  color: var(--color-text-muted);
  font-size: .93rem;
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  margin-top: calc(1.5rem + 27px); /* aligns with step-number center */
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .steps { flex-direction: column; align-items: center; }
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
}

/* ═══════════════ PRICING ═══════════════ */
.pricing {
  padding: var(--section-pad) 0;
}
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(249,115,22,.08);
}
.pricing-card-header {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}
.pricing-label {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.pricing-size {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.pricing-size-note {
  opacity: .85;
  font-size: .95rem;
  margin-top: .35rem;
}
.pricing-card-body {
  padding: 2rem;
}
.pricing-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-list {
  margin-bottom: 1.75rem;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 0;
  font-size: .95rem;
  color: var(--color-text);
}
.pricing-list svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: .85rem;
  margin-top: 1rem;
}
.pricing-discount {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.25rem;
  padding: .85rem 1rem;
  background: var(--color-primary-light);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--orange-700);
}
.pricing-discount svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
@media (prefers-color-scheme: dark) {
  .pricing-discount { color: var(--orange-300); }
}

/* ═══════════════ FAQ ═══════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--color-surface);
  overflow: hidden;
  transition: box-shadow .2s var(--ease);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: .95rem;
}

/* ═══════════════ LOCATION ═══════════════ */
.location {
  padding: var(--section-pad) 0;
}
.location-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  background: var(--color-surface);
}
.location-info-bar {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.location-info-bar svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.location-info-bar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.location-info-bar p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.location-info-bar .btn {
  margin-left: auto;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; border-radius: 8px; }

/* Interactive Map Feeling Visual */
.map-placeholder {
  height: 400px;
  background: radial-gradient(circle at center, var(--silver-100) 0%, var(--silver-200) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-visual {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border: 4px solid #fff;
}
.map-pin::after {
  content: '';
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .location-info-bar { flex-direction: column; text-align: center; gap: 1rem; }
  .location-info-bar .btn { margin-left: 0; }
  .map-placeholder { height: 300px; }
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.form-group label .optional {
  font-weight: 400;
  color: var(--color-text-muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-family);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-status {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-status.error-msg {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info {
  padding-top: .5rem;
}
.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Contact Channels */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all .2s var(--ease);
}
.contact-channel:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.contact-channel svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}
.contact-channel:hover svg {
  color: var(--color-primary);
}
.contact-whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}
.contact-whatsapp:hover svg {
  color: #25d366;
}
.contact-trust {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-trust h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.contact-trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--color-text-muted);
}
.contact-trust svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  background: var(--silver-900);
  color: var(--silver-400);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1;
  min-width: 200px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: .75rem;
  /* Removed filter to show original logo colors */
}
.footer-brand p {
  font-size: .9rem;
  color: var(--silver-500);
}
.footer-nav {
  flex: 2; /* Give nav more space to prevent wrapping */
  min-width: 300px;
}
.footer-nav ul {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  gap: 1.5rem;
  align-items: center;
}
.footer-nav li {
  white-space: nowrap;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid var(--silver-800);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
}
.footer-bottom a {
  color: var(--silver-400);
}
.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ═══════════════ BACK TO TOP ═══════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.features-grid .feature-card,
.steps .step,
.faq-list .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.features-grid .feature-card.visible,
.steps .step.visible,
.faq-list .faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Print ─── */
@media print {
  .site-header, .back-to-top, .carousel-btn, .carousel-dots, .nav-toggle { display: none; }
  .hero { padding-top: 2rem; }
  body { color: #000; background: #fff; }
}
