:root {
  --gold: #c4a84f;
  --gold-light: #e8d5a0;
  --gold-dark: #8a6d1f;
  --black: #080808;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #252525;
  --white: #f5f0e8;
  --text: rgba(245,240,232,0.88);
  --text-muted: rgba(245,240,232,0.55);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Josefin Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%); transition: transform 0.1s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(196,168,79,0.5); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s, width 0.2s, height 0.2s;
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gold);
  z-index: 9999; transition: width 0.1s;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 80px;
  transition: background 0.4s, height 0.3s;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,168,79,0.2);
  height: 66px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.08em;
  text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span {
  font-family: var(--font-body);
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.38em; color: var(--text-muted);
  text-transform: uppercase; margin-top: 2px;
}
.nav-links {
  display: flex; gap: 2.4rem; list-style: none;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.nav-phone {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(196,168,79,0.45); padding: 0.5rem 1.2rem;
  transition: all 0.3s;
}
.nav-phone:hover { background: var(--gold); color: var(--black); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 1001;
}
.hamburger span { display: block; width: 26px; height: 1px; background: var(--gold); transition: all 0.3s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999;
  flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
  color: var(--white); text-decoration: none; letter-spacing: 0.05em; transition: color 0.3s;
}
.mobile-menu a:hover,
.mobile-menu a.nav-active { color: var(--gold); }
.close-menu {
  position: absolute; top: 1.8rem; right: 5vw;
  font-size: 1.5rem; color: var(--gold);
  cursor: pointer; background: none; border: none;
}

/* ─── HERO SLIDER ─── */
.hero { height: 100vh; position: relative; overflow: hidden; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.28) 55%, rgba(8,8,8,0.62) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 2rem;
  transform: translateY(22px); opacity: 0;
  transition: transform 0.9s 0.4s ease, opacity 0.9s 0.4s ease;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }
.slide-label {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300; line-height: 1.04; color: var(--white); margin-bottom: 1.4rem;
}
.slide-title em { font-style: italic; color: var(--gold); }
.slide-desc {
  font-size: 1.05rem; font-weight: 300; letter-spacing: 0.03em;
  line-height: 1.85; color: rgba(245,240,232,0.9);
  max-width: 600px; margin: 0 auto 2.5rem;
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--black); background: var(--gold);
  padding: 0.95rem 2.4rem; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white); transform: translateX(-101%); transition: transform 0.3s ease;
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 0.95rem 2.4rem;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ─── SLIDER CONTROLS ─── */
.slider-dots {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 10;
}
.dot { width: 28px; height: 2px; background: rgba(245,240,232,0.3); cursor: pointer; transition: background 0.3s, width 0.3s; }
.dot.active { background: var(--gold); width: 50px; }
.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 3vw; z-index: 10; pointer-events: none;
}
.arrow {
  pointer-events: all; width: 50px; height: 50px;
  border: 1px solid rgba(196,168,79,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold); font-size: 0.95rem;
  transition: all 0.3s; background: rgba(8,8,8,0.35); backdrop-filter: blur(4px);
}
.arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.slide-counter {
  position: absolute; bottom: 2.5rem; right: 5vw;
  font-family: var(--font-display); font-size: 1rem;
  color: rgba(245,240,232,0.4); z-index: 10;
}
.slide-counter strong { color: var(--gold); font-size: 1.5rem; }

