/* Typography & base */
:root {
  --bg: #070b16;
  --card: #0c1224;
  --text: #e7ecf7;
  --muted: #a7b1c8;
  --primary: #4cc3ff;
  --primary-700: #2ea6e7;
  --accent: #ffb45e;
  --success: #1ec28b;
  --whatsapp: #25d366;
  --danger: #ff5d7a;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding-top: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: 
    radial-gradient(ellipse 1400px 800px at 60% -5%, rgba(13,22,48,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 1200px 600px at 30% 20%, rgba(76,195,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 1000px 500px at 80% 60%, rgba(13,22,48,0.3) 0%, transparent 50%),
    linear-gradient(180deg, #070b16 0%, #0a0f1f 25%, #0a0f1f 50%, #0a0f1f 75%, #070b16 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(76,195,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  background: rgba(7, 11, 22, .92);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}
.site-header.scrolled .header-inner { padding: 8px 0; transition: padding .2s ease; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 700; }
.logo { width: 36px; height: 36px; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.15); color: var(--text); padding: 8px 10px; border-radius: 8px; }
.nav-list { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; align-items: center; }
.nav-list a { position: relative; color: var(--muted); text-decoration: none; font-weight: 600; padding: 8px 6px; }
.nav-list a:hover { color: var(--text); }
.nav-list a:not(.btn)::after { content: ''; position: absolute; left: 10%; right: 10%; bottom: 2px; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav-list a:not(.btn):hover::after { transform: scaleX(1); }
.nav-list a.btn { 
  box-shadow: 0 6px 20px rgba(76,195,255,.4), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.nav-list a.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}
.nav-list a.btn:hover::before {
  left: 100%;
}
.nav-list a.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(76,195,255,.5), inset 0 1px 0 rgba(255,255,255,.3);
  background: linear-gradient(180deg, #4CA3FF, var(--primary-700));
}
.nav-list a.btn:active {
  transform: translateY(0) scale(1);
}

.cta-inline { display: flex; align-items: center; gap: 10px; }
.cta-phone { color: var(--text); text-decoration: none; font-weight: 700; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 700; border-radius: 12px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.12); color: var(--text); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); box-shadow: var(--shadow); }
.btn:hover { transform: translateY(-1px); transition: .2s ease; }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-700)); color: #001019; border-color: transparent; }
.btn-outline { background: transparent; }
.btn-whatsapp { background: linear-gradient(180deg, var(--whatsapp), #17b058); color: #001910; border-color: transparent; }
.btn-google { background: linear-gradient(180deg, #fff, #eaeef6); color: #0a0f1f; }
.btn-lg { padding: 14px 22px; border-radius: 14px; }
.btn-sm { padding: 8px 12px; border-radius: 10px; font-weight: 600; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 120px 0 72px; margin-top: 0; z-index: 1; }
main { margin-top: 0; position: relative; z-index: 1; }
.hero-bg { 
  position: absolute; 
  inset: 0; 
  background: url('../img/IMG_1393.jpg') center/cover no-repeat;
  filter: brightness(1) contrast(1.1);
  -webkit-filter: brightness(1) contrast(1.1);
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 22, 0.87) 0%, rgba(7,11,22,.3) 50%, rgba(7, 11, 22, 0.815) 100%);
}
.hero-content { position: relative; }
.hero h1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; }
.hero p { margin: 0 0 22px; color: var(--muted); max-width: 800px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 10px 0 0; padding: 0; }
.badges li { font-size: 14px; color: #c9d3ea; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); padding: 6px 10px; border-radius: 999px; }

/* Sections */
.section { 
  padding: 72px 0; 
  position: relative;
  z-index: 1;
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(76,195,255,0.02) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(13,22,48,0.15) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}
.section:nth-child(even)::before {
  background: 
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(76,195,255,0.02) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(13,22,48,0.15) 0%, transparent 60%);
}
.section-header h2 { font-size: clamp(22px, 3.4vw, 36px); margin: 0 0 8px; }
.section-header p { margin: 0 0 22px; color: var(--muted); }

/* Cards & grids */
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(4, 1fr); }
.card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); position: relative; overflow: hidden; transform: translateZ(0); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; will-change: transform; }
.card::after { content: ""; position: absolute; inset: -1px; background: radial-gradient(400px 80px at -10% -10%, rgba(255,255,255,.18), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0)); pointer-events: none; opacity: .0; transition: opacity .25s ease; }
.card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,.35); border-color: rgba(255,255,255,.18); }
.card:hover::after { opacity: .35; }
.cards .card { animation: cardIn .6s cubic-bezier(.2,.8,.2,1) both; }
.cards .card:nth-child(1) { animation-delay: .05s; }
.cards .card:nth-child(2) { animation-delay: .1s; }
.cards .card:nth-child(3) { animation-delay: .15s; }
.cards .card:nth-child(4) { animation-delay: .2s; }
.cards .card:nth-child(5) { animation-delay: .25s; }
.cards .card:nth-child(6) { animation-delay: .3s; }
.cards .card:nth-child(7) { animation-delay: .35s; }
.cards .card:nth-child(8) { animation-delay: .4s; }
.cards .card:nth-child(9) { animation-delay: .45s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.card h3 { margin-top: 0; }
.list { margin: 10px 0 0; padding-left: 18px; color: #cbd4ea; }

.section-areas .chips { display: flex; flex-wrap: wrap; gap: 10px; }
.section-areas .chips-more { display: none; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.section-areas .chips span,
.section-areas .chips-more span { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; padding: 8px 12px; color: #cfe5ff; }
.note { color: var(--muted); margin-top: 10px; }
.zones-toggle { margin-top: 12px; }

.gallery { grid-template-columns: repeat(4, 1fr); }
.gallery-extended { grid-template-columns: repeat(3, 1fr); }
.gallery-item { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden; }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; display: block; }
.gallery-item figcaption { padding: 10px 12px; color: #cfe5ff; font-size: 14px; border-top: 1px solid rgba(255,255,255,.06); }
/* Hide captions only on gallery page */
.section-gallery .gallery-item figcaption { display: none; }
.gallery-item img { cursor: zoom-in; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* Make projects section visuals larger */
.section-projects .gallery { grid-template-columns: repeat(3, 1fr); }
.section-projects .gallery-item img { height: 320px; }

/* Testimonials carousel */
.section-testimonials { padding: 48px 0 !important; }
.section-testimonials .section-header { margin-bottom: 24px; }
.testimonial-slider { position: relative; overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
.testimonial-track { display: flex; gap: 8px; will-change: transform; animation: scroll-testimonials 8s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-slide { 
  min-width: calc(20% - 6.4px); 
  width: calc(20% - 6.4px);
  aspect-ratio: 2.3;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); 
  border: 1px solid rgba(255,255,255,.08); 
  border-radius: 10px; 
  padding: 8px 10px; 
  color: #dfe7f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-slide blockquote { margin: 0; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
  font-size: 10px;
  color: #ffd700;
}
.testimonial-stars .star-filled {
  color: #ffd700;
}
.testimonial-stars .star-empty {
  color: rgba(255,215,0,.3);
}
.testimonial-slide blockquote p { 
  font-size: 11px; 
  line-height: 1.3; 
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.testimonial-slide figcaption { 
  color: var(--muted); 
  margin-top: 4px;
  font-size: 9px;
  flex-shrink: 0;
}
@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.contact-aside { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
  align-content: start;
}
.contact-card { 
  padding: 12px 14px; 
  margin: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-card h3 { 
  font-size: 13px; 
  margin: 0 0 8px; 
  font-weight: 600;
  color: var(--primary);
}
.contact-card p { 
  font-size: 12px; 
  margin: 0; 
  line-height: 1.4;
  color: #d0dbf3;
}
.contact-list { 
  list-style: none; 
  padding: 0; 
  margin: 0;
}
.contact-list li { 
  font-size: 12px; 
  margin: 0 0 4px;
  line-height: 1.4;
}
.contact-list li:last-child { margin-bottom: 0; }
.contact-list a { 
  font-size: 12px;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}
.contact-card .btn { 
  padding: 8px 12px; 
  font-size: 11px; 
  margin-top: 8px;
  width: 100%;
}
.contact-card .btn-google {
  padding: 8px 12px;
  font-size: 11px;
}
.contact-form { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; }
.fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
label { color: #d0dbf3; font-weight: 600; }
input, textarea { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); color: var(--text); padding: 12px 12px; border-radius: 12px; outline: none; }
input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(76,195,255,.18); }
.form-actions { display: flex; gap: 10px; margin-top: 10px; }
.form-note { color: var(--muted); margin-top: 8px; }
.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.form-message-success {
  background: linear-gradient(135deg, rgba(76,195,255,.15), rgba(76,195,255,.08));
  border: 1px solid rgba(76,195,255,.3);
  color: #e9f1ff;
}
.form-message-success strong {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.form-message-error {
  background: linear-gradient(135deg, rgba(255,93,122,.15), rgba(255,93,122,.08));
  border: 1px solid rgba(255,93,122,.3);
  color: #ffe9ed;
}
.form-message-error strong {
  color: var(--danger);
  display: block;
  margin-bottom: 4px;
}
/* Contact options */
.options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 12px; }
.options label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: #d8e3fb; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 10px 12px; border-radius: 12px; }
.options input[type="checkbox"] { accent-color: var(--primary); }

/* Contact list links: white text with blue underline */
.contact-list a { color: #ffffff; text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.contact-list a:hover { color: #ffffff; opacity: .9; }
/* Same style for catalog links */
.note a { color: #ffffff; text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.note a:hover { color: #ffffff; opacity: .9; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.06); padding: 32px 0; background: rgba(7,11,22,.6); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-nav { display: flex; gap: 14px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--text); }
.footer-legal { color: var(--muted); text-align: right; }

/* Responsive */
@media (max-width: 980px) {
  .container { padding: 0 16px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-extended { grid-template-columns: repeat(2, 1fr); }
  .section-projects .gallery { grid-template-columns: repeat(2, 1fr); }
  .section-projects .gallery-item img { height: 260px; }
  .testimonial-slide { 
    min-width: calc(25% - 6px);
    width: calc(25% - 6px);
    aspect-ratio: 1.6;
  }
  .testimonial-track { animation-duration: 7s !important; gap: 8px; }
  .testimonial-slide { padding: 8px 10px; }
  .testimonial-slide blockquote p { font-size: 11px; -webkit-line-clamp: 2; line-clamp: 2; }
  .testimonial-slide figcaption { font-size: 9px; }
  .contact-grid { grid-template-columns: 1fr; }
  .options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { text-align: center; }
  .section { padding: 56px 0; }
  .btn { padding: 10px 14px; font-size: 14px; }
  .btn-lg { padding: 12px 18px; font-size: 15px; }
  .card { padding: 16px; }
  .section-header h2 { font-size: 28px; }
  .section-areas .chips { gap: 8px; }
  .section-areas .chips span { font-size: 13px; padding: 6px 10px; }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 10px 0;
  }
  .site-header {
    backdrop-filter: saturate(150%) blur(20px);
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    background: rgba(7, 11, 22, .95);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
  }
  .brand {
    font-size: 15px;
  }
  .logo {
    width: 32px;
    height: 32px;
  }
  .nav-toggle { 
    display: inline-flex !important; 
    cursor: pointer; 
    z-index: 1001; 
    font-size: 20px; 
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76,195,255,.15), rgba(76,195,255,.08));
    border: 1.5px solid rgba(76,195,255,.3);
    border-radius: 12px;
    color: var(--primary);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 12px rgba(76,195,255,.15);
  }
  .nav-toggle:hover {
    background: linear-gradient(135deg, rgba(76,195,255,.25), rgba(76,195,255,.15));
    border-color: rgba(76,195,255,.5);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76,195,255,.25);
  }
  .nav-toggle:active {
    transform: scale(0.95);
  }
  .nav-list { 
    display: none !important; 
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(12,18,36,.98) 0%, rgba(7,11,22,.98) 100%); 
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 80px 20px 30px; 
    flex-direction: column; 
    gap: 10px; 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    margin: 0;
    box-shadow: inset 0 0 150px rgba(0,0,0,.6);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav-list.open { 
    display: flex !important; 
    opacity: 1;
    transform: translateY(0);
  }
  .nav-list a { 
    font-size: 17px; 
    padding: 16px 18px; 
    display: block; 
    width: 100%; 
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    margin-bottom: 8px;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateX(-20px);
  }
  .nav-list.open a { 
    animation: slideInLeft .4s ease forwards;
  }
  .nav-list.open li:nth-child(1) a { animation-delay: .1s; }
  .nav-list.open li:nth-child(2) a { animation-delay: .15s; }
  .nav-list.open li:nth-child(3) a { animation-delay: .2s; }
  .nav-list.open li:nth-child(4) a { animation-delay: .25s; }
  .nav-list.open li:nth-child(5) a { animation-delay: .3s; }
  .nav-list a:hover { 
    background: rgba(76,195,255,.15);
    border-color: rgba(76,195,255,.3);
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 4px 12px rgba(76,195,255,.2);
  }
  .nav-list a.btn { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    border: none;
    color: #001019;
    margin-top: 16px;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 20px;
    box-shadow: 0 6px 20px rgba(76,195,255,.4), inset 0 1px 0 rgba(255,255,255,.2);
    position: relative;
    overflow: hidden;
  }
  .nav-list a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transition: left .5s ease;
  }
  .nav-list a.btn:hover::before {
    left: 100%;
  }
  .nav-list a.btn:hover {
    transform: translateX(6px) translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(76,195,255,.5), inset 0 1px 0 rgba(255,255,255,.3);
    background: linear-gradient(135deg, var(--primary) 0%, #4CA3FF 100%);
  }
  .nav-list a.btn:active {
    transform: translateX(6px) translateY(0) scale(1);
  }
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .nav-list li { list-style: none; margin: 0; padding: 0; width: 100%; }
  .cta-inline { display: none; }
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .container { padding: 0 16px; max-width: 100%; }
  .section { padding: 48px 0; }
  .section-contact { padding: 32px 0; }
  .section-contact .section-header { margin-bottom: 16px; }
  /* Cards as bubbles on mobile */
  .cards { grid-template-columns: 1fr; gap: 12px; margin: 0; }
  .section-services .card { 
    padding: 12px 14px; 
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    margin: 0;
  }
  .section-services .card h3 { font-size: 15px; margin: 0 0 6px; }
  .section-services .card p { font-size: 12px; margin: 0; line-height: 1.4; }
  .section-services .card .list { font-size: 11px; margin-top: 6px; padding-left: 14px; }
  .gallery { grid-template-columns: 1fr; gap: 12px; margin: 0; }
  .gallery-extended { grid-template-columns: 1fr; gap: 12px; margin: 0; }
  .section-projects .gallery { grid-template-columns: 1fr; gap: 12px; margin: 0; }
  .section-projects .gallery-item img { height: 200px; }
  .gallery-item img { height: 200px; }
  .gallery-extended .gallery-item img { height: 200px; }
  .testimonial-slide { 
    min-width: calc(45% - 4px);
    width: calc(45% - 4px);
    aspect-ratio: 1.5;
    max-width: 160px;
  }
  .testimonial-track { animation-duration: 6s !important; gap: 8px; }
  .testimonial-slide { padding: 6px 8px; }
  .testimonial-slide blockquote p { 
    font-size: 9px; 
    line-height: 1.2; 
    margin-bottom: 2px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .testimonial-slide figcaption { font-size: 8px; margin-top: 2px; }
  .options { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .hero p { font-size: 14px; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 14px; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .btn-lg { padding: 12px 16px; font-size: 14px; }
  .badges li { font-size: 12px; padding: 5px 9px; }
  .section-areas .chips { gap: 8px; margin: 0; }
  .section-areas .chips span { font-size: 12px; padding: 6px 10px; }
  .section-areas .chips-more { gap: 8px; margin: 0; }
  .section-areas .chips-more span { font-size: 12px; padding: 6px 10px; }
  .brand span { font-size: 14px; }
  .footer-inner { gap: 12px; }
  .float-btn { width: 56px; height: 56px; padding: 0; font-size: 24px; display: flex; align-items: center; justify-content: center; }
  .float-btn svg { width: 24px; height: 24px; fill: currentColor; }
  .floating-ctas { right: 16px; bottom: 16px; }
  /* Fix form overflow */
  .contact-form { padding: 12px; margin: 0; max-width: 100%; box-sizing: border-box; }
  .fields { gap: 8px; grid-template-columns: 1fr; }
  .field { margin: 0; }
  .field label { font-size: 12px; }
  input, textarea { width: 100%; box-sizing: border-box; padding: 8px 10px; font-size: 13px; }
  .form-actions { flex-direction: column; gap: 6px; margin-top: 8px; }
  .form-actions .btn { width: 100%; padding: 10px 12px; font-size: 12px; }
  .form-note { font-size: 10px; margin-top: 6px; }
  .contact-grid { gap: 12px; margin: 0; }
  .contact-aside { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .contact-card { 
    padding: 10px 12px; 
    margin: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }
  .contact-card h3 { 
    font-size: 12px; 
    margin: 0 0 6px; 
    font-weight: 600;
    color: var(--primary);
  }
  .contact-card p { 
    font-size: 11px; 
    margin: 0; 
    line-height: 1.4;
    color: #d0dbf3;
  }
  .contact-list { 
    list-style: none; 
    padding: 0; 
    margin: 0;
  }
  .contact-list li { 
    font-size: 11px; 
    margin: 0 0 4px;
    line-height: 1.4;
  }
  .contact-list li:last-child { margin-bottom: 0; }
  .contact-list a { 
    font-size: 11px;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
  }
  .contact-card .btn { 
    padding: 6px 10px; 
    font-size: 10px; 
    margin-top: 6px;
    width: 100%;
  }
  .contact-card .btn-google {
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* No-scroll when mobile menu open */
body.body--no-scroll { overflow: hidden; }

/* Subtle global motion */
@keyframes float-subtle {
  from { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  to { transform: translateY(0); }
}
.badges li { animation: float-subtle 6s ease-in-out infinite; }

/* Reveal on scroll */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].in { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.8); display: none; align-items: center; justify-content: center; flex-direction: column; padding: 20px; z-index: 1000; }
.lightbox.open { display: flex; }
.lightbox-image { max-width: 96vw; max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.85); border: none; border-radius: 10px; padding: 8px 12px; font-size: 18px; cursor: pointer; }
.lightbox-caption { color: #e9f1ff; margin-top: 10px; font-size: 14px; }

/* Floating CTA */
.floating-ctas { position: fixed; right: 16px; bottom: 16px; z-index: 900; }
.float-btn { padding: 14px 18px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: #001910; background: linear-gradient(180deg, var(--whatsapp), #17b058); border: none; box-shadow: 0 8px 24px rgba(37,211,102,.4); text-decoration: none; font-weight: 700; font-size: 15px; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.5); }
.float-btn svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }


