/* ============================================================
   PHOENIX Real Estate Development & Engineering Works
   Corporate design: Phoenix Blue #0B4EA2 | Steel Gray #787C82
                     Graphite Black #1A1D22 | Pure White #FFFFFF
   ============================================================ */

:root {
  --phoenix-blue: #0B4EA2;
  --phoenix-blue-light: #1E6FD9;
  --steel-gray: #787C82;
  --graphite: #1A1D22;
  --graphite-2: #22262d;
  --graphite-3: #2c313a;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --font-en: 'Montserrat', sans-serif;
  --font-ar: 'Tajawal', 'Montserrat', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  background: var(--graphite);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

html[lang="ar"] body { font-family: var(--font-ar); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1140px, 90%); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .4s, box-shadow .4s, padding .4s;
}
.site-header.scrolled {
  background: rgba(26, 29, 34, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 1.05rem;
}
.brand img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}
.brand .brand-x { color: var(--phoenix-blue-light); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
html[lang="ar"] .main-nav a { letter-spacing: 0; font-size: .95rem; }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--phoenix-blue-light);
  transition: width .35s var(--ease-out);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.lang-switch {
  border: 1.5px solid var(--phoenix-blue-light);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  transition: background .3s, color .3s;
}
.lang-switch:hover { background: var(--phoenix-blue); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1013;
}
/* Flyer photograph — slow cinematic push-in down the road */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-villas.jpg") center 46% / cover no-repeat;
  transform-origin: 36% 50%;      /* the road's vanishing point */
  animation: heroPush 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroPush {
  from { transform: scale(1.06); }
  to   { transform: scale(1.28); }
}
/* Legibility + brand tint overlay (dark under the text side) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,16,19,.92) 0%, rgba(13,16,19,.72) 30%, rgba(13,16,19,.28) 60%, rgba(11,78,162,.18) 100%),
    linear-gradient(180deg, rgba(13,16,19,.55) 0%, transparent 26%, transparent 62%, rgba(13,16,19,.72) 100%);
}
html[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(13,16,19,.92) 0%, rgba(13,16,19,.72) 30%, rgba(13,16,19,.28) 60%, rgba(11,78,162,.18) 100%),
    linear-gradient(180deg, rgba(13,16,19,.55) 0%, transparent 26%, transparent 62%, rgba(13,16,19,.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1140px, 90%);
  margin-inline: auto;
  padding: 120px 0 160px;
}
.hero-copy { max-width: 620px; }

.hero-copy .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--phoenix-blue-light);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 18px;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) .2s forwards;
}
html[lang="ar"] .hero-copy .kicker { letter-spacing: .06em; font-size: .95rem; }
.hero-copy .kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--phoenix-blue-light);
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .01em;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) .4s forwards;
}
.hero-copy h1 .accent { color: var(--phoenix-blue-light); }
.hero-copy .sub {
  margin-top: 20px;
  max-width: 46ch;
  color: rgba(255, 255, 255, .72);
  font-size: 1.06rem;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) .6s forwards;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  opacity: 0;
  animation: riseIn 1s var(--ease-out) .8s forwards;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  transition: transform .3s var(--ease-out), box-shadow .3s, background .3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--phoenix-blue), var(--phoenix-blue-light));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(11, 78, 162, .4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11, 78, 162, .55); }
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--phoenix-blue-light); background: rgba(11, 78, 162, .15); }

.scroll-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
html[lang="ar"] .scroll-hint { letter-spacing: .1em; font-size: .8rem; }
.scroll-hint .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  position: relative;
}
.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--phoenix-blue-light);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sections & transitions ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }

.section-head { margin-bottom: 56px; }
.section-head .tag {
  color: var(--phoenix-blue-light);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .76rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
html[lang="ar"] .section-head .tag { letter-spacing: .05em; font-size: .95rem; }
.section-head .tag::before { content: ""; width: 30px; height: 2px; background: var(--phoenix-blue-light); }
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  margin-top: 12px;
  line-height: 1.2;
}
.section-head p { color: rgba(255, 255, 255, .65); margin-top: 12px; max-width: 60ch; }

/* Diagonal dividers (echo of the angular logo motif) */
.slant-top::before,
.slant-bottom::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 90px;
  background: inherit;
  z-index: 2;
}
.slant-top::before { top: -89px; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.slant-bottom::after { bottom: -89px; clip-path: polygon(0 0, 100% 0, 0 100%); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html[dir="rtl"] .reveal-left { transform: translateX(60px); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html[dir="rtl"] .reveal-right { transform: translateX(-60px); }
.reveal-left.in, .reveal-right.in,
html[dir="rtl"] .reveal-left.in, html[dir="rtl"] .reveal-right.in { opacity: 1; transform: none; }
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease-out);
}
html[dir="rtl"] .reveal-clip { clip-path: inset(0 0 0 100%); }
.reveal-clip.in, html[dir="rtl"] .reveal-clip.in { clip-path: inset(0 0 0 0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ---------- About / Adnan ---------- */
.about { background: var(--off-white); color: var(--graphite); }
.about .section-head h2 { color: var(--graphite); }
.about .section-head p { color: #4b5057; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.portrait-wrap { position: relative; max-width: 420px; }
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 3px solid var(--phoenix-blue);
  border-radius: 18px;
  z-index: 0;
}
html[dir="rtl"] .portrait-wrap::before { inset: 24px 24px -24px -24px; }
.portrait-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(26, 29, 34, .28);
}
.portrait-badge {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  inset-inline-end: -18px;
  background: var(--graphite);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(26, 29, 34, .35);
  text-align: center;
}
.portrait-badge strong { display: block; font-size: 1rem; }
.portrait-badge span { font-size: .78rem; color: var(--phoenix-blue-light); font-weight: 600; }

.about-copy h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.about-copy .role { color: var(--phoenix-blue); font-weight: 700; margin-bottom: 20px; }
.about-copy p { color: #3d4147; margin-bottom: 16px; font-size: 1.03rem; }
.about-copy blockquote {
  margin: 26px 0;
  padding-inline-start: 20px;
  border-inline-start: 4px solid var(--phoenix-blue);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--graphite);
  font-weight: 600;
}
.signature { margin-top: 8px; font-weight: 700; color: var(--graphite); }
.signature small { display: block; color: var(--steel-gray); font-weight: 500; }

/* ---------- Story + Team ---------- */
.about-story { max-width: 820px; text-align: start; }
html[lang="ar"] .about-story { text-align: justify; }
.about-story p { color: #3d4147; font-size: 1.05rem; margin-bottom: 16px; }
.about-story blockquote {
  margin: 24px auto 0;
  max-width: 660px;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--graphite);
}
.team-label {
  text-align: center;
  color: var(--phoenix-blue);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 46px 0 30px;
}
html[lang="ar"] .team-label { letter-spacing: .05em; font-size: .98rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 940px;
  margin-inline: auto;
}
.team-member { position: relative; margin: 0; }
.tm-photo { position: relative; }
.tm-photo::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 3px solid var(--phoenix-blue);
  border-radius: 16px;
  z-index: 0;
}
html[dir="rtl"] .tm-photo::before { inset: 16px 16px -16px -16px; }
.tm-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(26, 29, 34, .26);
}
.team-member figcaption {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  inset-inline-end: -10px;
  background: var(--graphite);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(26, 29, 34, .35);
  text-align: center;
}
.team-member figcaption strong { display: block; font-size: .98rem; }
.team-member figcaption span { font-size: .76rem; color: var(--phoenix-blue-light); font-weight: 600; }

