/* =============================================
   GORDILLO STEEL — CSS Principal
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

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

:root {
  --steel: #c0c0c0;
  --steel-light: #f8f9fa;
  --steel-dark: #777;
  --gold: #c5a028;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
  --black: #000000;
  --dark-gray: #1a1a1a;
  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --bg-section: #f8f9fa;
  --text: #111111;
  --text-muted: #555555;
  --accent: #c5a028;
  --wa: #25d366;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0,0,0,0.06);
  --transition: .4s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: .65rem 1rem;
  text-align: center;
  font-size: .82rem;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: slideDown .6s ease both;
  letter-spacing: 0.02em;
}
.topbar span { display: flex; align-items: center; gap: .4rem; }
.topbar .promo { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: .5rem 2rem .5rem 230px; /* Adjusted to accommodate 210px logo */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Links to the right */
  gap: 2rem;
  min-height: 80px;
  transition: all var(--transition);
}
nav.scrolled { background: #0a0a0a; box-shadow: 0 4px 30px rgba(0,0,0,0.3); min-height: 70px; }

.nav-logo {
  position: absolute;
  left: 2rem;
  top: 0;
  background: #000;
  border-radius: 0 0 105px 105px; /* Adjusted for 210px width */
  width: 210px; /* Reduced from 260px */
  height: 230px; /* Reduced from 280px */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 1100;
  transition: all var(--transition);
  padding: 25px; /* Adjusted padding */
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
}

.nav-logo img { 
  width: 100%; 
  height: auto; 
  display: block; 
  object-fit: contain; 
}
nav.scrolled .nav-logo { width: 140px; height: 160px; border-radius: 0 0 70px 70px; padding: 15px; } /* Increased scrolled size */

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--black);
  color: #fff !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--accent); box-shadow: 0 6px 20px rgba(197,160,40,0.3); }
.nav-cta::after { display: none !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: #ffffff; border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 4rem 10% 4rem 14%; /* Adjusted left padding for 210px logo */
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%), url('img/hero1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(197,160,40,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.pretitle {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .8rem;
  opacity: 0;
  animation: fadeUp .7s .2s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .7s .4s ease both;
}
.hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp .7s .6s ease both;
  font-weight: 400;
}



.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .9s ease both;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--transition);
  box-shadow: 0 5px 15px rgba(197,160,40,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-primary:hover { transform: translateY(-2px); background: #fff; color: var(--black); }

.btn-secondary {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  padding: .75rem 1.8rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ---- HERO IMAGE REMOVED (NOW BG) ---- */
.hero-image-wrap { display: none; }
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}
.hero-image-wrap:hover .hero-img-main { transform: scale(1.05); }

/* ---- SECTION SHARED ---- */
section { padding: 5rem 6rem; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: .6rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 3.5rem;
}

/* ---- PRODUCTOS ---- */
#productos { background: var(--bg-section); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover img { transform: scale(1.08); }
.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--black);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .4rem .8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  border: 1px solid var(--gold);
}
.product-info { padding: 1.5rem; }
.product-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: .5rem;
}
.product-info p {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.btn-detalles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border: 1.5px solid var(--black);
  border-radius: 50px;
  padding: .5rem 1.2rem;
  transition: all var(--transition);
  width: 100%;
  cursor: pointer;
  background: transparent;
}
.btn-detalles:hover { background: var(--black); color: #fff; transform: translateY(-2px); }

/* ---- PRODUCT CATEGORIES ---- */
.product-categories {
  margin-top: 8rem;
  padding: 6rem;
  background: var(--bg-section);
  border-radius: 40px;
}
.categories-header { text-align: center; margin-bottom: 4rem; }
.categories-header h3 { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 3.5rem; 
  color: var(--black); 
  line-height: 1;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Matched with products-grid */
  gap: 1.5rem; /* Matched gap */
  margin-bottom: 4rem;
}
.cat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Matched with product-card */
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04); /* Matched with product-card */
}
.cat-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.08); /* Matched with product-card */
  border-color: var(--gold); /* Matched with product-card */
}
.cat-img { 
  width: 100%; 
  aspect-ratio: 4/3; /* Matched with product-card */
  overflow: hidden; 
  background: #f9f9f9; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem; /* Slightly reduced padding to allow larger image display */
}
.cat-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  transition: transform 0.6s ease; 
}
.cat-card:hover .cat-img img { transform: scale(1.1); }
.cat-content { padding: 1.5rem; text-align: left; } /* Changed text-align to left to match products */
.cat-content h4 { font-size: 1.15rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; }
.cat-content p { font-size: 0.92rem; color: var(--text-muted); }

