:root {
  --primary: #46576a;
  --primary-dark: #2c3844;
  --primary-light: #e9f4f6;
  --accent: #f0794f;
  --accent-dark: #d35f38;
  --heading-accent: var(--primary-dark);
  --ink: #1f2937;
  --ink-soft: #5b6472;
  --bg: #ffffff;
  --surface: #ffffff;
  --bg-alt: #f7f8fa;
  --border: #e5e9ea;
  --header-bg: rgba(250, 251, 252, .97);
  --header-bg-scrolled: rgba(250, 251, 252, .6);
  --error: #e11d48;
  --swatch-1: #16a3c4;
  --swatch-2: #f0794f;
  --swatch-3: #46576a;
  --tag-blue: #3f8efc;
  --tag-blue-bg: #eaf4ff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(44, 56, 68, 0.08);
  --font-head: 'Barlow', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

[data-theme="dark"] {
  --primary-light: #1e2a30;
  --heading-accent: #6cc9e0;
  --ink: #eef2f8;
  --ink-soft: #a9b7cb;
  --bg: #0b1626;
  --surface: #122238;
  --bg-alt: #0e1d31;
  --border: #26364d;
  --header-bg: rgba(11, 22, 38, .9);
  --header-bg-scrolled: rgba(11, 22, 38, .6);
  --error: #f87171;
  --tag-blue: #7db4fd;
  --tag-blue-bg: rgba(63, 142, 252, .14);
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

body { transition: background-color .2s ease, color .2s ease; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

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

.text-accent { color: var(--accent); }
.text-pop { color: #ec1e79; font-weight: 800; position: relative; }
.text-pop .spark { font-size: 15px; vertical-align: super; margin-left: 3px; color: #ec1e79; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-head);
  padding: 12px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: 15px;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(240,121,79,.35); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--facebook { background: #1877F2; color: #fff; box-shadow: 0 8px 20px rgba(24,119,242,.35); }
.btn--facebook:hover { background: #145dc4; transform: translateY(-2px); }
.btn--facebook .fb-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; background: #fff; color: #1877F2; font-size: 11px; flex-shrink: 0;
}
.btn--outline { border-color: var(--tag-blue); color: var(--tag-blue); background: transparent; }
.btn--outline:hover { background: var(--tag-blue); color: #fff; }
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--lg { padding: 12px 22px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: top .3s ease, box-shadow .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.header.header--scrolled {
  top: 15px;
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 20px; color: var(--ink); }
.logo__icon-img { height: 34px; width: auto; flex-shrink: 0; }
.logo__wordmark-img { height: 20px; width: auto; flex-shrink: 0; }
.logo__text strong { color: var(--primary); }
.logo--light { color: #fff; }
.logo--light .logo__text strong { color: var(--accent); }

.nav { display: flex; gap: 28px; }
.nav a { font-weight: 500; font-size: 14px; color: var(--ink-soft); position: relative; }
.nav a:hover { color: var(--primary); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.nav__toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--ink-soft); display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 15px; transition: background .15s ease, color .15s ease;
}
.theme-toggle:hover { background: var(--primary-light); color: var(--primary); }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--ink-soft); font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .5px; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.lang-toggle i { font-size: 15px; }
.lang-toggle:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* Hero */
.hero {
  padding: 35px 0 40px; overflow: hidden;
  background-image: url('/assets/hero-bg-pattern.png?v=9');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
[data-theme="dark"] .hero {
  background-image: url('/assets/hero-bg-pattern-dark.png?v=8');
}
.hero__inner { display: grid; grid-template-columns: .95fr 1.15fr; gap: 50px; align-items: start; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #1cade4, #0072b8); border: none;
  padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 700; letter-spacing: .2px;
  color: #fff; margin-bottom: 20px; box-shadow: 0 10px 26px rgba(28, 173, 228, .5);
}
.hero h1 { font-size: 44px; letter-spacing: -.5px; }
.hero__desc { font-size: 17px; max-width: 520px; }
.hero__desc-highlight { font-size: 1.2em; font-weight: 800; color: var(--tag-blue); }

.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero__tag {
  background: var(--tag-blue-bg); color: var(--tag-blue); border: 1px solid var(--tag-blue-bg);
  border-radius: 999px; padding: 8px 18px; font-size: 14px; font-weight: 600;
}

.hero__cta { display: flex; gap: 16px; margin: 28px 0 40px; flex-wrap: wrap; }
.hero__cta .btn { min-width: 214px; justify-content: center; }

.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--heading-accent); }
.stat__num i { color: #f59e0b; font-size: 18px; }
.stat__label { font-size: 13px; color: var(--ink-soft); }
.hero__proof {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.hero__proof-row { display: flex; align-items: center; gap: 10px; }
.hero__proof-avatars { display: flex; }
.hero__proof-avatar {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
  background: var(--primary-light); border: 2px solid var(--surface); margin-left: -10px;
}
.hero__proof-avatar:first-child { margin-left: 0; }
.hero__proof-count { font-size: 15px; font-weight: 700; color: var(--tag-blue); }
.hero__proof-stars { color: #f5b400; font-size: 14px; letter-spacing: 1px; }
.hero__proof-rating { font-size: 14px; font-weight: 600; color: var(--tag-blue); }
.hero__proof-pin { color: var(--ink-soft); margin-left: auto; font-size: 14px; }
.hero__proof-link { text-decoration: none; border-radius: 6px; transition: opacity .15s ease; }
.hero__proof-link:hover { opacity: .75; }

.hero__frame { position: relative; }
.hero__slideshow {
  position: relative; aspect-ratio: 1/1; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--primary-light);
}
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slideshow { cursor: zoom-in; }

.hero__slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.85); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.2); transition: background .15s ease, transform .15s ease;
}
.hero__slide-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hero__slide-nav--prev { left: 14px; }
.hero__slide-nav--next { right: 14px; }

.hero__slide-counter {
  position: absolute; right: 14px; bottom: 14px; z-index: 5;
  padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: rgba(0,0,0,.55); color: #fff; letter-spacing: .02em; pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center;
  background: rgba(10,14,18,.92); padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(90vw, 900px); max-height: 85vh; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5); object-fit: contain;
}
.lightbox__close, .lightbox__nav {
  position: fixed; border: none; background: rgba(255,255,255,.12); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; transition: background .15s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.12); color: #fff; letter-spacing: .02em; pointer-events: none;
}

/* Trust strip */
.trust-strip { background: #132139; padding: 18px 0; }
.trust-strip__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.trust-item { color: #fff; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.trust-item i { color: #a8e6f0; }

/* Sections */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.eyebrow {
  display: inline-block; color: var(--accent); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: 13px; margin-bottom: 10px;
}
.section__head h2 { font-size: 32px; }
#services .section__head p { font-size: 17px; }
#gallery .section__head--left h2 { font-size: 38px; color: #3f8efc; }
#gallery .eyebrow {
  background: var(--tag-blue-bg); color: var(--tag-blue); border-radius: 999px;
  padding: 6px 16px; text-transform: none; letter-spacing: .3px;
}
#gallery .section__head--left .btn { margin-top: 10px; }

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

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}

.service-card {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.14); }
.service-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.service-card:hover .service-card__media img { transform: scale(1.08); }

/* Card fade effect (service cards): auto-fades on a timer (see script.js) to reveal a second photo */
.service-card__media--flip img { transition: none; }
.service-card__flip-inner { position: relative; width: 100%; height: 100%; }
.service-card__flip-face {
  position: absolute; inset: 0; opacity: 0; transition: opacity 3s ease;
}
.service-card__flip-face--front { opacity: 1; }
.service-card__flip-face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card__flip-inner.is-flipped .service-card__flip-face--front { opacity: 0; }
.service-card__flip-inner.is-flipped .service-card__flip-face--back { opacity: 1; }

.service-card__badge {
  position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); color: var(--tag-blue); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; font-size: 15px; z-index: 1;
  transition: background .25s ease, color .25s ease;
}
.service-card:hover .service-card__badge { background: var(--tag-blue); color: #fff; }
.service-card__body { flex: 1; display: flex; flex-direction: column; padding: 26px 20px 20px; }
.service-card h3 { font-size: 17px; color: var(--ink); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--ink-soft); flex: 1; margin-bottom: 18px; }
.btn--pill {
  align-self: flex-end; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px;
  padding: 9px 22px; border-radius: 999px; text-decoration: none; transition: background .15s ease, color .15s ease;
}
.btn--pill:hover { background: var(--accent-dark); color: #fff; }
.card-link { color: #fff; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; text-decoration: underline; text-underline-offset: 3px; }
.card-link i { font-size: 11px; transition: transform .15s ease; }
.card-link:hover i { transform: translateX(3px); }

/* About */
.about { display: grid; grid-template-columns: .8fr 1.1fr .55fr; gap: 40px; align-items: center; }
.about__frame {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
}
.about__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about__quote { font-style: italic; color: var(--heading-accent); font-size: 18px; font-weight: 600; }
.about__text-highlight { color: var(--tag-blue); font-weight: 600; }

.about__certs { display: flex; flex-direction: column; gap: 12px; align-self: center; }
.about__certs-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--ink-soft); text-align: center;
}
.certs-viewport {
  height: 460px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}
.certs-track { display: flex; flex-direction: column; animation: certs-scroll 36s linear infinite; }
.certs-track:hover { animation-play-state: paused; }
.certs-set { display: flex; flex-direction: column; gap: 12px; padding-bottom: 12px; }
.certs-item { width: 100%; display: block; border-radius: 10px; cursor: zoom-in; box-shadow: var(--shadow); }
@keyframes certs-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.checklist { margin: 18px 0; }
.checklist li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 15px; color: var(--ink); }
.checklist i { color: var(--tag-blue); margin-top: 3px; }
.about__equip {
  background: var(--primary-light); border-left: 4px solid var(--accent); border-radius: 12px;
  padding: 16px 18px; font-size: 14px; margin-bottom: 24px;
}
.about__equip span { font-style: italic; color: var(--heading-accent); font-weight: 600; }

