/* ============================================
   Neon Cleaning Services - hoja de estilos global
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cyan: #00C8E8;
  --cyan-light: #E0F9FD;
  --cyan-dark: #0095B0;
  --navy: #0D1B3E;
  --navy-mid: #162554;
  --purple: #7B4FD4;
  --purple-light: #C084FC;
  --mint: #2DDCB4;
  --mint-light: #D4FDF5;
  --white: #ffffff;
  --gray-bg: #F0FAFD;
  --text: #0D1B3E;
  --text-soft: #3A5070;
  --radius: 14px;
  --radius-lg: 22px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ACCESSIBILITY: keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.7rem 5%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(167,139,250,0.2);
  box-shadow: 0 2px 20px rgba(0,200,232,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem;
  max-width: 1360px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon { width: 100px; height: 100px; object-fit: contain; border-radius: 12px; flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 2.25rem; list-style: none;
  flex: 1; justify-content: center;
}
.nav-links a {
  text-decoration: none; font-size: 1.08rem; font-weight: 600; color: var(--text-soft);
  padding: 0.4rem 0.1rem; position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #5BB8F5, #A78BFA);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%); color: white;
  padding: 0.95rem 2.2rem; border-radius: 100px;
  text-decoration: none; font-size: 1rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(123,79,212,0.3);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--cyan-dark); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,200,232,0.4); }

/* FLOATING CALL BUTTON */
.floating-call {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(13,27,62,0.3);
  text-decoration: none; transition: transform 0.2s;
}
.floating-call:hover { transform: scale(1.08); }
.floating-call svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
@media (max-width: 480px) {
  .floating-call { width: 50px; height: 50px; right: 1rem; bottom: 1rem; }
  .floating-call svg { width: 21px; height: 21px; }

  nav { padding: 0.5rem 4%; }
  .nav-inner { gap: 0.35rem; }
  .nav-links { gap: 0.2rem; }
  .nav-links a { font-size: 0.72rem; padding: 0.35rem 0; }

  .hero { padding: 6.5rem 6% 3rem; gap: 2rem; }
  .hero-desc { max-width: none; margin-bottom: 2rem; }
  .hero-photo img { height: 260px; }
  .page-banner { padding: 6.5rem 6% 3rem; }

  .ceo-spotlight-grid img { max-width: 220px; }
  .ceo-name { font-size: 1.05rem; }

  .gallery-img-wrap img { height: 130px; }
  .gallery-divider { width: 28px; height: 28px; font-size: 0.5rem; margin: 0 -14px; }

  .why-us-grid, .services-grid, .testi-grid, .blog-grid, .values-grid, .steps { gap: 1.1rem; }
  .section-header { margin-bottom: 2rem; }
  .section-tag { font-size: 0.68rem; }
}