.other-products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.other-item {
  background: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}
.other-item span { color: var(--gold); }

@media (max-width: 992px) {
  .product-categories { padding: 4rem 2rem; }
}
@media (max-width: 768px) {
  .product-categories { margin-top: 4rem; border-radius: 24px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .other-products-list { gap: 0.8rem; }
  .other-item { font-size: 0.8rem; padding: 0.6rem 1rem; }
}



/* ---- PRODUCT MODAL ---- */
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9); /* Translucent dark background */
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-modal.open { display: flex; opacity: 1; }

.modal-content {
  background: #ffffff;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-modal.open .modal-content { transform: scale(1); }

@media (min-width: 1024px) {
  .modal-content {
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 750px;
    border-radius: 24px;
  }
}

.modal-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  z-index: 100;
  background: #fff;
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.modal-body { display: grid; grid-template-columns: 1fr; height: 100%; }

@media (min-width: 1024px) {
  .modal-body { grid-template-columns: 1fr 1fr; }
}

.modal-img { 
  background: #f4f4f4; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 1.5rem;
  position: relative;
}
.modal-img img { 
  width: 100%; 
  height: auto; 
  max-height: 80vh;
  border-radius: 12px; 
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.modal-text { 
  padding: 2rem 1.5rem; 
  display: flex; 
  flex-direction: column; 
  gap: 2rem;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .modal-text { padding: 4rem; overflow-y: auto; }
}

.modal-header { display: flex; flex-direction: column; gap: 0.8rem; }
.modal-text h2 { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  color: var(--black); 
  line-height: 1;
}
.modal-desc { 
  font-size: 1.1rem; 
  color: var(--text-muted); 
  line-height: 1.8; 
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.modal-info-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

.info-item h4 { 
  font-size: .9rem; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 1.2rem; 
  letter-spacing: 0.15em; 
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-item h4::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.05); }

.info-item ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.info-item ul li { 
  font-size: .95rem; 
  color: var(--black); 
  font-weight: 600; 
  display: flex; 
  gap: .8rem; 
  align-items: center;
  background: #f9f9f9;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
}
.info-item ul li::before { content: '✓'; color: var(--gold); font-weight: 900; }

.info-item p { 
  font-size: 1.05rem; 
  color: var(--black); 
  font-weight: 600; 
  line-height: 1.6;
}

.modal-actions { margin-top: auto; padding-top: 2rem; }
.btn-modal-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 100%;
}
.btn-modal-wa:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(197,160,40,0.3); }

/* ---- INFINITE CAROUSEL (DARK PREMIUN) ---- */
#calidad-detalles { 
  background: #111111; /* Deep premium dark */
  padding: 8rem 0; 
  overflow: hidden;
}
#calidad-detalles .section-title { color: #ffffff; }
#calidad-detalles .section-desc { color: #aaaaaa; }
#calidad-detalles .reveal:first-child { padding: 0 6rem; margin-bottom: 4rem; }

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(350px * 14 + 1.5rem * 14); /* Width of all items (7 original + 7 clones) */
  animation: scrollInfinite 40s linear infinite;
  gap: 1.5rem;
}
.carousel-track:hover { animation-play-state: paused; }

.detail-item {
  flex: 0 0 350px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 7 - 1.5rem * 7)); }
}

.detail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.detail-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.detail-item:hover img { transform: scale(1.1); }
.detail-item:hover .detail-overlay { opacity: 1; }
.detail-item:hover .detail-overlay span { transform: translateY(0); }

@media (max-width: 768px) {
  #calidad-detalles { padding: 5rem 0; }
  #calidad-detalles .reveal:first-child { padding: 0 2rem; }
  .detail-item { flex: 0 0 280px; }
  @keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 7 - 1.5rem * 7)); }
  }
}
/* ---- SOLUCIONES POR SECTOR ---- */
#soluciones { background: #fff; padding: 8rem 6rem; }
.soluciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.solucion-card {
  padding: 0; /* Remove padding to let image bleed to edges */
  background: #fdfdfd;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* For image corners */
}
.solucion-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.solucion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.solucion-card:hover .solucion-img img { transform: scale(1.1); }