/* ---------- Services ---------- */
/* Services — Flyer 2 hillside villas as the backdrop, fading into dark for the cards.
   The section is pulled up and clipped with a diagonal top so the photo fills the
   whole slanted area (no dark wedge). */
.services {
  position: relative;
  margin-top: -90px;
  padding-top: 200px;
  clip-path: polygon(0 90px, 100% 0, 100% 100%, 0 100%);
  background-color: #0d1013;
  background-image:
    linear-gradient(180deg, rgba(13,16,19,.40) 0%, rgba(13,16,19,.58) 28%, rgba(13,16,19,.88) 50%, #0d1013 72%),
    url("../img/hills-villas.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: cover, 100% auto;
}
.services .section-head .tag,
.services .section-head h2,
.services .section-head p { text-shadow: 0 2px 16px rgba(0, 0, 0, .55); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: linear-gradient(160deg, var(--graphite-2), var(--graphite-3));
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--phoenix-blue), var(--phoenix-blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
html[dir="rtl"] .card::before { transform-origin: right; }
.card:hover { transform: translateY(-8px); border-color: rgba(30, 111, 217, .45); box-shadow: 0 24px 48px rgba(0, 0, 0, .4); }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11, 78, 162, .18);
  color: var(--phoenix-blue-light);
  margin-bottom: 22px;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: rgba(255, 255, 255, .62); font-size: .95rem; }

/* ---------- Stats strip ---------- */
.stats {
  background: linear-gradient(135deg, var(--phoenix-blue) 0%, #083a7a 100%);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; }
.stat span { color: rgba(255, 255, 255, .78); font-size: .9rem; font-weight: 600; }

/* ---------- Booking ---------- */
.booking { background: var(--off-white); color: var(--graphite); }
.booking .section-head h2 { color: var(--graphite); }
.booking .section-head p { color: #4b5057; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.booking-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.booking-info p { color: #3d4147; margin-bottom: 22px; }
.booking-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: #3d4147;
}
.booking-list .dot {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(11, 78, 162, .12);
  color: var(--phoenix-blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.booking-form {
  background: var(--white);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 24px 60px rgba(26, 29, 34, .14);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d7dbe1;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--graphite);
  background: var(--white);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--phoenix-blue);
  box-shadow: 0 0 0 3px rgba(11, 78, 162, .15);
}
.field textarea { resize: vertical; min-height: 96px; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--steel-gray); margin-top: 12px; text-align: center; }

/* ---------- Contact & map ---------- */
.contact { background: var(--graphite); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: stretch; }
.contact-card {
  background: linear-gradient(160deg, var(--graphite-2), var(--graphite-3));
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  padding: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item .ci-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 78, 162, .2);
  color: var(--phoenix-blue-light);
  display: grid;
  place-items: center;
}
.contact-item .ci-icon svg { width: 22px; height: 22px; }
.contact-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 2px; }
html[lang="ar"] .contact-item strong { letter-spacing: 0; font-size: .9rem; }
.contact-item a:hover, .contact-item span { color: var(--white); }
.contact-item a { direction: ltr; unicode-bidi: embed; }

