/* ============================================================
   Automatismo Valencia — Diseño Claro y Profesional
   Fondo blanco/gris muy claro · Azul marino + naranja
   ============================================================ */

@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');

/* ---------- Variables ---------- */
:root {
  --bg-white:      #ffffff;
  --bg-light:      #f8f9fb;
  --bg-lighter:    #f1f3f7;
  --bg-dark:       #1a2744;
  --bg-dark-soft:  #243258;
  --border:        #e5e7eb;
  --border-md:     #d1d5db;
  --orange:        #f05a00;
  --orange-light:  #ff7b2e;
  --orange-pale:   #fff6f0;
  --orange-dark:   #c44800;
  --text-dark:     #1a2744;
  --text-body:     #374151;
  --text-secondary:#6b7280;
  --text-muted:    #9ca3af;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:     0 12px 44px rgba(0,0,0,0.10);
  --shadow-orange: 0 8px 28px rgba(240,90,0,0.30);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --transition:    0.27s 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.2; color: var(--text-dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
.highlight { color: var(--orange); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.75rem;
  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.18);
  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: 0.9rem; }
.section-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.78;
}

/* ---------- Layout ---------- */
.container { width: 90%; max-width: 1180px; margin: 0 auto; }
.section           { padding: 86px 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.93rem; font-weight: 700;
  padding: 13px 28px; 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); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(240,90,0,0.38); }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--border-md); }
.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.2); }
.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: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  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; }
.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.12rem; color: var(--text-dark); letter-spacing: 0.06em; text-transform: uppercase; }
.navbar-name .brand-sub  { font-size: 0.66rem; font-weight: 600; color: var(--orange); letter-spacing: 0.14em; text-transform: uppercase; }
.navbar-links { display: flex; align-items: center; gap: 32px; 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.86rem; font-weight: 700; color: var(--text-secondary); transition: color var(--transition); }
.navbar-phone:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; 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: 70px; left: 0; right: 0;
  background: rgba(255,255,255,0.99); backdrop-filter: blur(18px);
  padding: 20px 5% 28px; 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.05rem; font-weight: 600; color: var(--text-secondary); padding: 13px 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: 18px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 70px;
  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; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(26,39,68,0.92) 0%, rgba(26,39,68,0.78) 50%, rgba(26,39,68,0.45) 100%),
    linear-gradient(to top, rgba(26,39,68,0.85) 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: 55px 55px;
}
.hero-content { position: relative; z-index: 2; max-width: 660px; 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.76rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange-light);
  padding: 8px 20px; background: rgba(240,90,0,0.14);
  border: 1px solid rgba(240,90,0,0.32); border-radius: 50px; margin-bottom: 1.5rem;
  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.08rem; color: rgba(255,255,255,0.8); margin-bottom: 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: 22px; flex-wrap: wrap; margin-top: 2.6rem; animation: fadeInUp 0.7s 0.4s ease both; }
.hero-feature { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; color: rgba(255,255,255,0.72); 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; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.45); font-family: var(--font-main); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: bounce 2.2s infinite; }
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); }

