/* =========================================================
   A1 IRON TRADER — Industrial, bold, modern stylesheet
   ========================================================= */

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --navy-soft: #22345a;
  --steel: #6b7280;
  --steel-light: #9ca3af;
  --amber: #f59e0b;
  --amber-hot: #fbbf24;
  --ink: #0b1222;
  --paper: #f6f7f9;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--navy);
}

.accent { color: var(--amber); }

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--amber);
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--amber);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--steel);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head.light .section-title { color: var(--white); }
.section-head.light .section-sub { color: rgba(255,255,255,0.75); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.6);
}
.btn-primary:hover {
  background: var(--amber-hot);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(245, 158, 11, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn.small { padding: 0.7rem 1.3rem; font-size: 0.8rem; }
.btn.full  { width: 100%; }

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  flex-wrap: wrap;
}
.topbar-contact {
  display: flex;
  gap: 1.2rem;
}
.topbar-contact a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.topbar-contact a:hover { color: var(--amber-hot); }

@media (max-width: 640px) {
  .topbar-inner { justify-content: center; gap: 0.5rem; }
  .topbar-inner > span { display: none; }
  .topbar-contact { gap: 0.8rem; font-size: 0.75rem; }
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .navbar { top: 54px; }
}
.navbar.scrolled {
  background: rgba(15, 26, 48, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--navy-deep);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 900;
}
.logo-text small {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 2px;
}
@media (max-width: 520px) {
  .logo-text strong { font-size: 1rem; }
  .logo-text small { display: none; }
  .logo-img { width: 40px; height: 40px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.6rem 0.95rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--amber); }
.nav-links .nav-cta {
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--amber-hot);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  height: 2px; width: 26px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 500px; padding: 1rem; }
  .nav-links a { padding: 1rem; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin: 0.75rem 0 0; text-align: center; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,26,48,0.88), rgba(26,39,68,0.82)),
    url('images/WhatsApp Image 2026-04-17 at 9.40.28 PM (1).jpeg') center/cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0) 0,
      rgba(0,0,0,0) 20px,
      rgba(245,158,11,0.03) 20px,
      rgba(245,158,11,0.03) 21px
    ),
    radial-gradient(ellipse at top right, rgba(245,158,11,0.15), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--amber);
  border-left: 3px solid var(--amber);
  padding-left: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 1.2rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
  max-width: 700px;
}

.hero-owner {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.hero-owner strong { color: var(--amber); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  max-width: 640px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 3px; height: 8px;
  background: var(--amber);
  margin: 6px auto;
  border-radius: 2px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* =========================================================
   Metal divider
   ========================================================= */
.metal-divider {
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--amber) 0,
      var(--amber) 20px,
      var(--navy) 20px,
      var(--navy) 40px
    );
}

/* =========================================================
   Sections — shared
   ========================================================= */
.section {
  padding: 6rem 0;
  position: relative;
}

/* =========================================================
   About
   ========================================================= */
.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-photo { position: relative; }
.photo-frame {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(245,158,11,0.05) 0,
      rgba(245,158,11,0.05) 12px,
      transparent 12px, transparent 24px);
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  z-index: 1;
}
.photo-placeholder svg { width: 80px; height: 80px; margin-bottom: 0.5rem; }
.photo-placeholder span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.photo-placeholder small {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.photo-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--amber);
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}
.photo-badge strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}
.photo-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.about-text .section-title { margin-top: 0.5rem; }

.lead {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.about-text p { color: var(--steel); margin-bottom: 1rem; }

.about-points {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.about-points li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-weight: 500;
}
.about-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .photo-frame { max-width: 360px; margin: 0 auto; }
  .photo-badge { right: 10%; }
}

/* =========================================================
   Services
   ========================================================= */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f6 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.service-card p { color: var(--steel); font-size: 0.95rem; }

/* =========================================================
   Portfolio
   ========================================================= */
.portfolio {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.project-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,39,68,0.35), rgba(26,39,68,0.85));
}
.project-img[data-zone="BH"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.40.28 PM (1).jpeg'); }
.project-img[data-zone="GB"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.42.23 PM (1).jpeg'); }
.project-img[data-zone="BP"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.42.22 PM.jpeg'); }
.project-img[data-zone="AM"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.42.24 PM.jpeg'); }
.project-img[data-zone="PJ"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.40.28 PM.jpeg'); }
.project-img[data-zone="FD"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.42.25 PM.jpeg'); }
.project-img[data-zone="HT"] { background-image: url('images/WhatsApp Image 2026-04-17 at 9.43.11 PM.jpeg'); }

.zone-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--amber);
  color: var(--navy);
  padding: 0.4rem 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
  z-index: 1;
}

.project-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-body h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.project-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.project-body p { color: var(--steel); font-size: 0.95rem; }

.highlight-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(245,158,11,0.06) 0,
      rgba(245,158,11,0.06) 10px,
      transparent 10px, transparent 20px);
}
.highlight-card .project-body { padding: 0; position: relative; z-index: 1; }
.highlight-card h3 { color: var(--white); font-size: 1.6rem; }
.highlight-card p { color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; }
.highlight-card strong { color: var(--amber); }
.highlight-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  align-self: flex-start;
  width: fit-content;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f6 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(15,26,48,0.9));
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* =========================================================
   Why choose us
   ========================================================= */
.why {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245,158,11,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.08), transparent 40%);
  z-index: 0;
}
.why .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  background: rgba(245,158,11,0.08);
}
.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; }
.why-stat {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.why-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { background: var(--paper); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  position: relative;
  border-bottom: 3px solid var(--amber);
}
.quote-mark {
  font-family: 'Bebas Neue', serif;
  font-size: 4rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: 0.8rem;
}
.testimonial-card blockquote {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card figcaption strong {
  display: block;
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.testimonial-card figcaption span {
  color: var(--steel);
  font-size: 0.85rem;
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,0.1), transparent 50%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(245,158,11,0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.contact-item a, .contact-item span {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}
.contact-item a:hover { color: var(--amber); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-top: 0.5rem;
  transition: all 0.25s ease;
  align-self: flex-start;
}
.whatsapp-btn svg { width: 22px; height: 22px; }
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -6px rgba(37,211,102,0.5);
}

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label > span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(0,0,0,0.35);
}
.contact-form select option { background: var(--navy); color: var(--white); }

.form-note {
  font-size: 0.9rem;
  color: var(--amber);
  min-height: 1.2rem;
  text-align: center;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.15);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

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

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--amber); }

.footer-logo { margin-bottom: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(37,211,102,0.5);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse 2.5s infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-whatsapp svg { width: 28px; height: 28px; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   Scroll-reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