/* ─── MARQUEE ─── */
.marquee-bar { background: var(--gold); padding: 0.8rem 0; overflow: hidden; }
.marquee-track {
  display: flex; animation: marquee 22s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--black);
  padding: 0 3rem; display: flex; align-items: center; gap: 1rem;
}
.marquee-item::after { content: '✦'; font-size: 0.45rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION COMMON ─── */
.section-wrap { padding: 5rem 5vw; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.gold-line { width: 44px; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.section-tag {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.48em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 300; line-height: 1.2; color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 1rem; font-weight: 300; letter-spacing: 0.04em;
  line-height: 1.85; color: var(--text-muted);
  max-width: 580px; margin-top: 1rem;
}

/* ─── PAGE HERO (SUBPAGES) ─── */
.page-hero {
  height: 48vh; min-height: 340px;
  position: relative; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; margin-top: 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.6);
  transform: scale(1.04);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.1) 60%, rgba(8,8,8,0.7) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem;
}
.breadcrumb {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.5rem; color: var(--gold-dark); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.08; color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 0.95rem; font-weight: 300; letter-spacing: 0.06em;
  color: var(--text-muted); margin-top: 1rem;
}

/* ─── SERVICES GRID ─── */
.services-bg { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(196,168,79,0.08);
}
.service-card {
  background: var(--dark); padding: 2.2rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.4s; border: 1px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.service-card:hover { background: var(--dark2); border-color: rgba(196,168,79,0.12); }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 300;
  color: rgba(196,168,79,0.07); line-height: 1;
  position: absolute; top: 1.5rem; right: 1.8rem;
}
.service-icon { font-size: 1.7rem; color: var(--gold); margin-bottom: 1.2rem; opacity: 0.85; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.93rem; font-weight: 300; letter-spacing: 0.03em;
  line-height: 1.85; color: var(--text-muted);
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.3rem; font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; transition: gap 0.3s;
}
.service-link:hover { gap: 1rem; }

/* ─── SERVICE DETAIL CARDS ─── */
.service-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: rgba(196,168,79,0.06);
}
.service-detail-card {
  background: var(--dark2); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background 0.4s;
  border: 1px solid transparent;
}
.service-detail-card:hover { background: var(--dark3); border-color: rgba(196,168,79,0.15); }
.service-detail-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.5s;
}
.service-detail-card:hover::before { width: 100%; }
.service-detail-num {
  font-family: var(--font-display); font-size: 5rem; font-weight: 300;
  color: rgba(196,168,79,0.06); line-height: 1;
  position: absolute; top: 1.5rem; right: 2rem;
}
.service-detail-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1.5rem; opacity: 0.9; }
.service-detail-card h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  color: var(--white); margin-bottom: 1rem;
}
.service-detail-card p {
  font-size: 0.94rem; font-weight: 300; line-height: 1.9; color: var(--text-muted); margin-bottom: 0.8rem;
}
.service-detail-card ul {
  list-style: none; margin: 1rem 0;
}
.service-detail-card ul li {
  font-size: 0.88rem; font-weight: 300; color: var(--text-muted);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(196,168,79,0.08);
  display: flex; align-items: center; gap: 0.7rem;
}
.service-detail-card ul li i { color: var(--gold); font-size: 0.7rem; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(196,168,79,0.12);
  border-bottom: 1px solid rgba(196,168,79,0.12);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 2.8rem 5vw;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 15%;
  height: 70%; width: 1px; background: rgba(196,168,79,0.14);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  background: var(--dark3);
  border-bottom: 1px solid rgba(196,168,79,0.1);
}
.features-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 2.5rem 5vw;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(196,168,79,0.12); transition: border-color 0.3s;
}
.feature-item:hover { border-color: rgba(196,168,79,0.35); }
.feature-item i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.feature-item h4 {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.06em; margin-bottom: 0.25rem;
}
.feature-item p {
  font-size: 0.75rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.03em;
}

/* ─── SPLIT SECTION ─── */
.split-outer {
  background: var(--dark);
  padding: 0 5vw;
}
.split-section {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; height: 500px;
}
.split-image { position: relative; overflow: hidden; }
.split-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.75) brightness(0.88); transition: transform 0.9s ease, filter 0.5s;
}
.split-outer:hover .split-image img { transform: scale(1.04); filter: saturate(0.95) brightness(0.95); }
.split-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--dark));
}
.split-image-overlay.left {
  background: linear-gradient(270deg, transparent 55%, var(--dark));
}
.split-content {
  padding: 3rem 0 3rem 4rem;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.split-content-left {
  padding: 3rem 4rem 3rem 0;
}
.split-content h2, .split-content-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 1.2rem;
}
.split-content h2 em, .split-content-left h2 em { font-style: italic; color: var(--gold); }
.split-content p, .split-content-left p {
  font-size: 0.94rem; font-weight: 300; letter-spacing: 0.03em;
  line-height: 1.9; color: var(--text-muted); margin-bottom: 1rem;
}