/* HERO (home) */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 8rem 5% 5rem;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,232,0.08) 0%, rgba(123,79,212,0.05) 60%, transparent 80%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan-light); color: var(--cyan-dark);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4rem 1rem;
  border-radius: 100px; margin-bottom: 1.5rem;
  border: 1px solid rgba(0,200,232,0.3);
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px;
  background: linear-gradient(90deg, #5BB8F5, #A78BFA); border-radius: 50%;
  display: inline-block; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.12;
  text-transform: capitalize;
  letter-spacing: -0.01em; color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.05rem; color: var(--text-soft); max-width: 460px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%); color: white;
  padding: 0.9rem 2rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(167,139,250,0.3);
}
.btn-primary:hover { background: var(--cyan-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,200,232,0.4); }
.btn-secondary {
  background: transparent; color: var(--navy);
  padding: 0.9rem 2rem; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 2px solid var(--cyan);
  transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { background: var(--cyan-light); }

/* HERO PHOTO (home only) */
.hero-photo-wrap { position: relative; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(13,27,62,0.18); }
.hero-photo img { width: 100%; height: 460px; object-fit: cover; display: block; }
.hero-photo-badge {
  position: absolute; left: -1.25rem; bottom: -1.25rem;
  background: white; border-radius: var(--radius); padding: 1rem 1.4rem;
  box-shadow: 0 12px 32px rgba(13,27,62,0.16);
  display: flex; align-items: center; gap: 0.9rem;
}
.hero-photo-badge .stat-num { font-size: 1.7rem; }
.hero-photo-badge .stat-label { font-size: 0.78rem; max-width: 120px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-call svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* HERO STATS (About page) */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--gray-bg);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  border: 1px solid rgba(0,200,232,0.15);
}
.stat-card:first-child {
  grid-column: 1 / -1;
  background: var(--navy); color: white; padding: 2rem;
  border: none;
  position: relative; overflow: hidden;
}
.stat-card:first-child::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(0,200,232,0.1);
}
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem; font-weight: 700; line-height: 1; display: block;
}
.stat-card:first-child .stat-num { background: linear-gradient(90deg, #5BB8F5, #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card:not(:first-child) .stat-num { color: var(--navy); }
.stat-label { font-size: 0.82rem; font-weight: 500; margin-top: 0.4rem; display: block; }
.stat-card:first-child .stat-label { color: rgba(255,255,255,0.7); }
.stat-card:not(:first-child) .stat-label { color: var(--text-soft); }

/* WHY CHOOSE US */
.why-us { padding: 6rem 5% 5rem; background: var(--gray-bg); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-us-card {
  background: white; border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid rgba(0,200,232,0.15); text-align: left;
}
.why-us-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #E8F4FD 0%, #EDE9FE 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(167,139,250,0.25);
}
.why-us-icon svg { width: 22px; height: 22px; stroke: var(--cyan-dark); fill: none; stroke-width: 1.8; }
.why-us-card h3 { font-size: 0.95rem; font-weight: 700; text-transform: capitalize; color: var(--navy); margin-bottom: 0.4rem; }
.why-us-card p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* PAGE BANNER (interior pages) */
.page-banner {
  background-color: #0D1B3E;
  background-image:
    linear-gradient(90deg, #5BB8F5, #A78BFA),
    radial-gradient(circle at 10% -20%, rgba(0,200,232,0.4) 0%, transparent 45%),
    radial-gradient(circle at 92% 130%, rgba(167,139,250,0.36) 0%, transparent 45%),
    linear-gradient(135deg, #0D1B3E 0%, #13224D 45%, #241B57 100%);
  background-repeat: no-repeat;
  background-position: bottom center, top left, bottom right, center;
  background-size: 100% 3px, 100% 100%, 100% 100%, 100% 100%;
  color: white;
  padding: 9rem 5% 4.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); color: #9FE0F5;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 0.9rem;
  border-radius: 100px; margin-bottom: 1rem;
  border: 1px solid rgba(0,200,232,0.3);
  position: relative; z-index: 1;
}
.page-banner-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: linear-gradient(90deg, #5BB8F5, #A78BFA); border-radius: 50%;
  display: inline-block;
}
.page-banner h1 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  text-transform: capitalize;
  font-size: clamp(1.8rem, 4vw, 2.6rem); position: relative; z-index: 1;
}
.page-banner p { opacity: 0.8; margin-top: 0.75rem; position: relative; z-index: 1; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.align-left { text-align: left; }
.section-tag {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: transparent;
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%); -webkit-background-clip: text; background-clip: text;
  margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; color: var(--navy);
  text-transform: capitalize;
  letter-spacing: -0.01em; line-height: 1.2;
}

/* SERVICES */
.services { padding: 6rem 5%; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1.5px solid rgba(0,200,232,0.2);
  border-radius: var(--radius-lg);
  transition: all 0.25s; position: relative; overflow: hidden;
  background: white;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple-light));
  opacity: 0; transition: opacity 0.25s; z-index: 1;
}
.service-card:hover, .service-card[open] { border-color: #A78BFA; box-shadow: 0 12px 32px rgba(0,200,232,0.15); }
.service-card:hover::before, .service-card[open]::before { opacity: 1; }
.service-card > summary {
  padding: 2rem; cursor: pointer; list-style: none;
}
.service-card > summary::-webkit-details-marker { display: none; }
.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #E8F4FD 0%, #EDE9FE 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(167,139,250,0.25);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--cyan-dark); fill: none; stroke-width: 1.8; }
.service-card h3 { font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: capitalize; margin-bottom: 0.6rem; color: var(--navy); }
.service-card summary p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 0; }
.service-toggle {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 700; color: var(--purple);
  margin-top: 1rem;
}
.service-toggle svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; transition: transform 0.2s; }
.service-card[open] .service-toggle svg { transform: rotate(180deg); }
.service-more { padding: 0 2rem 2rem; }
.service-more p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.25rem; }
.service-more .btn-primary { padding: 0.7rem 1.5rem; font-size: 0.88rem; }
.services-more { text-align: center; margin-top: 2.5rem; }