/* ---------- Stats Band ---------- */
.stats-band { background: var(--bg-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card { padding: 42px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); 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: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.stat-label { font-size: 0.84rem; 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(290px, 1fr)); gap: 20px; }
.service-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px 24px; transition: var(--transition); 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: 54px; height: 54px; background: var(--orange-pale); border: 1.5px solid rgba(240,90,0,0.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--orange); border-color: var(--orange); }
.service-card h3 { margin-bottom: 9px; font-size: 1.08rem; }
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.72; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.84rem; 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: 56px; 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: 460px; object-fit: cover; display: block; }
.why-image-badge { position: absolute; bottom: 22px; left: 22px; background: var(--orange); color: #fff; font-family: var(--font-main); font-weight: 700; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.86rem; box-shadow: 0 4px 16px rgba(240,90,0,0.38); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 14px; padding: 16px 18px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.why-item:hover { border-color: rgba(240,90,0,0.2); background: var(--orange-pale); transform: translateX(4px); }
.why-icon { width: 42px; height: 42px; 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.15rem; flex-shrink: 0; }
.why-item:hover .why-icon { background: var(--orange); border-color: var(--orange); }
.why-item h4 { font-size: 0.93rem; margin-bottom: 3px; }
.why-item p  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ---------- Gallery Preview (Home) ---------- */
.gallery-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gp-item { border-radius: var(--radius-md); overflow: hidden; position: relative; height: 220px; cursor: pointer; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gp-item:hover img { transform: scale(1.06); }
.gp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,39,68,0.70) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity var(--transition); }
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span { color: #fff; font-family: var(--font-main); font-weight: 600; font-size: 0.84rem; }

/* ---------- Gallery Page ---------- */
.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 { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,39,68,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.88rem; color: #fff; }
.gallery-upload-note { background: var(--bg-light); border: 2px dashed var(--border-md); border-radius: var(--radius-lg); padding: 44px 32px; text-align: center; margin-top: 26px; }
.gallery-upload-note .up-icon { font-size: 2.2rem; margin-bottom: 12px; }
.gallery-upload-note h3 { margin-bottom: 7px; font-size: 1.15rem; }
.gallery-upload-note p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-btn { font-family: var(--font-main); font-size: 0.84rem; 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.28); }

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

/* ---------- CTA Section ---------- */
.cta-section { padding: 86px 0; background: var(--bg-dark); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 650px; height: 380px; background: radial-gradient(ellipse, rgba(240,90,0,0.10) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.62); font-size: 1.03rem; margin-bottom: 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: 52px; align-items: start; }
.contact-form { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 4px; }
.contact-form .form-subtitle { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-main); font-size: 0.83rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.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: 12px 15px; color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.93rem; 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: 38px; }
.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.09); background: var(--bg-white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; }
.form-success { display: none; text-align: center; padding: 28px; }
.form-success .success-icon { font-size: 2.8rem; margin-bottom: 12px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; 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.22); background: var(--orange-pale); }
.contact-info-icon { width: 42px; height: 42px; 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.05rem; flex-shrink: 0; }
.contact-info-text h4 { font-family: var(--font-main); font-size: 0.76rem; 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.95rem; 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: 280px; margin-top: 6px; box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---------- Page Hero Banner ---------- */
.page-hero { padding: 126px 0 64px; background: var(--bg-light); border-bottom: 1px solid var(--border); }

/* ---------- Brands Grid ---------- */
.brands-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 1.5rem; }
.brand-pill {
  font-family: var(--font-main); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.08em; color: var(--text-dark);
  padding: 14px 32px; background: var(--bg-white);
  border: 2px solid var(--border); border-radius: 50px;
  transition: var(--transition);
}
.brand-pill:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Servicios Page ---------- */
.services-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.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.18); transform: translateY(-4px); }
.service-detail-header { background: var(--bg-light); padding: 22px 24px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--border); }
.service-detail-icon { width: 54px; height: 54px; 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; }
.service-detail-body { padding: 22px 24px; }
.service-detail-body h3 { margin-bottom: 9px; }
.service-detail-body p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.72; }
.service-detail-body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-detail-body li { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; color: var(--text-body); }
.service-detail-body li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 2rem; }
.process-step { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 20px; text-align: center; transition: var(--transition); }
.process-step:hover { box-shadow: var(--shadow-md); border-color: rgba(240,90,0,0.18); transform: translateY(-3px); }
.step-number { font-family: var(--font-main); font-size: 3.2rem; font-weight: 900; color: rgba(240,90,0,0.08); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 1.7rem; margin-bottom: 8px; }
.process-step h4 { font-size: 0.97rem; margin-bottom: 7px; }
.process-step p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; cursor: pointer; transition: border-color var(--transition), box-shadow var(--transition); margin-bottom: 10px; }
.faq-item:hover { border-color: rgba(240,90,0,0.25); box-shadow: var(--shadow-sm); }
.faq-item summary { font-family: var(--font-main); font-weight: 700; font-size: 0.98rem; 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.2rem; flex-shrink: 0; }
.faq-item p { margin-top: 12px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* ---------- Lightbox ---------- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(26,39,68,0.92); align-items: center; justify-content: center; padding: 20px; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 880px; width: 100%; }
.lightbox-inner img { width: 100%; border-radius: var(--radius-md); max-height: 82vh; object-fit: contain; }
.lightbox-close { position: absolute; top: -14px; right: -14px; width: 34px; height: 34px; 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: 11px; font-family: var(--font-main); font-weight: 600; color: rgba(255,255,255,0.72); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand .brand-main { color: #fff; }
.footer-brand .brand-sub { color: var(--orange); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin: 12px 0 20px; max-width: 270px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; 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.88rem; color: rgba(255,255,255,0.42); transition: var(--transition); }
.social-link:hover { background: var(--orange-pale); border-color: rgba(240,90,0,0.28); color: var(--orange); }
.footer-col h4 { font-family: var(--font-main); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.52); }
.footer-contact-list .ico { color: var(--orange); font-size: 0.95rem; }
.footer-contact-list a { color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--orange); }
.footer-bottom { padding-top: 24px; 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.8rem; color: rgba(255,255,255,0.28); }
.footer-badge { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: rgba(255,255,255,0.32); padding: 4px 13px; border: 1px solid rgba(255,255,255,0.07); border-radius: 50px; }
.footer-badge .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.38); 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.52); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip { position: absolute; right: 68px; white-space: nowrap; background: var(--bg-dark); color: #fff; font-family: var(--font-main); font-size: 0.8rem; font-weight: 600; padding: 6px 13px; 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); }

/* ---------- 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(26px); transition:opacity 0.6s ease, transform 0.6s 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; }

/* ---------- 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: 60px 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: 26px; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gp-item { height: 160px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
  .hero-actions { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
}