/* ─── VALUES GRID ─── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark2); padding: 2.2rem 2rem;
  border: 1px solid rgba(196,168,79,0.1);
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover { border-color: rgba(196,168,79,0.3); background: var(--dark3); }
.value-card-icon {
  font-size: 1.6rem; color: var(--gold); margin-bottom: 1.2rem; opacity: 0.85;
}
.value-card h4 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.7rem;
}
.value-card p {
  font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--text-muted);
}

/* ─── ROUTE CARDS ─── */
.route-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.route-card {
  background: var(--dark2); padding: 2rem 1.8rem;
  border: 1px solid rgba(196,168,79,0.1);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.route-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.route-card:hover { border-color: rgba(196,168,79,0.28); background: var(--dark3); }
.route-card:hover::before { width: 100%; }
.route-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; opacity: 0.85; }
.route-card h4 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.6rem;
}
.route-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: var(--text-muted); }

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 2.8rem; left: 5%;
  width: 90%; height: 1px; background: rgba(196,168,79,0.15);
}
.step {
  text-align: center; position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--dark2); border: 1px solid rgba(196,168,79,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--gold);
  margin: 0 auto 1.5rem; position: relative; z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-num { background: var(--gold); color: var(--black); border-color: var(--gold); }
.step h4 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.6rem;
}
.step p { font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: var(--text-muted); }

/* ─── GALLERY STRIP ─── */
.gallery-strip { background: var(--black); padding: 4rem 5vw; }
.gallery-header { max-width: 1280px; margin: 0 auto 2.5rem; }
.gallery-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.gallery-item {
  position: relative; overflow: hidden;
  height: 220px; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.7) brightness(0.82);
  transition: transform 0.55s ease, filter 0.35s;
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(8,8,8,0.35); }
.gallery-zoom-icon {
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
  color: var(--gold); font-size: 1.4rem;
  width: 48px; height: 48px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* ─── GALLERY PAGE FULL ─── */
.gallery-full { background: var(--black); padding: 3rem 5vw 5rem; }
.gallery-full-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-full-grid .gallery-item { height: 300px; }
.gallery-full-grid .gallery-item.wide {
  grid-column: span 2; height: 300px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(4,4,4,0.96); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative; max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; display: block;
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox-img-wrap img.lb-visible { opacity: 1; transform: scale(1); }
.lb-close {
  position: fixed; top: 1.5rem; right: 2rem;
  font-size: 1.8rem; color: var(--gold);
  cursor: pointer; background: none; border: none;
  transition: transform 0.2s; z-index: 10001;
}
.lb-close:hover { transform: rotate(90deg); }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(196,168,79,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gold); font-size: 1rem;
  background: rgba(8,8,8,0.5); backdrop-filter: blur(4px);
  transition: all 0.25s; z-index: 10001;
}
.lb-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-counter {
  position: fixed; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 1rem;
  color: rgba(245,240,232,0.45); z-index: 10001;
}
.lb-counter strong { color: var(--gold); font-size: 1.3rem; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--dark2); border: 1px solid rgba(196,168,79,0.12);
  transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: rgba(196,168,79,0.3); }
.contact-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(196,168,79,0.08); border: 1px solid rgba(196,168,79,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
}
.contact-info-text h4 {
  font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.contact-info-text a,
.contact-info-text p {
  font-size: 0.9rem; font-weight: 300; color: var(--text-muted);
  text-decoration: none; display: block; line-height: 1.7;
  transition: color 0.3s;
}
.contact-info-text a:hover { color: var(--gold); }

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: var(--dark2); padding: 2.5rem;
  border: 1px solid rgba(196,168,79,0.1);
}
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.5rem;
}
.contact-form-wrap p {
  font-size: 0.88rem; font-weight: 300; color: var(--text-muted); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3); border: 1px solid rgba(196,168,79,0.15);
  padding: 0.85rem 1rem; font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 300; color: var(--white); outline: none;
  transition: border-color 0.3s; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(196,168,79,0.45); }
.form-group select option { background: var(--dark3); color: var(--white); }
.form-submit {
  background: var(--gold); border: none; padding: 1rem 2.5rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--black);
  cursor: pointer; transition: background 0.3s;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.form-submit:hover { background: var(--gold-light); }

/* ─── HOURS TABLE ─── */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours-table tr { border-bottom: 1px solid rgba(196,168,79,0.08); }
.hours-table td {
  padding: 0.8rem 0.5rem; font-size: 0.88rem; font-weight: 300; color: var(--text-muted);
}
.hours-table td:first-child { color: var(--white); font-weight: 400; }
.hours-table td:last-child { color: var(--gold); text-align: right; }
.badge-247 {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(196,168,79,0.1); border: 1px solid rgba(196,168,79,0.25);
  padding: 0.5rem 1rem; font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-top: 1rem;
}

