/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

:root {
  --teal:      #1a6b73;
  --teal-dark: #134f56;
  --teal-light:#e8f4f5;
  --gold:      #e8a020;
  --dark:      #111820;
  --mid:       #3a4a52;
  --light:     #f4f7f8;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(26,107,115,.13);
  --trans:     .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  padding-top: 100px;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

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

/* =========================================
   TOP BAR
========================================= */
.topbar {
  background: var(--teal-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--trans);
}
.topbar a:hover { color: var(--gold); }

.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; }

.topbar-left span { display: flex; align-items: center; gap: 6px; }

/* =========================================
   HEADER / NAV
========================================= */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 60px;
  padding: 15px 40px;
  /* RICH SHADOW - always active */
  box-shadow: 0 20px 40px -12px rgba(26, 107, 115, 0.35),
  0 0 0 1px rgba(232, 160, 32, 0.15);
  z-index: 1000;
  width: 95%;
  max-width: 1200px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

/* HOVER - changes to match your site colors */
header:hover {
  box-shadow: 0 25px 50px -12px var(--teal),
  0 0 0 2px var(--gold);
  transform: translateX(-50%) translateY(-3px);
  background: linear-gradient(135deg, #ffffff, #fef9f0); /* warm gold tint */
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  text-decoration: none;
}

nav { display: flex; align-items: center; gap: 35px; list-style: none; }

nav a {
  text-decoration: none;
  color: var(--mid);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
  border-radius: 0;
  background: none;
}

nav a:hover,
nav a.active {
  color: var(--dark);
  background: none;
}

/* Underline slide-in animation */
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* CTA — pill button, no underline */
.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 12px 25px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  transform: translateY(-2px) !important;
}
.nav-cta::after { display: none !important; }

/* ── DROPDOWN ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 11px;
  opacity: .6;
  transition: transform var(--trans);
}
.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(26,107,115,.18);
  padding: 10px;
  min-width: 220px;
  z-index: 2000;
  border: 1px solid rgba(26,107,115,.08);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--mid) !important;
  font-size: 14px !important;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
  background: transparent !important;
}
.dropdown-menu a:hover {
  background: var(--teal-light) !important;
  color: var(--teal) !important;
}
.dropdown-menu .drop-icon {
  font-size: 18px;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.drop-mudanza .drop-icon { background: #e8f4f5; }
.drop-limpieza .drop-icon { background: #e8f5ee; }
.dropdown-divider {
  height: 1px;
  background: #f0f4f5;
  margin: 6px 4px;
}
/* Mobile: show dropdown inline */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 18px;
    min-width: unset;
    background: transparent;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    font-size: 13px !important;
    padding: 8px 10px;
    color: var(--mid) !important;
  }
  .nav-dropdown > a::after { content: '▾'; }
  .nav-dropdown.open > a::after { transform: rotate(180deg); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--trans);
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  color: var(--white);
}

/* Truck background */
.hero-truck-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-truck-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.7) hue-rotate(160deg);
  /* Blue tint like servicialia.cat */
  mix-blend-mode: normal;
}
.hero-truck-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to right,
          rgba(10,50,60,0.45) 0%,
          rgba(10,50,60,0.15) 50%,
          rgba(10,40,55,0.75) 100%
  );
}

.hero-content {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; }

.hero-text {
  flex: 0 0 480px;
  text-align: right;
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-text h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-phone {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
}
.hero-phone a { color: inherit; text-decoration: none; }

.hero-text p {
  font-size: 16px;
  opacity: .88;
  margin-bottom: 16px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: #c98a16;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232,160,32,.4);
}
.btn-dark {
  background: var(--teal-dark);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-dark:hover {
  background: #0d4d4d;
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-3px);
}


.badge-text strong {
  display: block;
  font-size: 18px;
  color: var(--teal);
  font-weight: 800;
}
.badge-text span { font-size: 12px; color: var(--mid); }

/* =========================================
   TRUST BAR
========================================= */
.trust-bar {
  background: var(--light);
  padding: 28px 0;
  border-bottom: 1px solid #e0eaeb;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--mid);
  font-size: 14px;
}
.trust-item .ti-icon {
  font-size: 22px;
  color: var(--teal);
}

/* =========================================
   SECTIONS
========================================= */
section { padding: 90px 0; }

.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
.section-sub {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
}
.section-header { margin-bottom: 52px; }
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-sub { margin: 0 auto; }

/* =========================================
   SERVICES GRID
========================================= */
.services-section { background: var(--light); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,107,115,.08);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,107,115,.18);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--trans);
}
.service-card:hover img { transform: scale(1.05); }
.card-img-wrap { overflow: hidden; }

.service-card .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: #666;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--trans);
}
.card-link:hover { gap: 10px; color: var(--teal-dark); }

/* =========================================
   WHY US
========================================= */
.why-us {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: var(--shadow);
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.wf-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--teal);
}
.wf-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.wf-text p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials { background: var(--teal-dark); color: var(--white); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 36px;
  transition: var(--trans);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-5px);
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .88;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.reviewer-name { font-weight: 700; font-size: 14px; }
.reviewer-location { font-size: 12px; opacity: .65; }