.solucion-icon {
  width: 50px; height: 50px;
  background: var(--black);
  color: var(--gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: -25px 0 1rem 2rem; /* Floating over the image */
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.solucion-card h3, .solucion-card p { padding: 0 2rem; }
.solucion-card h3 { margin-top: 0.5rem; }
.solucion-card p { padding-bottom: 2.5rem; margin-top: 0.8rem; }

.solucion-card:hover .solucion-icon { transform: rotateY(180deg); background: var(--gold); color: #fff; }

.solucion-card h3 { font-size: 1.4rem; color: var(--black); font-weight: 700; }
.solucion-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  #soluciones { padding: 5rem 2rem; }
}

/* ---- GALERÍA REMOVED ---- */
#galeria, .gallery-grid { display: none; }



/* ---- NOSOTROS ---- */
#nosotros { background: var(--bg-section); border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.about-grid { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 5rem; 
  align-items: flex-start; 
}
.about-image-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-image img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.stat-box {
  text-align: center;
  background: #151515; /* Dark premium background */
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem 1rem;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.stat-box:hover { 
  border-color: var(--gold); 
  transform: translateY(-5px); 
  background: #1a1a1a;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { 
  font-size: .8rem; 
  color: #aaaaaa; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
}

.values-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.values-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.values-list li .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ---- CONTACTO ---- */
#contacto { background: var(--bg-body); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--black);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item h4 { font-size: .9rem; color: var(--text-muted); margin-bottom: .3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p { font-size: 1.05rem; color: var(--black); font-weight: 600; }

.form-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; color: var(--black); margin-bottom: .5rem; font-weight: 700; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #fcfcfc;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  color: var(--black);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(197,160,40,0.1); }
.form-group select option { background: #fff; color: var(--black); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-form {
  width: 100%;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-form:hover { transform: translateY(-3px); background: var(--accent); box-shadow: 0 12px 30px rgba(197,160,40,0.3); }

/* ---- FOOTER ---- */
footer {
  background: #050505;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 5rem 6rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand img.footer-logo {
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: .95rem; color: #888; line-height: 1.8; max-width: 320px; }
.footer-col h4 { font-size: .95rem; font-weight: 800; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-col ul a { color: #aaa; text-decoration: none; font-size: .95rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { color: #aaa; font-size: .95rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .85rem;
  color: #666;
}
.footer-bottom a { color: var(--gold); text-decoration: none; font-weight: 700; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 999;
  text-decoration: none;
  animation: pulse 2.5s infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.1); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  section { padding: 4rem 3rem; }
  .hero { padding: 4rem 10% 4rem 14%; }
  footer { padding: 3rem 3rem 1.5rem; }
}

@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem; min-height: auto; text-align: center; justify-content: center; background-attachment: scroll; }
  .hero-content { padding-left: 0; } /* Reset padding for mobile centering */
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  
  section { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  
  nav { padding: .8rem 1.2rem; justify-content: flex-end; min-height: 70px; }
  .nav-logo { width: 150px; height: 170px; left: 50%; transform: translateX(-50%); padding: 20px; border-radius: 0 0 75px 75px; }
  nav.scrolled .nav-logo { width: 90px; height: 110px; border-radius: 0 0 45px 45px; padding: 12px; }
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: #0a0a0a; 
    padding: 2rem; 
    gap: 1.5rem; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    z-index: 1150; /* Ensure it stays above the hanging logo */
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; z-index: 1200; }
  
  .topbar { gap: .8rem; font-size: .75rem; justify-content: center; }
}

@media (max-width: 480px) {
  .topbar { flex-direction: column; gap: 0.4rem; padding: 0.8rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-box { padding: 1.5rem 1rem; }
  .hero h1 { font-size: 2.4rem; }
  .nav-logo { width: 130px; height: 150px; padding: 15px; border-radius: 0 0 65px 65px; }
  nav.scrolled .nav-logo { width: 80px; height: 95px; padding: 10px; border-radius: 0 0 40px 40px; }
  .categories-grid { grid-template-columns: 1fr; }
}