/* Gallery */
.gallery-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.section__head--left { text-align: left; margin: 0; max-width: none; }
.gallery-frame { position: relative; max-width: 100%; margin: 0; }
.gallery-slideshow {
  position: relative; aspect-ratio: 6/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--primary-light); cursor: zoom-in;
}
.gallery-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.gallery-slide.is-active { opacity: 1; }
.gallery-slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.85); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.2); transition: background .15s ease, transform .15s ease;
}
.gallery-slide-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-slide-nav--prev { left: 14px; }
.gallery-slide-nav--next { right: 14px; }

/* Reviews */
.rating-summary { display: flex; align-items: center; gap: 16px; justify-content: center; margin-top: 18px; text-decoration: none; transition: opacity .15s ease; }
.rating-summary:hover { opacity: .8; }
.rating-summary__score { font-size: 40px; font-weight: 800; font-family: var(--font-head); color: var(--heading-accent); }
.rating-summary__stars { color: #f59e0b; font-size: 16px; }
.rating-summary__count { font-size: 13px; font-weight: 600; color: var(--tag-blue); }

.testimonials-viewport {
  overflow: hidden; width: 100%; margin-top: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonials-track { display: flex; width: max-content; animation: testimonials-scroll 110s linear infinite; }
.testimonials-track:hover { animation-play-state: paused; }
.testimonial-set { display: flex; gap: 24px; padding-right: 24px; }
@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  width: 320px; flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(44, 56, 68, 0.16);
  border-color: var(--primary);
}
.testimonial-card:hover .testimonial-card__avatar { border-color: var(--primary); }
.testimonial-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; background: var(--bg-alt);
  border: 2px solid var(--surface); box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.testimonial-card__stars { color: #f59e0b; font-size: 13px; margin-top: 2px; }
.testimonial-card p { color: var(--ink); font-size: 14.5px; font-style: italic; }
.testimonial-card__author { font-weight: 600; font-size: 14px; color: var(--heading-accent); }
.badge-local-guide {
  display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--primary);
  background: var(--primary-light); border-radius: 999px; padding: 2px 8px; margin-left: 6px; vertical-align: middle;
}
.disclaimer { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 24px; }

.review-source-badge-wrap { text-align: center; margin-top: 24px; }
.review-source-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tag-blue-bg); color: var(--tag-blue);
  border-radius: 999px; padding: 8px 18px; font-size: 13.5px; font-weight: 600;
  text-decoration: none; transition: background .15s ease;
}
.review-source-badge:hover { background: var(--tag-blue); color: #fff; }
.review-source-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pricing-table th, .pricing-table td { padding: 16px 22px; text-align: left; font-size: 15px; }
.pricing-table thead th { background: #132139; color: #fff; font-family: var(--font-head); font-weight: 600; }
.pricing-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.pricing-table tbody td:last-child { font-weight: 700; color: var(--accent-dark); text-align: right; }
.pricing-table thead th:last-child { text-align: right; }
.pricing-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 16px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 6px 24px; box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 16px 0; font-family: var(--font-head); font-weight: 600; font-size: 16px;
  cursor: pointer; list-style: none; color: var(--ink); display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 13px;
  color: var(--primary); transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding-bottom: 18px; margin: -6px 0 0; font-size: 14.5px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr; }
.contact__info { width: 100%; max-width: 780px; margin: 0 auto; text-align: center; }
.contact__info h2 { font-size: 32px; }
.contact__info .contact-methods { text-align: left; }
.contact__heading-highlight { color: var(--tag-blue); }
.contact-methods {
  display: flex; flex-direction: column; gap: 16px; margin: 24px 0;
  background: var(--bg-alt); border-radius: calc(var(--radius) + 8px);
  padding: 22px; box-shadow: var(--shadow);
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 23px 22px; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.contact-card:hover { transform: translateX(4px); box-shadow: 0 14px 28px rgba(0,0,0,.12); }
.contact-card__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--tag-blue-bg); color: var(--tag-blue); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.contact-card:hover .contact-card__icon { background: var(--tag-blue); color: #fff; }
.contact-card__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-card__label { font-size: 13.5px; color: var(--ink-soft); }
.contact-card__value { font-size: 17px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.contact__map {
  position: relative; height: 260px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.contact__map iframe { display: block; width: 100%; height: 100%; }
.footer__col a.contact__map-link, a.contact__map-link {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--tag-blue); font-size: 12.5px; font-weight: 700;
  padding: 7px 12px; border-radius: 999px; box-shadow: var(--shadow); text-decoration: none;
}
.footer__col a.contact__map-link:hover, a.contact__map-link:hover { background: var(--tag-blue); color: #fff; }
.footer__col--map .contact__map { height: 180px; }

/* Footer */
.footer { background: #132139; color: #d3d9dc; padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { color: #fff; font-size: 14px; margin-top: 14px; }
.footer__brand p i {
  color: #fff; margin-right: 6px; width: 14px; text-align: center;
  -webkit-text-stroke: .6px var(--tag-blue); text-stroke: .6px var(--tag-blue);
}
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  border: 1.5px solid var(--tag-blue);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__col h4 { color: #3f8efc; font-size: 15px; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: #fff; font-size: 14px; margin-bottom: 10px; }
.footer__col a:hover { color: #3f8efc; }
.footer__col p i {
  color: #fff; margin-right: 8px; width: 14px; text-align: center;
  -webkit-text-stroke: .6px var(--tag-blue); text-stroke: .6px var(--tag-blue);
}
.footer__col p a { display: inline; margin-bottom: 0; color: #fff; }
.footer__col p a:hover { color: #3f8efc; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13px; color: #828d93; text-align: center; }

/* Floating actions */
.floating-actions { position: fixed; right: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 90; }
.floating-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; box-shadow: 0 8px 20px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: floating-bob 2.8s ease-in-out infinite;
}
.floating-actions .floating-btn:nth-child(1) { animation-delay: 0s; }
.floating-actions .floating-btn:nth-child(2) { animation-delay: .2s; }
.floating-actions .floating-btn:nth-child(3) { animation-delay: .4s; }
.floating-btn:hover {
  animation-play-state: paused; transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.3);
}
@keyframes floating-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.floating-btn--call { background: var(--primary); }
.floating-btn--chat { background: #0084ff; }
.floating-btn--zalo { background: #0068ff; }
.floating-btn .icon-zalo { width: 24px; height: 24px; }
.floating-btn--book { background: var(--accent); }

/* Responsive */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(1, 1fr); }
  .about, .contact, .gallery-inner { grid-template-columns: 1fr; }
  .section__head--left { text-align: center; }
  .hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 66px; left: 0; right: 0; background: var(--surface); flex-direction: column;
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--border); transform: translateY(-150%);
    opacity: 0; transition: all .25s ease; }
  .nav.is-open { transform: translateY(0); opacity: 1; }
  .nav__toggle { display: block; }
  .header__phone { display: none; }
  .header__inner { padding: 10px 14px; }
  .header__actions { gap: 8px; }
  .lang-toggle span { display: none; }
  .lang-toggle { padding: 0; width: 34px; height: 34px; justify-content: center; }
  .btn--facebook { padding: 0; width: 34px; height: 34px; border-radius: 50%; justify-content: center; }
  .btn--facebook .fb-label { display: none; }
  .btn--facebook .fb-icon { width: 100%; height: 100%; background: transparent; color: #fff; font-size: 15px; }
  .hero h1 { font-size: 30px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; min-width: 0; }
  .section { padding: 60px 0; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust-strip__inner { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .services.grid--4 { grid-template-columns: 1fr; }
}
