/* ============================================================
   AutomatismosVLC — Diseño Claro y Moderno v2
   Paleta: blanco/gris claro + naranja vibrante + antracita
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-white:      #ffffff;
  --bg-light:      #f7f8fa;
  --bg-lighter:    #eef0f3;
  --bg-dark:       #111827;
  --bg-dark-soft:  #1f2937;
  --border:        #e2e5ea;
  --border-dark:   #d0d5dd;
  --orange:        #f05a00;
  --orange-light:  #ff7a29;
  --orange-pale:   #fff3ed;
  --orange-glow:   rgba(240,90,0,0.12);
  --orange-dark:   #c44800;
  --text-dark:     #111827;
  --text-body:     #374151;
  --text-secondary:#6b7280;
  --text-muted:    #9ca3af;
  --text-white:    #ffffff;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-orange: 0 8px 28px rgba(240,90,0,0.30);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
  --font-main:     'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-white); color: var(--text-body); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-main); font-weight: 700; line-height: 1.18; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

.highlight { color: var(--orange); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 16px;
  background: var(--orange-pale);
  border: 1px solid rgba(240,90,0,0.2);
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-title { margin-bottom: 1rem; }
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section     { padding: 90px 0; }
.section--white   { background: var(--bg-white); }
.section--light   { background: var(--bg-light); }
.section--lighter { background: var(--bg-lighter); }
.section--dark    { background: var(--bg-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 36px rgba(240,90,0,0.40);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--bg-dark-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--orange-pale);
  color: var(--orange);
  border: 1.5px solid rgba(240,90,0,0.25);
}
.btn-ghost:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
}
/* Real logo image in navbar */
.navbar-logo-img {
  height: 44px;
  max-width: 200px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
/* Footer logo — invert so it shows white on dark bg */
.footer-logo-img {
  height: 50px;
  max-width: 210px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
  opacity: 0.9;
}
.navbar-name {
  font-family: var(--font-main);
  font-weight: 900;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.navbar-name .brand-main {
  font-size: 1.15rem;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.navbar-name .brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.navbar-links a {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--text-dark); }
.navbar-links a:hover::after, .navbar-links a.active::after { transform: scaleX(1); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-phone {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.navbar-phone:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 5% 32px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ---------- Page Hero Banner ---------- */
.page-hero {
  padding: 130px 0 70px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(240,90,0,0.05) 100%);
  pointer-events: none;
}
.page-hero-dot {
  position: absolute;
  top: -60px; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,90,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Hero (Home) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--bg-dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Strong overlay so text is always readable */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      rgba(17,24,39,0.93) 0%,
      rgba(17,24,39,0.82) 45%,
      rgba(17,24,39,0.55) 100%),
    linear-gradient(to top,
      rgba(17,24,39,0.88) 0%,
      transparent 45%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #fff;
}
.hero-content h1 { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-light);
  padding: 8px 20px;
  background: rgba(240,90,0,0.15);
  border: 1px solid rgba(240,90,0,0.35);
  border-radius: 50px;
  margin-bottom: 1.6rem;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 { animation: fadeInUp 0.7s 0.1s ease both; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.2rem;
  line-height: 1.8;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-main);
  font-weight: 500;
}
.hero-feature .chk {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ---------- Stats ---------- */
.stats-band {
  background: var(--bg-dark);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-family: var(--font-main);
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-5px);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(240,90,0,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  border-color: var(--orange);
  filter: brightness(1.1);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-main);
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.why-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(240,90,0,0.4);
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(240,90,0,0.25);
  background: var(--orange-pale);
  transform: translateX(4px);
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(240,90,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item:hover .why-icon { background: var(--orange); border-color: var(--orange); }
.why-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.why-item p  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(240,90,0,0.2);
  transform: translateY(-3px);
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-pale);
  border: 2px solid rgba(240,90,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main);
  font-weight: 800; font-size: 1rem;
  color: var(--orange);
}
.author-name { font-family: var(--font-main); font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.author-type { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-lighter);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
/* Video badge */
.gallery-video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.05em;
}
/* Play button overlay */
.gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gallery-play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.gallery-item:hover .gallery-play-btn {
  transform: scale(1.1);
  background: var(--orange);
}
.gallery-play-btn svg {
  width: 26px; height: 26px;
  fill: var(--orange);
  margin-left: 3px;
  transition: fill var(--transition);
}
.gallery-item:hover .gallery-play-btn svg { fill: #fff; }

/* Gallery upload note */
.gallery-upload-note {
  background: var(--bg-light);
  border: 2px dashed var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  text-align: center;
  margin-top: 28px;
}
.gallery-upload-note .up-icon { font-size: 2.5rem; margin-bottom: 14px; }
.gallery-upload-note h3 { margin-bottom: 8px; font-size: 1.2rem; }
.gallery-upload-note p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 18px; }

/* Filters */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(240,90,0,0.3);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 90px 0;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,90,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.2rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,90,0,0.1);
  background: var(--bg-white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 14px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: rgba(240,90,0,0.25);
  background: var(--orange-pale);
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(240,90,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-text h4 {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.97rem;
  color: var(--text-dark);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--orange); }
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 230px;
  margin-top: 6px;
  box-shadow: var(--shadow-sm);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---------- Services Page Cards ---------- */
.service-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,90,0,0.2);
  transform: translateY(-4px);
}
.service-detail-header {
  background: var(--bg-light);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.service-detail-icon {
  width: 56px; height: 56px;
  background: var(--orange-pale);
  border: 1.5px solid rgba(240,90,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.service-detail-body { padding: 24px 26px; }
.service-detail-body h3 { margin-bottom: 10px; }
.service-detail-body p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
.service-detail-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-detail-body li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-body);
}
.service-detail-body li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; }

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.process-step {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(240,90,0,0.2);
  transform: translateY(-3px);
}
.step-number {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(240,90,0,0.08);
  line-height: 1;
  margin-bottom: 10px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 10px; }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}
.footer-brand .brand-main { color: #fff; }
.footer-brand .brand-sub { color: var(--orange); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 14px 0 22px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange-pale);
  border-color: rgba(240,90,0,0.3);
  color: var(--orange);
}
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-list .ico { color: var(--orange); font-size: 1rem; }
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
}
.footer-badge .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: fabPop 0.5s 1s cubic-bezier(0.34,1.56,0.64,1) both;
  cursor: pointer;
  border: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(17,24,39,0.93);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-inner img, .lightbox-inner video {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 36px; height: 36px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--orange-dark); transform: scale(1.1); }
.lightbox-caption {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-main);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: rgba(240,90,0,0.3); box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item summary .faq-icon { color: var(--orange); font-size: 1.3rem; flex-shrink: 0; }
.faq-item p { margin-top: 14px; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; }

/* ---------- Animations ---------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(.85); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fabPop {
  from { opacity:0; transform:scale(0); }
  to   { opacity:1; transform:scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Tag clouds ---------- */
.tag-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-main);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid;
}
.tag-orange { color: var(--orange); border-color: rgba(240,90,0,0.25); background: var(--orange-pale); }
.tag-gray   { color: var(--text-secondary); border-color: var(--border); background: var(--bg-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 18px; }
  .hero-actions { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
}