/* HOW */
.how { padding: 6rem 5%; background: var(--gray-bg); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; padding: 2rem 1rem; }
.step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 0.75rem; display: block;
}
.step h3 { font-size: 1rem; font-weight: 700; text-transform: capitalize; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text-soft); }

/* TESTIMONIALS */
.testimonials { padding: 6rem 5%; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: var(--gray-bg); border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid rgba(0,200,232,0.15);
}
.stars { color: #A78BFA; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testi-card blockquote { font-size: 0.95rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.testi-location { font-size: 0.8rem; color: #8AA0B8; }
.google-live-reviews { margin-top: 3rem; }

/* GOOGLE RATING BADGE */
.google-rating {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-soft);
  text-decoration: none; margin-top: 1rem;
}
.google-rating svg { width: 16px; height: 16px; fill: #F5A623; flex-shrink: 0; }
.google-rating strong { color: var(--navy); font-weight: 700; }
.google-rating:hover { color: var(--cyan-dark); }
.google-rating-lg { font-size: 0.95rem; }
.google-rating-lg svg { width: 18px; height: 18px; }
.footer-rating { color: rgba(255,255,255,0.55); margin: 0.4rem 0 0; }
.footer-rating strong { color: white; }
.footer-rating:hover { color: var(--cyan); }

/* CTA */
.cta-section {
  margin: 0 5% 5rem;
  background: var(--navy);
  border-radius: 24px; padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; color: white;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,200,232,0.08);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -60px; left: 30%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(123,79,212,0.07);
}
.cta-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700; text-transform: capitalize; letter-spacing: -0.01em; margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.cta-section p { opacity: 0.75; font-size: 1rem; position: relative; z-index: 1; }
.btn-cyan {
  background: linear-gradient(90deg, #5BB8F5 0%, #A78BFA 100%); color: white;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: all 0.2s; white-space: nowrap; display: inline-block;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(0,200,232,0.4);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,200,232,0.5); }

/* CONTACT */
.contact { padding: 5rem 5%; background: var(--navy); color: white; }
/* The banner right above is also dark navy, so back-to-back default padding
   reads as one oversized empty block — tighten that specific seam. */
.page-banner:has(+ .contact) { padding-bottom: 3rem; }
.page-banner + .contact { padding-top: 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact h2 { font-family: 'Manrope', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; text-transform: capitalize; margin-bottom: 1rem; }
.contact > .contact-grid > div > p { opacity: 0.7; margin-bottom: 2rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.contact-item svg { width: 20px; height: 20px; stroke: #A78BFA; fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,200,232,0.2);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  color: white; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: #A78BFA; }
.contact-form select option { background: var(--navy-mid); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; opacity: 0.55; }

/* FAQ */
.faq { padding: 5rem 5%; background: var(--gray-bg); }
.faq-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr; gap: 3rem; align-items: start;
}
.faq-photo { display: block; position: sticky; top: 100px; }
.faq-photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: 0 12px 32px rgba(0,200,232,0.12);
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .faq-photo { position: static; max-width: 280px; margin: 0 auto; }
}
.faq-item {
  background: white; border: 1px solid rgba(0,200,232,0.15);
  border-radius: var(--radius); margin-bottom: 0.9rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.4rem;
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--cyan-dark); flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.4rem 1.1rem; font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

/* MAP */
.map-section { padding: 3rem 5% 5rem; background: var(--white); }
.map-section-sub { color: var(--text-soft); margin-top: 0.5rem; font-size: 0.95rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(0,200,232,0.12); border: 1px solid rgba(0,200,232,0.15); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* FOOTER */
.site-footer { background: #080F22; padding: 3.5rem 5% 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.45); max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.footer-social a:hover { background: linear-gradient(90deg, #5BB8F5, #A78BFA); border-color: transparent; }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 1.8; }
.footer-social a:hover svg { stroke: white; }
.footer-col h4 {
  color: white; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1.1rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.875rem; }
.footer-col a, .footer-col span { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.32);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cyan); }

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

/* GALLERY */
.gallery { padding: 4rem 5%; background: var(--gray-bg); }
.gallery-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,200,232,0.1);
}
.gallery-img-wrap { position: relative; overflow: hidden; }
.gallery-img-wrap img { width: 100%; height: 280px; object-fit: cover; display: block; }
.gallery-divider {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, #5BB8F5, #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.05em; flex-shrink: 0; z-index: 2;
  margin: 0 -22px;
  box-shadow: 0 0 0 4px white;
}
.badge {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.22rem 0.6rem; border-radius: 100px;
}
.badge-before { background: rgba(0,0,0,0.6); color: white; }
.badge-after { background: linear-gradient(90deg, #5BB8F5, #A78BFA); color: white; }
.gallery-pair-label {
  text-align: center; font-family: 'Manrope', sans-serif; font-weight: 700;
  text-transform: capitalize;
  font-size: 0.8rem; color: var(--navy); margin-top: 0.5rem;
  letter-spacing: 0.01em;
}
.gallery-row { display: flex; flex-direction: column; gap: 0.4rem; }

/* NOSOTROS / ABOUT */
.about-story { padding: 6rem 5%; background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.about-story p { color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.value-card {
  background: var(--gray-bg); border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid rgba(0,200,232,0.15); text-align: center;
}
.value-card h3 { font-family: 'Manrope', sans-serif; font-size: 0.9rem; text-transform: capitalize; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--text-soft); }
.value-icon { margin: 0 auto 1.1rem; }

/* CEO SPOTLIGHT (About) */
.ceo-spotlight { padding: 0 5% 6rem; }
.ceo-spotlight-grid { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: center; }
.ceo-spotlight-grid picture { display: block; }
.ceo-spotlight-grid img {
  width: 100%; height: auto; display: block; border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0,200,232,0.12);
}
.ceo-spotlight-grid p { color: var(--text-soft); line-height: 1.75; }
.ceo-name {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.15rem;
  color: var(--navy) !important; margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .ceo-spotlight-grid { grid-template-columns: 1fr; text-align: center; }
  .ceo-spotlight-grid img { max-width: 280px; margin: 0 auto; }
}

/* TEAM PHOTOS (About) */
.team-photos { padding: 0 5% 6rem; }
.team-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-photos-grid img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: 0 12px 32px rgba(0,200,232,0.12);
  display: block;
}
@media (max-width: 768px) {
  .team-photos-grid { grid-template-columns: 1fr; }
  .team-photos-grid img { height: 260px; }
}

/* SERVICE BANNER PHOTO (Services) */
.service-banner { padding: 0 5% 4rem; }
.service-banner img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: 0 12px 32px rgba(0,200,232,0.12);
  display: block;
}
@media (max-width: 768px) {
  .service-banner img { height: 220px; }
}

/* COMPACT PHOTO BANNER — for source photos that aren't wide/high-res enough for a
   full-bleed banner. Shown as a centered card at a size close to its native
   resolution instead of being stretched/cropped into an ultra-wide strip. */
.compact-banner { padding: 0 5% 6rem; display: flex; justify-content: center; }
.compact-banner picture { display: block; width: 100%; max-width: 380px; }
.compact-banner img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: 0 12px 32px rgba(0,200,232,0.12);
}
.compact-banner.compact-banner-wide picture { max-width: 560px; }
@media (max-width: 768px) {
  .compact-banner { padding: 0 5% 3.5rem; }
  .compact-banner picture { max-width: 300px; }
  .compact-banner.compact-banner-wide picture { max-width: 380px; }
}