/* ─── WHATSAPP CTA ─── */
.whatsapp-cta { position: relative; overflow: hidden; }
.whatsapp-bg {
  position: absolute; inset: 0;
  background-image: url('images/viplux%20(3).jpeg');
  background-size: cover; background-position: center;
  filter: brightness(0.18) saturate(0);
}
.whatsapp-cta-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.whatsapp-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 1rem;
}
.whatsapp-text p {
  font-size: 0.95rem; font-weight: 300; letter-spacing: 0.04em;
  color: var(--text-muted); max-width: 400px; line-height: 1.85;
}
.whatsapp-btns { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #25D366; color: white;
  padding: 1rem 2.2rem; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1ebe58; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 1.3rem; }

/* ─── CONTACT BAR ─── */
.contact-bar { background: var(--gold); padding: 2.5rem 5vw; }
.contact-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.contact-bar-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 400; color: var(--black);
}
.contact-bar-text p {
  font-size: 0.82rem; font-weight: 300; letter-spacing: 0.06em;
  color: rgba(8,8,8,0.65); margin-top: 0.3rem;
}
.contact-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--black); color: var(--gold);
  padding: 0.85rem 1.8rem; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; font-weight: 400; transition: all 0.3s;
}
.contact-btn:hover { background: var(--dark2); }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid rgba(196,168,79,0.1); }
.footer-main {
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 5vw 2.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 4rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 600; color: var(--gold); letter-spacing: 0.08em;
  margin-bottom: 1rem; display: block;
}
.footer-brand p {
  font-size: 0.82rem; font-weight: 300; letter-spacing: 0.03em;
  line-height: 1.9; color: var(--text-muted); max-width: 280px; margin-bottom: 1rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 300; color: var(--text-muted);
  margin-bottom: 0.5rem; text-decoration: none; transition: color 0.3s;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item i { color: var(--gold); width: 14px; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,168,79,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.82rem;
  text-decoration: none; transition: all 0.3s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,168,79,0.06); }
.footer-col h4 {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.84rem; font-weight: 300; letter-spacing: 0.03em;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.3s; display: flex; align-items: center; gap: 0.5rem;
}
.footer-col ul li a::before { content: '—'; font-size: 0.5rem; color: var(--gold); flex-shrink: 0; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-subscribe h4 {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.footer-subscribe p {
  font-size: 0.84rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.subscribe-form { display: flex; }
.subscribe-input {
  flex: 1; background: var(--dark2);
  border: 1px solid rgba(196,168,79,0.15); border-right: none;
  padding: 0.8rem 1rem; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 300; color: var(--white); outline: none;
  transition: border-color 0.3s;
}
.subscribe-input::placeholder { color: rgba(245,240,232,0.28); }
.subscribe-input:focus { border-color: rgba(196,168,79,0.4); }
.subscribe-btn {
  background: var(--gold); border: none; padding: 0 1.2rem;
  cursor: pointer; color: var(--black); font-size: 0.8rem; transition: background 0.3s;
}
.subscribe-btn:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(196,168,79,0.08);
  max-width: 1280px; margin: 0 auto;
  padding: 1.4rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom p { font-size: 0.72rem; font-weight: 300; letter-spacing: 0.05em; color: rgba(245,240,232,0.28); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─── FLOATING BUTTONS ─── */
.fab-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; text-decoration: none; z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.fab-phone {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 54px; height: 54px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1.2rem; text-decoration: none; z-index: 900;
  box-shadow: 0 4px 20px rgba(196,168,79,0.4); transition: transform 0.3s;
}
.fab-phone:hover { transform: scale(1.1); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid .gallery-item.wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .split-outer { padding: 0; }
  .split-section { grid-template-columns: 1fr; height: auto; }
  .split-image { height: 280px; }
  .split-content { padding: 2.5rem 5vw; }
  .split-content-left { padding: 2.5rem 5vw; }
  .split-image-overlay { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-bar-inner { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 180px; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid .gallery-item { height: 180px; }
  .gallery-full-grid .gallery-item.wide { grid-column: span 1; }
  .whatsapp-cta-inner { flex-direction: column; }
  .lb-arrow { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { height: 38vh; min-height: 260px; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .features-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-full-grid .gallery-item.wide { grid-column: span 1; }
}
