/* ═══════════════════════════════════════════════
   MAIN.CSS — Imports + Page-specific overrides
   ═══════════════════════════════════════════════ */
@import url('variables.css');
@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('responsive.css');

/* ─── Intro / About Section ─── */
.intro-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ─── Contact Page ─── */
.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast);
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); }
.contact-info-item__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(6,43,99,0.08), rgba(255,138,0,0.08));
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item__icon svg { width: 20px; height: 20px; stroke: var(--color-primary-800); fill: none; stroke-width: 2; }
.contact-info-item__label { font-size: var(--text-xs); font-weight: var(--weight-bold); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--color-neutral-500); margin-bottom: 4px; }
.contact-info-item__val { font-size: var(--text-small); color: var(--color-neutral-800); font-weight: var(--weight-medium); }
.contact-info-item__val a { color: var(--color-primary-600); }
.contact-info-item__val a:hover { color: var(--color-accent-500); }

/* Map embed */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: var(--border-thin); box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 350px; display: block; border: none; }

/* ─── Reviews Page ─── */
.review-form-wrap {
  background: var(--color-neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: var(--border-thin);
}

/* ─── 404 Page ─── */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.not-found__code {
  font-family: var(--font-headings);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: var(--weight-bold);
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary-800), var(--color-accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}
.not-found h1 { font-size: var(--text-h2); margin-bottom: var(--space-sm); }
.not-found p { color: var(--color-neutral-500); margin-bottom: var(--space-xl); }
.not-found__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }

/* ─── Legal Pages ─── */
.legal-content {
  max-width: 800px;
  margin-inline: auto;
  padding-block: var(--space-3xl);
}
.legal-content h2 { font-size: var(--text-h3); margin-top: var(--space-2xl); margin-bottom: var(--space-sm); color: var(--color-primary-800); border-bottom: 2px solid var(--color-accent-500); padding-bottom: var(--space-xs); }
.legal-content h3 { font-size: 1.1rem; margin-top: var(--space-lg); margin-bottom: var(--space-xs); }
.legal-content ul { margin-bottom: var(--space-md); }
.legal-content p { color: var(--color-neutral-700); }

/* ─── Products Catalog Filters ─── */
.catalog-filters { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-xl); }
.catalog-filter-btn {
  padding: 9px var(--space-md);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-neutral-300);
  background: #fff;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.catalog-filter-btn:hover,
.catalog-filter-btn.active {
  background: var(--color-primary-800);
  border-color: var(--color-primary-800);
  color: #fff;
}

/* ─── Services Page ─── */
.services-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.services-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.services-img-badge {
  position: absolute; bottom: var(--space-md); left: var(--space-md);
  background: var(--glass-dark-bg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: #fff;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
}

/* ─── WhatsApp Floating Button ─── */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: var(--space-md);
  z-index: 800;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  color: #fff;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wa-float:hover { transform: scale(1.1); box-shadow: var(--shadow-xl); color: #fff; }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

@media (max-width: 640px) { .wa-float { display: none; } }

/* ─── Print ─── */
@media print {
  .site-header, .site-footer, .mobile-fab, .wa-float { display: none !important; }
  .page-layout { padding-top: 0; }
}