/* BLOG */
.blog { padding: 6rem 5%; background: var(--white); }
.pets-section { padding-top: 0; background: var(--gray-bg); padding-bottom: 6rem; }
.pet-placeholder { opacity: 0.7; border-style: dashed; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.blog-card {
  border: 1.5px solid rgba(0,200,232,0.2); border-radius: var(--radius-lg);
  overflow: hidden; background: white; transition: all 0.25s; display: flex; flex-direction: column;
}
.blog-card-photo { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,200,232,0.15); border-color: #A78BFA; }
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.blog-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan-dark); }
.blog-card h3 { font-family: 'Manrope', sans-serif; font-size: 1rem; text-transform: capitalize; color: var(--navy); line-height: 1.35; }
.blog-card p { font-size: 0.9rem; color: var(--text-soft); }
.blog-read { font-weight: 700; font-size: 0.875rem; color: var(--purple); text-decoration: none; margin-top: auto; }
.blog-read:hover { color: var(--cyan-dark); }
.blog-post { padding: 6rem 8% 4rem; max-width: 780px; margin: 0 auto; }
.blog-post h1 { font-family: 'Manrope', sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: capitalize; color: var(--navy); margin-bottom: 0.5rem; }
.blog-post .blog-meta { color: #8AA0B8; font-size: 0.85rem; margin-bottom: 2rem; }
.blog-post h2 { font-family: 'Manrope', sans-serif; font-size: 1.15rem; text-transform: capitalize; color: var(--navy); margin: 2rem 0 0.75rem; }
.blog-post p, .blog-post li { color: var(--text-soft); margin-bottom: 1rem; line-height: 1.75; }
.blog-post ul, .blog-post ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.blog-back { display: inline-block; margin-top: 2rem; font-weight: 700; color: var(--purple); text-decoration: none; }

/* LOGO IMG */
.logo-img { width: 100%; max-width: 420px; border-radius: var(--radius-lg); display: block; }
.logo-wrap { display: flex; align-items: center; justify-content: center; }

@media (max-width: 768px) {
  nav { padding: 0.6rem 5%; }
  .nav-inner { gap: 0.5rem; }
  .nav-logo-icon { width: 76px; height: 76px; }
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .page-banner { padding-top: 7.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { text-align: center; justify-content: center; }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    flex: 1;
    min-width: 0;
  }
  .nav-links a { font-size: 0.8rem; padding: 0.35rem 0; white-space: nowrap; }
  .nav-cta { display: none; }
  .why-us { padding: 3.5rem 5%; }
  .why-us-grid { gap: 1.25rem; }
  .hero-photo img { height: 300px; }
  .hero-photo-badge { left: 0.75rem; bottom: -1rem; padding: 0.75rem 1rem; gap: 0.6rem; }
  .hero-photo-badge .stat-num { font-size: 1.3rem; }
  .hero-photo-badge .stat-label { font-size: 0.7rem; max-width: 100px; }

  /* Tighter section rhythm on mobile so pages don't feel like one long scroll of dead air */
  .about-story { padding: 3.5rem 5%; }
  .about-story-grid { gap: 2.25rem; }
  .ceo-spotlight { padding: 0 5% 3.5rem; }
  .ceo-spotlight-grid { gap: 1.75rem; }
  .team-photos { padding: 0 5% 3.5rem; }
  .service-banner { padding: 0 5% 2.5rem; }
  .services { padding: 3.5rem 5%; }
  .how { padding: 3.5rem 5%; }
  .testimonials { padding: 3.5rem 5%; }
  .gallery { padding: 3.5rem 5%; }
  .blog { padding: 3.5rem 5%; }
  .pets-section { padding-bottom: 3.5rem; }
  .contact { padding: 3.5rem 5%; }
  .contact-grid { gap: 2.5rem; }
  .faq { padding: 3.5rem 5%; }
  .map-section { padding: 0 5% 3.5rem; }
  .blog-post { padding: 6.5rem 6% 3rem; }
  .section-header { margin-bottom: 2.5rem; }
  .values-grid { margin-top: 2.5rem; }
  .steps { margin-top: 2.5rem; }
  .testi-grid { margin-top: 2.5rem; }
  .blog-grid { margin-top: 2.5rem; }

  .cta-section {
    margin: 0 5% 3.5rem;
    padding: 2.25rem 1.75rem;
    border-radius: 18px;
    flex-direction: column;
    gap: 1.5rem;
  }
  .cta-section .btn-cyan { width: 100%; text-align: center; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }

  .service-card > summary { padding: 1.5rem; }
  .service-more { padding: 0 1.5rem 1.5rem; }
  .why-us-card, .value-card, .testi-card { padding: 1.4rem; }
  .stat-card { padding: 1.25rem; }
  .blog-card-body { padding: 1.4rem; }
  .footer-brand p { max-width: none; }
  .map-wrap iframe { height: 300px; }
}

@media (max-width: 640px) {
  .gallery-img-wrap img { height: 160px; }
  .gallery-divider { width: 32px; height: 32px; font-size: 0.55rem; margin: 0 -16px; }
}