/* =========================================
   SERVICE AREAS
========================================= */
.areas-section { background: var(--light); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.area-column {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(26,107,115,.07);
}
.area-column h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}
.area-column ul { list-style: none; }
.area-column ul li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}
.area-column ul li:last-child { border-bottom: none; }
.area-column ul li::before { content: '→'; color: var(--teal); font-size: 12px; }
.area-column ul li:hover { color: var(--teal); padding-left: 5px; }

.areas-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  color: var(--white);
}
.areas-cta h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.areas-cta p { opacity: .85; margin-bottom: 28px; font-size: 17px; }

/* =========================================
   CONTACT PAGE
========================================= */
.contact-section { background: var(--light); padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,107,115,.12);
}

.contact-left {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 56px 44px;
}
.contact-left h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.contact-left p { opacity: .85; margin-bottom: 40px; font-size: 16px; line-height: 1.7; }

.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; min-width: 44px;
}
.ci-text strong { display: block; font-size: 13px; opacity: .7; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.ci-text span { font-size: 15px; font-weight: 600; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 32px;
  transition: var(--trans);
  font-size: 15px;
}
.whatsapp-btn:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }

.contact-right { padding: 56px 44px; }
.contact-right h3 { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-right p { color: var(--mid); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .3px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8eef0;
  border-radius: 10px;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--trans);
  font-family: inherit;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { height: 140px; resize: none; }

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

.submit-btn {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans);
  margin-top: 8px;
  font-family: inherit;
}
.submit-btn:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,107,115,.3); }

/* =========================================
   SERVICES PAGE HERO
========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  text-align: center;
  padding: 100px 20px 80px;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero p { font-size: 18px; opacity: .85; max-width: 600px; margin: 0 auto; }

/* =========================================
   SERVICE DETAIL PAGE
========================================= */
.service-detail { padding: 90px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.detail-text h2 { font-size: 38px; font-weight: 800; color: var(--teal); margin-bottom: 20px; }
.detail-text p { color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.detail-text ul { margin: 20px 0; padding-left: 0; list-style: none; }
.detail-text ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--mid);
}
.detail-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.detail-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .logo { color: var(--white); display: block; margin-bottom: 16px; font-size: 26px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 260px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 16px;
  transition: var(--trans);
}
.social-link:hover { background: var(--teal); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 14px;
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { order: -1; }
}

@media (max-width: 768px) {
  body { padding-top: 70px; }
  .topbar { display: none; }
  nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-top: 1px solid #eee; gap: 4px; }
  nav.open { display: flex; }
  nav a { padding: 10px 14px; }
  .hamburger { display: flex; }
  .hero { height: auto; min-height: 400px; }
  .hero-content { flex-direction: column; align-items: flex-end; padding: 60px 0 40px; }
  .hero-left { display: none; }
  .hero-text { flex: none; width: 100%; text-align: right; }
  .hero-btns { justify-content: flex-end; }
  .hero-phone { font-size: 17px; }
  .service-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 30px; }
  .contact-right { padding: 40px 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .areas-cta { padding: 36px 24px; }
  .areas-cta h2 { font-size: 26px; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 20px; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }

}
.limpieza-full-btn{
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:260px;
  background:#1e8c4a;
  color:#fff;
  border-color:#1e8c4a;
}

.limpieza-full-btn:hover{
  background:#156638;
  border-color:#156638;
  color:#fff;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;              /* ← no gap, stays connected to the button */
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(26,107,115,.18);
  padding: 16px 10px 10px; /* ← top padding creates visual space instead */
  min-width: 220px;
  z-index: 2000;
  border: 1px solid rgba(26,107,115,.08);
}
/* nav-req buttons defined below in unified section */
/* Make the service tabs container sticky */
.service-tabs {
  position: sticky;
  top: 80px; /* matches your header height */
  background: var(--light);
  padding: 1rem 0;
  z-index: 99;
  margin-bottom: 2rem;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  .service-tabs {
    top: 70px; /* matches mobile header height */
  }
}
/* Sticky tabs wrapper */
.service-tabs-wrapper {
  position: sticky;
  top: 80px;
  background: var(--light);
  z-index: 99;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Ensure tabs container has no extra margin */
.service-tabs {
  margin-bottom: 0;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .service-tabs-wrapper {
    top: 70px;
  }
}
/* Better touch targets for mobile */
@media (max-width: 768px) {
  /* Increase tap target size for buttons */
  .stab-btn,
  .btn,
  .card-link,
  nav a,
  .area-column ul li {
    cursor: pointer;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* Better spacing for sticky tabs on mobile */
  .service-tabs {
    gap: 0.5rem;
    padding: 0.75rem 0;
  }

  .stab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Fix for WhatsApp float on mobile */
  .wa-floating,
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  /* Better hero text on mobile */
  .hero-text {
    padding: 30px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}
.nav-req-mudanza,
.nav-req-limpieza {
  background: none !important;
  color: var(--mid) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}

.nav-req-mudanza:hover,
.nav-req-limpieza:hover {
  color: var(--dark) !important;
  background: none !important;
  transform: none !important;
}

/* Keep the gold underline like the other links */
.nav-req-mudanza::after,
.nav-req-limpieza::after {
  display: block !important;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-req-mudanza:hover::after,
.nav-req-limpieza:hover::after {
  width: 100%;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  /* ... rest stays the same ... */
  transition: box-shadow .3s ease; /* only animate the shadow */
}

nav { display: flex; align-items: center; gap: 35px; list-style: none; }