.socials { display: flex; gap: 14px; margin-top: 26px; }
.socials a {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  transition: transform .3s var(--ease-out), background .3s, border-color .3s;
}
.socials a svg { width: 22px; height: 22px; fill: currentColor; }
.socials a:hover { transform: translateY(-4px); }
.socials a.fb:hover { background: #1877F2; border-color: #1877F2; }
.socials a.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.socials a.wa:hover { background: #25D366; border-color: #25D366; }

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.map-embed { position: relative; flex: 1; width: 100%; min-height: 380px; }
.map-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; filter: grayscale(.15) contrast(1.02);
}
/* facade shown until the visitor clicks — keeps the OSM iframe from stealing focus/scroll on load */
.map-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  border: 0; cursor: pointer; color: var(--white); font-family: inherit; text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(11, 78, 162, .38), transparent 62%),
    linear-gradient(160deg, var(--graphite-2), var(--graphite-3));
  transition: background .3s;
}
.map-facade::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.map-facade .pin {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--phoenix-blue); color: #fff;
  box-shadow: 0 10px 26px rgba(11, 78, 162, .5);
}
.map-facade .pin svg { width: 26px; height: 26px; }
.map-facade b { position: relative; z-index: 1; font-size: .95rem; font-weight: 700; }
.map-facade small { position: relative; z-index: 1; font-size: .8rem; color: rgba(255, 255, 255, .6); }
.map-facade:hover { background:
    radial-gradient(circle at 50% 40%, rgba(11, 78, 162, .52), transparent 62%),
    linear-gradient(160deg, var(--graphite-2), var(--graphite-3)); }
.map-facade:hover .pin { transform: translateY(-3px); transition: transform .3s var(--ease-out); }
.map-caption {
  background: var(--graphite-2);
  padding: 12px 18px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.map-caption a { color: var(--phoenix-blue-light); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: #101216;
  padding: 44px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .16em; }
.footer-brand img { height: 40px; width: 40px; border-radius: 8px; object-fit: cover; }
.footer-tag { color: var(--steel-gray); font-size: .88rem; }
.copyright { width: 100%; text-align: center; color: rgba(255, 255, 255, .35); font-size: .8rem; margin-top: 26px; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease-out);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { padding: 130px 0 140px; }
  .about-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .portrait-wrap { margin-inline: auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(16, 18, 22, .97);
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .45s var(--ease-out), visibility 0s .45s;
    z-index: 105;
  }
  .main-nav.open { transform: none; visibility: visible; transition: transform .45s var(--ease-out), visibility 0s 0s; }
  .main-nav a { font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 84px 0; }
  .portrait-badge { inset-inline-end: 6px; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; gap: 30px; }
  .team-member figcaption { inset-inline-end: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-clip { opacity: 1; transform: none; clip-path: none; }
}
