:root {
  --navy: #102b57;
  --navy-deep: #071a37;
  --blue: #1465c2;
  --blue-dark: #0d4c98;
  --blue-soft: #eaf3ff;
  --sky: #f5f9ff;
  --ink: #102033;
  --muted: #637087;
  --line: #dce5f0;
  --white: #fff;
  --green: #19b966;
  --green-dark: #118b4b;
  --gold: #f5ad2a;
  --font-display: "Manrope", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: 1180px;
  --header: 82px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --shadow: 0 16px 45px rgba(16, 43, 87, .10);
  --shadow-lg: 0 25px 75px rgba(7, 26, 55, .17);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body { overflow-x: hidden; color: var(--ink); background: var(--white); font: 400 16px/1.6 var(--font-body); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.16; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); }
h3 { font-size: 1.18rem; }
::selection { background: #c8e0ff; color: var(--navy-deep); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

:focus-visible { outline: 3px solid #ffbd45; outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 200; padding: 10px 16px; border-radius: 8px; background: var(--navy); color: white; }
.skip-link:focus { top: 16px; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; color: var(--blue); font: 700 .78rem/1 var(--font-display); letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-light { color: #9ec8ff; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #73b6ff; box-shadow: 0 0 0 5px rgba(115,182,255,.17); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 48px; }
.section-head h2 { max-width: 680px; }
.section-intro { max-width: 360px; color: var(--muted); }
.section-head.center { display: block; text-align: center; }
.section-head.center h2, .section-head.center .section-intro { margin-inline: auto; }
.section-head.center .section-intro { margin-top: 15px; }

/* Shared controls */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 21px; border-radius: 999px; font: 700 .9rem/1 var(--font-display); transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16,43,87,.16); }
.btn:active { transform: translate3d(0, 1px, 0) scale(.98); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-small { min-height: 42px; padding: 10px 17px; font-size: .82rem; }
.btn-lg { min-height: 54px; padding: 15px 24px; }
.btn-outline { border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.38); color: white; background: transparent; }
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,.09); }
.btn-whatsapp { background: var(--green); color: white; }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-dark { background: var(--navy-deep); color: white; }
.btn-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; background: none; color: var(--blue); font-weight: 700; }
.text-link span { transition: transform .22s cubic-bezier(.22,.61,.36,1); }
.text-link:hover span, .text-link:active span { transform: translate3d(4px, 0, 0); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header); border-bottom: 1px solid rgba(220,229,240,.85); background: rgba(255,255,255,.94); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transition: transform .3s ease, box-shadow .25s ease, background-color .25s ease; }
.site-header.nav-hidden { transform: translateY(-100%); }
.site-header.compact { box-shadow: 0 8px 24px rgba(16,43,87,.08); background: rgba(255,255,255,.98); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 25px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; gap: 10px; }
.brand-logo { width: 72px; height: 72px; object-fit: contain; transition: width .25s ease, height .25s ease; }
.site-header.compact .brand-logo { width: 60px; height: 60px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { color: var(--navy); font: 800 1.08rem var(--font-display); letter-spacing: -.04em; }
.brand-copy small { margin-top: 4px; color: var(--blue); font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.nav-link { position: relative; padding: 10px 0; color: var(--muted); font-size: .86rem; font-weight: 600; }
.nav-link::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; border-radius: 4px; background: var(--blue); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 7px; color: var(--navy); font: 700 .84rem var(--font-display); }
.header-phone span { color: var(--blue); font-size: 1.1rem; transform: rotate(-45deg); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; background: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); transition: .2s ease; }
.nav-toggle:active { transform: scale(.94); }
.nav-toggle.open span:first-child { transform: translate3d(0, 7px, 0) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:last-child { transform: translate3d(0, -7px, 0) rotate(-45deg); }

/* Hero — compact vertical image carousel, then centered copy */
.hero { display: flex; flex-direction: column; align-items: center; width: min(100% - 40px, 1120px); margin: 28px auto 0; padding: 30px clamp(22px, 5vw, 64px) 36px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(135deg, #f8fbff 0%, #fff 72%); color: var(--ink); box-shadow: var(--shadow-lg); }
.hero-slider-wrap { width: min(100%, 1000px); }
.hero-slider { position: relative; overflow: hidden; aspect-ratio: 16 / 7; border-radius: 17px; background: var(--navy); box-shadow: 0 18px 42px rgba(16,43,87,.17); isolation: isolate; touch-action: pan-y; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: translate3d(0, 0, 0) scale(.985); -webkit-transform: translate3d(0, 0, 0) scale(.985); backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: opacity .65s ease, transform 1.2s ease; pointer-events: none; }
.hero-slide.is-active { opacity: 1; transform: translate3d(0, 0, 0) scale(1); -webkit-transform: translate3d(0, 0, 0) scale(1); pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.hero-slide::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,42,.5), transparent 45%); content: ""; }
.hero-slide figcaption { position: absolute; right: 20px; bottom: 16px; z-index: 1; color: white; font: 700 .78rem var(--font-display); text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.hero-slider-control { position: absolute; top: 50%; z-index: 2; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(6,27,59,.55); color: white; font: 400 1.8rem/1 Arial, sans-serif; transform: translateY(-50%); transition: background .2s ease, transform .2s ease; }
.hero-slider-control:hover, .hero-slider-control:active { background: var(--blue); transform: translate3d(0, -50%, 0) scale(1.06); }
.hero-slider-prev { left: 16px; }
.hero-slider-next { right: 16px; }
.hero-slider-dots { display: flex; justify-content: center; gap: 7px; padding-top: 15px; }
.hero-slider-dot { width: 8px; height: 8px; padding: 0; border-radius: 999px; background: #bed0e3; transition: width .25s ease, background-color .25s ease; }
.hero-slider-dot.is-active { width: 24px; background: var(--blue); }
.hero-inner { display: flex; justify-content: center; width: 100%; padding: 30px 0 0; text-align: center; }
.hero-copy { max-width: 700px; }
.hero-copy .eyebrow { justify-content: center; }
.hero-copy h1 { margin-bottom: 17px; color: var(--navy); font-size: clamp(2.25rem, 4.5vw, 4.25rem); }
.hero-copy h1 span { display: inline; color: var(--blue); }
.hero-lead { max-width: 550px; margin: 0 auto 27px; color: var(--muted); font-size: 1.04rem; }
.hero-actions { justify-content: center; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.hero-actions .btn { min-height: 50px; }
.hero-services { color: var(--muted); font: 600 .76rem var(--font-display); letter-spacing: .01em; }
.hero-services span { margin: 0 4px; color: #9bb5d0; }
.hero-overlay, .hero-grid-pattern, .hero-note, .hero-microtrust { display: none; }

/* Blue service-area ticker directly below the hero */
.location-strip { overflow: hidden; background: var(--blue); color: white; }
.location-marquee { overflow: hidden; }
.location-track { display: flex; width: max-content; backface-visibility: hidden; -webkit-backface-visibility: hidden; animation: location-marquee 18s linear infinite; -webkit-animation: location-marquee 18s linear infinite; will-change: transform; }
.location-group { display: flex; flex: 0 0 auto; width: max-content; }
.location-set { display: flex; align-items: center; gap: 22px; min-width: max-content; padding: 15px 42px; font: 600 .8rem var(--font-display); letter-spacing: .02em; }
.location-set strong { color: white; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location-set i { color: rgba(255,255,255,.55); font-style: normal; }
@-webkit-keyframes location-marquee { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); } }
@keyframes location-marquee { from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } to { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); } }

/* Lightweight entrance/reveal layer */
.reveal { opacity: 0; transform: translate3d(0, 16px, 0); -webkit-transform: translate3d(0, 16px, 0); transition: opacity .65s ease, transform .65s ease; }
.reveal-left { transform: translate3d(-18px, 0, 0) scale(.985); -webkit-transform: translate3d(-18px, 0, 0) scale(.985); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero-eyebrow { transition-delay: .08s; }
.hero-copy h1 { transition-delay: .18s; }
.hero-lead { transition-delay: .3s; }
.hero-actions { transition-delay: .42s; }
.hero-services { transition-delay: .56s; }
.hero-media.reveal { transition-delay: .05s; }
.reveal-stagger > * { opacity: 0; transform: translate3d(0, 14px, 0); transition: opacity .55s ease, transform .55s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }
.steps.reveal-stagger > li { transition-duration: .65s; }
.steps.reveal-stagger.is-visible > li:nth-child(2) { transition-delay: .32s; }
.steps.reveal-stagger.is-visible > li:nth-child(3) { transition-delay: .64s; }
.steps.reveal-stagger.is-visible > li:nth-child(4) { transition-delay: .96s; }

/* Trust */
.trust-bar { position: relative; z-index: 2; border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 27px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { display: grid; flex: 0 0 39px; place-items: center; width: 39px; height: 39px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font: 700 1.12rem var(--font-display); }
.trust-item span:last-child { display: flex; flex-direction: column; }
.trust-item strong { color: var(--navy); font: 700 .83rem var(--font-display); }
.trust-item small { color: var(--muted); font-size: .72rem; }

/* Services */
.services { background: var(--sky); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-md); background: white; box-shadow: 0 4px 20px rgba(16,43,87,.04); transition: transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease, border-color .28s ease; }
.service-card:active { border-color: #acd1f6; box-shadow: var(--shadow); transform: translate3d(0, -3px, 0) scale(.995); }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
.service-image { position: relative; height: 210px; overflow: hidden; background: var(--navy); }
.service-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,42,.3), transparent 62%); content: ""; transition: background .3s ease; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:active .service-image img { transform: translate3d(0, 0, 0) scale(1.03); }
.service-tag { position: absolute; top: 13px; right: 13px; padding: 5px 8px; border-radius: 7px; background: rgba(6,27,59,.72); color: white; font: 700 .66rem var(--font-display); letter-spacing: .08em; }
.service-card-body { padding: 23px 22px 24px; }
.service-icon { display: grid; place-items: center; width: 39px; height: 39px; margin-bottom: 15px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); font-size: 1.15rem; transition: transform .25s ease, background-color .25s ease; }
.service-card:active .service-icon { background: #dcecff; transform: translate3d(0, -2px, 0); }
.service-card h3 { margin-bottom: 9px; color: var(--navy); font-size: 1.06rem; }
.service-card p { min-height: 52px; margin-bottom: 19px; color: var(--muted); font-size: .86rem; }
.service-book { font-size: .78rem; }
.service-book span { display: inline-block; transition: transform .2s ease; }
.service-book:hover span { transform: translateX(4px); }
@media (hover: hover) {
  .service-card:hover { border-color: #acd1f6; box-shadow: var(--shadow); transform: translate3d(0, -6px, 0); }
  .service-card:hover .service-image img { transform: translate3d(0, 0, 0) scale(1.03); }
  .service-card:hover .service-image::after { background: linear-gradient(0deg, rgba(5,20,42,.5), transparent 62%); }
  .service-card:hover .service-icon { background: #dcecff; transform: translate3d(0, -3px, 0); }
  .gallery-item:hover img { filter: saturate(1.12); transform: translate3d(0, 0, 0) scale(1.03); }
  .gallery-item:hover::after { background: linear-gradient(0deg, rgba(5,20,42,.9), rgba(5,20,42,.05) 72%); }
}

/* Why + process */
.why-us { background: white; }
.why-us-inner { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 85px; }
.why-us-media { position: relative; }
.why-us-media::before { position: absolute; top: -18px; left: -18px; width: 110px; height: 110px; border-radius: 20px; background: var(--blue-soft); content: ""; z-index: 0; }
.why-us-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / .88; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.experience-card { position: absolute; right: -25px; bottom: 26px; z-index: 2; display: flex; flex-direction: column; padding: 16px 18px; border-radius: 14px; background: white; box-shadow: var(--shadow); }
.experience-card strong { color: var(--navy); font: 700 .85rem var(--font-display); }
.experience-card span { color: var(--muted); font-size: .74rem; }
.why-us-copy h2 { max-width: 520px; margin-bottom: 18px; }
.lead-copy { max-width: 590px; color: var(--muted); }
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px 30px; margin-top: 34px; }
.benefits-grid > div { position: relative; padding-left: 29px; }
.benefit-mark { position: absolute; top: 2px; left: 0; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: #dff6e9; color: var(--green-dark); font-size: .74rem; font-weight: 800; }
.benefits-grid strong { display: block; margin-bottom: 3px; color: var(--navy); font: 700 .9rem var(--font-display); }
.benefits-grid p { color: var(--muted); font-size: .79rem; line-height: 1.45; }
.process { background: var(--sky); }
.steps { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; --process-progress: 0%; }
.steps::before { position: absolute; top: 31px; right: 7%; left: 7%; height: 2px; background: linear-gradient(to right, var(--blue) 0 var(--process-progress), #9db9d8 var(--process-progress) 100%); content: ""; transition: background .55s ease; }
.steps li { position: relative; padding: 5px 18px 0 0; }
.steps li:not(:last-child)::after { display: none; }
.step-num { position: relative; z-index: 1; display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 21px; border: 7px solid var(--sky); border-radius: 50%; background: white; color: var(--blue); font: 700 .73rem var(--font-display); box-shadow: 0 0 0 1px #acd1f6; transition: background-color .3s ease, color .3s ease, transform .3s ease; }
.steps li.active .step-num { background: var(--blue); color: white; transform: scale(1.06); }
.steps h3 { margin-bottom: 7px; color: var(--navy); font-size: .98rem; }
.steps p { color: var(--muted); font-size: .83rem; }

/* Gallery and brands */
.gallery-section { background: white; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .85fr .85fr; grid-auto-rows: 230px; gap: 13px; }
.gallery-item { position: relative; min-height: 0; overflow: hidden; border-radius: 15px; background: var(--navy); color: inherit; text-align: left; -webkit-appearance: none; appearance: none; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: transform .45s ease, filter .45s ease; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,42,.82), transparent 60%); content: ""; }
.gallery-item { touch-action: pan-y; }
.gallery-item:active img { filter: saturate(1.12); transform: translate3d(0, 0, 0) scale(1.03); }
.gallery-item span { position: absolute; right: 16px; bottom: 14px; left: 16px; z-index: 1; color: white; font: 700 .8rem var(--font-display); }
.gallery-item b { float: right; font-size: 1.1rem; }
.brand-section { padding: 68px 0; border-block: 1px solid var(--line); background: white; }
.brand-section-inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 25px 70px; }
.brand-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.brand-section-inner > p { color: var(--muted); font-size: .85rem; }
.brand-pills { display: flex; flex-wrap: wrap; gap: 9px; grid-column: 1 / -1; }
.brand-pills span { padding: 9px 13px; border: 1px solid #cfdeed; border-radius: 999px; background: white; color: var(--navy); font-size: .75rem; font-weight: 600; }

/* Areas */
.areas { background: var(--navy); color: white; }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.areas h2 { max-width: 570px; }
.areas-copy { max-width: 540px; margin-top: 18px; color: rgba(255,255,255,.66); }
.area-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.area-cards span { display: flex; flex-direction: column; gap: 27px; min-height: 140px; padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: rgba(255,255,255,.06); color: white; font: 700 .87rem var(--font-display); }
.area-cards b { color: #7ab8ff; font-size: .66rem; letter-spacing: .1em; }

/* Reviews */
.reviews { background: var(--sky); }
.review-intro { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.review-intro .eyebrow { justify-content: center; }
.review-intro h2 { margin-inline: auto; }
.review-intro-copy { max-width: 560px; margin: 17px auto 0; color: var(--muted); font-size: 1rem; }
.review-avatars { display: flex; justify-content: center; margin: 0 auto 28px; padding-left: 14px; }
.review-avatar { flex: 0 0 auto; width: 58px; height: 58px; margin-left: -14px; border: 3px solid var(--white); border-radius: 50%; background: var(--blue-soft); object-fit: cover; box-shadow: 0 7px 18px rgba(16,43,87,.14); transition: transform .22s ease, box-shadow .22s ease; }
.review-avatar:first-child { margin-left: 0; }
.review-avatar:hover { z-index: 1; transform: translateY(-3px) scale(1.06); box-shadow: 0 10px 22px rgba(16,43,87,.2); }
.reviews-carousel { overflow: hidden; min-height: 250px; touch-action: pan-y; overscroll-behavior-x: contain; }
.reviews-track { display: flex; gap: 18px; backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: transform .5s cubic-bezier(.22,.61,.36,1); -webkit-transition: -webkit-transform .5s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.review-card { flex: 0 0 calc((100% - 36px) / 3); display: flex; flex-direction: column; min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: var(--r-md); background: white; box-shadow: 0 14px 32px rgba(16,43,87,.07); }
.review-card.is-new { animation: review-in .55s ease both; }
.review-stars { margin-bottom: 16px; color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.review-card blockquote { flex: 1; color: #40516b; font-size: .9rem; line-height: 1.7; }
.review-author { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 23px; padding-top: 15px; border-top: 1px solid #edf1f6; }
.review-author strong { color: var(--navy); font: 700 .82rem var(--font-display); }
.review-author time { color: var(--muted); font-size: .72rem; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.carousel-controls > button { color: var(--navy); background: none; font: 700 .77rem var(--font-display); }
.carousel-controls > button:hover { color: var(--blue); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot { width: 7px; height: 7px; padding: 0; border-radius: 50%; background: #c3d2e2; }
.carousel-dot.active { width: 22px; border-radius: 999px; background: var(--blue); }
.review-actions { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 28px; }
.reviews-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 240px; gap: 4px; border: 1px dashed #b6c9df; border-radius: var(--r-md); background: white; text-align: center; }
.reviews-empty strong { color: var(--navy); font: 700 1rem var(--font-display); }
.reviews-empty span { margin-bottom: 14px; color: var(--muted); font-size: .84rem; }

/* Booking */
.booking { background: white; }
.booking-inner { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 90px; }
.booking-copy h2 { max-width: 440px; margin-bottom: 18px; }
.booking-copy > p { max-width: 450px; color: var(--muted); }
.direct-contact { display: grid; gap: 12px; margin: 34px 0 22px; }
.direct-contact a { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; align-items: center; width: max-content; }
.direct-contact a > span { grid-row: span 2; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--blue-soft); color: var(--blue); font-weight: 800; }
.direct-contact small { color: var(--muted); font-size: .68rem; }
.direct-contact strong { color: var(--navy); font: 700 .85rem var(--font-display); }
.booking-note { font-size: .78rem; font-weight: 600; }
.book-form { padding: 32px; border: 1px solid var(--line); border-radius: var(--r-lg); background: white; box-shadow: var(--shadow); }
.form-heading { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading > span { color: var(--blue); font: 800 .7rem var(--font-display); letter-spacing: .1em; }
.form-heading h3 { color: var(--navy); font-size: 1.1rem; }
.form-heading p { margin-top: 4px; color: var(--muted); font-size: .78rem; }
.form-row { margin-bottom: 16px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label, legend { display: block; margin-bottom: 7px; color: var(--navy); font: 700 .76rem var(--font-display); }
label span { color: var(--muted); font-family: var(--font-body); font-weight: 400; }
sup { color: #df5a52; font-size: .8em; }
input, select, textarea { display: block; width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 9px; outline: none; background: #fbfdff; color: var(--ink); font-size: .84rem; transition: border .2s ease, box-shadow .2s ease; }
select { appearance: auto; }
textarea { min-height: 80px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #9aa9bc; }
input:focus, select:focus, textarea:focus { border-color: #72ace7; box-shadow: 0 0 0 4px rgba(20,101,194,.1); }
.field-error { display: block; min-height: 0; margin-top: 4px; color: #c94c42; font-size: .7rem; }
.invalid { border-color: #df5a52 !important; }
.form-note { min-height: 22px; margin-top: 12px; color: var(--blue-dark); font-size: .78rem; }
.form-note.success { color: var(--green-dark); }

/* FAQ and CTA */
.faq-section { padding: 100px 0; background: var(--sky); }
.faq-inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro > p:not(.eyebrow) { margin-bottom: 20px; color: var(--muted); font-size: .88rem; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; color: var(--navy); font: 700 .9rem var(--font-display); list-style: none; touch-action: pan-y; transition: color .2s ease; }
.faq-list summary:active { color: var(--blue); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 1.3rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; overflow: hidden; padding: 0 40px 20px 0; color: var(--muted); font-size: .82rem; opacity: 1; transform: translate3d(0, 0, 0); transition: height .28s ease, opacity .28s ease, transform .28s ease; }
.carousel-controls > button:active, .carousel-dot:active { transform: scale(.94); }
.cta-strip { padding: 54px 0; background: var(--blue); color: white; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-strip h2 { margin-bottom: 8px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-strip p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Footer + quick actions */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.68); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 50px; padding: 70px 0 55px; }
.footer-brand .brand-logo { width: 53px; height: 53px; }
.footer-brand .brand-copy strong { color: white; font-size: .95rem; }
.footer-brand .brand-copy small { color: #7ab8ff; font-size: .55rem; }
.footer-brand > p { max-width: 235px; margin-top: 18px; color: rgba(255,255,255,.48); font-size: .78rem; }
.footer-col h4 { margin-bottom: 17px; color: white; font-size: .78rem; letter-spacing: .04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li, .footer-col a { color: rgba(255,255,255,.55); font-size: .76rem; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; color: rgba(255,255,255,.4); font-size: .7rem; }
.floating-contact { position: fixed; right: 22px; bottom: 24px; z-index: 80; display: flex; flex-direction: column; gap: 9px; }
.floating-btn { display: flex; align-items: center; gap: 8px; padding: 11px 15px; border-radius: 999px; color: white; box-shadow: 0 12px 28px rgba(7,26,55,.22); font-size: .75rem; transition: transform .2s ease, box-shadow .2s ease; }
.floating-btn:hover { transform: translateX(-4px) scale(1.02); box-shadow: 0 16px 32px rgba(7,26,55,.28); }
.floating-btn:active { transform: translate3d(-2px, 0, 0) scale(.98); }
.floating-btn span { transition: transform .2s ease; }
.floating-btn:hover span { transform: translateX(2px); }
.floating-call { background: var(--blue); }
.floating-whatsapp { background: var(--green); }
.floating-btn span { font-size: 1rem; }
.mobile-bottom-bar { display: none; transform: translateY(100%); transition: transform .3s ease; }

/* Modals and gallery lightbox */
.modal, .lightbox { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
.modal[hidden], .lightbox[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,15,33,.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal-card { position: relative; z-index: 1; width: min(100%, 510px); max-height: min(720px, calc(100svh - 40px)); max-height: min(720px, calc(100dvh - 40px)); overflow: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 34px; border-radius: var(--r-lg); background: white; box-shadow: var(--shadow-lg); animation: modal-in .25s ease; }
.modal.is-closing .modal-card, .lightbox.is-closing .lightbox-card { animation: modal-out .2s ease both; }
.modal.is-closing .modal-backdrop, .lightbox.is-closing .modal-backdrop { animation: backdrop-out .2s ease both; }
.modal-wide .modal-card { width: min(100%, 760px); }
.modal-close { position: absolute; top: 15px; right: 16px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--sky); color: var(--navy); font-size: 1.4rem; line-height: 1; }
.modal-card h2 { margin-bottom: 9px; color: var(--navy); font-size: 2rem; }
.modal-intro { margin-bottom: 25px; color: var(--muted); font-size: .84rem; }
.rating-field { margin: 0 0 16px; border: 0; }
.star-picker { display: flex; gap: 4px; }
.star-picker button { padding: 2px; color: #bdc9d8; background: none; font-size: 1.8rem; line-height: 1; transition: color .15s ease, transform .15s ease; }
.star-picker button.active, .star-picker button:hover { color: var(--gold); transform: scale(1.1); }
.all-reviews-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; margin-top: 25px; }
.all-review { padding: 17px; border: 1px solid var(--line); border-radius: 13px; }
.all-review .review-stars { margin-bottom: 8px; font-size: .8rem; }
.all-review blockquote { margin-bottom: 12px; color: var(--muted); font-size: .8rem; }
.all-review strong { color: var(--navy); font: 700 .77rem var(--font-display); }
.all-review time { float: right; color: var(--muted); font-size: .7rem; }
.lightbox-card { position: relative; z-index: 1; width: min(100%, 980px); }
.lightbox-card img { max-height: 78svh; max-height: 78dvh; width: 100%; object-fit: contain; border-radius: 14px; }
.lightbox-card p { margin-top: 10px; color: white; text-align: center; font-weight: 700; }
.lightbox-card .modal-close { top: -46px; right: 0; }
@keyframes modal-in { from { opacity: 0; transform: translate3d(0, 12px, 0) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes modal-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translate3d(0, 8px, 0) scale(.98); } }
@keyframes backdrop-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes faq-copy-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@keyframes review-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1050px) {
  .main-nav ul { gap: 17px; }
  .header-phone { display: none; }
  .hero { min-height: 500px; }
  .why-us-inner, .booking-inner { gap: 50px; }
  .footer-inner { gap: 28px; }
}
@media (max-width: 820px) {
  :root { --header: 72px; }
  .container { width: min(100% - 36px, var(--container)); }
  .section { padding: 78px 0; }
  .main-nav { position: fixed; top: var(--header); right: 0; left: 0; padding: 8px 18px 17px; border-bottom: 1px solid var(--line); background: white; opacity: 0; pointer-events: none; transform: translate3d(0, -8px, 0); transition: opacity .24s ease, transform .24s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translate3d(0, 0, 0); }
  .main-nav ul { display: block; }
  .nav-link { display: block; padding: 12px 4px; border-bottom: 1px solid #eef3f8; }
  .nav-link::after { display: none; }
  .nav-toggle { display: block; transition: transform .18s ease; }
  .header-actions .btn { display: none; }
  .hero { width: min(100% - 24px, 760px); min-height: 0; margin-top: 12px; padding: 20px; border-radius: 21px; }
  .hero-inner { min-height: 0; padding: 38px 8px 20px; }
  .hero-copy { max-width: 590px; }
  .hero-slider { aspect-ratio: 16 / 8; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 17px 28px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-us-inner, .booking-inner, .faq-inner, .areas-inner { grid-template-columns: 1fr; }
  .why-us-media { max-width: 620px; }
  .review-card { flex-basis: calc((100% - 18px) / 2); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 38px 24px; }
  .steps::before { display: none; }
  .booking-inner { gap: 40px; }
  .booking-copy h2 { max-width: 580px; }
  .faq-inner { gap: 40px; }
  .footer-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 54px 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-intro { margin-top: 15px; }
  .brand-copy { display: none; }
  .brand-logo { width: 64px; height: 64px; }
  .hero { width: calc(100% - 20px); padding: 12px; }
  .hero-inner { padding: 29px 8px 12px; }
  .hero-slider { aspect-ratio: 16 / 9; border-radius: 13px; }
  .hero-slider-control { width: 32px; height: 32px; }
  .hero-slider-prev { left: 10px; }
  .hero-slider-next { right: 10px; }
  .hero-slide figcaption { right: 13px; bottom: 11px; font-size: .68rem; }
  .hero-copy h1 { font-size: clamp(2.2rem, 11vw, 3.35rem); }
  .hero-lead { font-size: .94rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 26px; }
  .hero-actions .btn:first-child { grid-column: 1 / -1; }
  .hero-actions .btn { min-height: 50px; padding-inline: 12px; font-size: .78rem; }
  .hero-services { font-size: .69rem; line-height: 1.8; }
  .location-set { gap: 15px; padding: 14px 24px; font-size: .7rem; }
  .trust-grid { gap: 16px 12px; padding: 23px 0; }
  .trust-item { gap: 8px; }
  .trust-icon { flex-basis: 31px; width: 31px; height: 31px; font-size: .9rem; }
  .trust-item strong { font-size: .72rem; }
  .trust-item small { font-size: .62rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-image { height: 195px; }
  .service-card p { min-height: 0; }
  .experience-card { right: 12px; bottom: 12px; }
  .benefits-grid { gap: 19px 14px; }
  .benefits-grid p { font-size: .72rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px 17px; }
  .steps li { padding-right: 0; }
  .steps li::after { display: none !important; }
  .steps h3 { font-size: .86rem; }
  .steps p { font-size: .76rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item-tall { grid-row: span 2; }
  .gallery-item span { right: 10px; bottom: 9px; left: 10px; font-size: .69rem; }
  .brand-section-inner { display: block; }
  .brand-section-inner > p { margin-top: 15px; }
  .brand-pills { margin-top: 20px; }
  .area-cards { gap: 7px; }
  .area-cards span { min-height: 100px; padding: 11px; gap: 17px; font-size: .72rem; }
  .review-intro { margin-bottom: 34px; }
  .review-avatars { margin-bottom: 24px; }
  .review-avatar { width: 48px; height: 48px; margin-left: -11px; border-width: 2px; }
  .review-avatar:first-child { margin-left: 0; }
  .review-intro-copy { max-width: 340px; font-size: .9rem; }
  .review-card { flex-basis: 100%; min-height: 230px; }
  .carousel-controls { justify-content: space-between; }
  .review-actions { flex-direction: column; gap: 15px; margin-top: 24px; }
  .review-actions .btn { width: min(100%, 250px); }
  .booking-inner { gap: 24px; }
  .book-form { padding: 22px 17px; border-radius: 18px; }
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .book-form input, .book-form select { box-sizing: border-box; min-width: 0; max-width: 100%; padding: 11px 10px; font-size: .8rem; }
  .faq-section { padding: 56px 0; }
  .faq-list summary { font-size: .82rem; }
  .cta-strip-inner { display: block; }
  .cta-actions { margin-top: 25px; }
  .cta-actions .btn { flex: 1; padding-inline: 12px; font-size: .75rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 35px 20px; padding: 55px 0 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { display: block; }
  .footer-bottom-inner span { display: block; margin-top: 5px; }
  .floating-contact { display: none; }
  .mobile-bottom-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: grid; grid-template-columns: repeat(3,1fr); padding: 9px 8px max(9px, env(safe-area-inset-bottom)); background: rgba(7,26,55,.97); box-shadow: 0 -8px 28px rgba(7,26,55,.18); }
  .mobile-bottom-bar.is-visible { transform: translateY(0); }
  .mobile-bottom-bar a { display: flex; flex-direction: column; align-items: center; gap: 2px; color: rgba(255,255,255,.75); font-size: .63rem; font-weight: 700; }
  .mobile-bottom-bar a:last-child { color: #83c1ff; }
  .mobile-bottom-bar span { font-size: 1.05rem; line-height: 1; }
  .mobile-bottom-bar a:active { transform: scale(.96); }
  body { padding-bottom: calc(59px + env(safe-area-inset-bottom)); }
  .all-reviews-list { grid-template-columns: 1fr; }
  .modal-card { max-height: min(720px, calc(100svh - 24px)); max-height: min(720px, calc(100dvh - 24px)); padding: 27px 18px max(27px, calc(18px + env(safe-area-inset-bottom))); }
  .lightbox-card { width: 100%; }
  .lightbox-card .modal-close { top: -42px; right: 0; }
}
@media (max-width: 360px) {
  .hero-copy h1 { font-size: 2.18rem; }
  .hero-actions .btn { font-size: .7rem; }
  .trust-item small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .review-card.is-new { opacity: 1; transform: none; animation: none; }
  .site-header, .mobile-bottom-bar { transition: none; }
  .steps::before { transition: none; }
  .location-track { animation: none; }
  .hero-slide { transition: none; }
}