/* ── Custom properties ──────────────────────────────────────────────────── */
:root {
  --gold:       #C9A84C;
  --gold-light: #DFC07A;
  --gold-dark:  #A8862D;
  --near-black: #111111;
  --gray-soft:  #F8F7F4;
}

/* ── Base & typography ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--near-black);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-heading { font-family: 'Playfair Display', serif; }

img { display: block; max-width: 100%; }

/* ── Gold gradient text ──────────────────────────────────────────────── */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ──────────────────────────────────────────────────────── */
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--near-black);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

/* Transparent navbar → white text until scrolled */
.navbar-transparent .nav-link { color: rgba(255,255,255,0.9); }
.navbar-transparent .nav-logo-text { color: #fff; }
.navbar-transparent .hamburger-btn { color: #fff; }

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--near-black);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--near-black);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--near-black);
  color: var(--near-black);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-dark:hover {
  background: var(--near-black);
  color: #fff;
}

/* ── Hero section ────────────────────────────────────────────────────── */
.hero-swiper { height: 100vh; }
.hero-swiper .swiper-slide { overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }

/* ── Section dividers ─────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Service cards ───────────────────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #f0ede6;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(17,17,17,0.08);
  border-color: var(--gold);
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #f9f4e8 0%, #fef9ed 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

/* ── Gallery ─────────────────────────────────────────────────────────── */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 0.875rem;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(17,17,17,0.25); }
.gallery-overlay-icon {
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* Filter button active state */
.filter-btn {
  border: 2px solid #e5e5e5;
  background: #fff;
  color: var(--near-black);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

/* Video thumbnail in gallery */
.video-thumb {
  background: var(--near-black);
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
  border-radius: 0.875rem;
  overflow: hidden;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-circle {
  width: 4rem;
  height: 4rem;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-thumb:hover .video-play-circle {
  transform: scale(1.12);
  background: var(--gold);
}

/* ── Forms ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  color: var(--near-black);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
  outline: none;
  box-sizing: border-box;
}
.form-control::placeholder { color: #aaa; }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Testimonial cards ───────────────────────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  margin: 0 0.5rem;
}
.testimonial-stars { color: var(--gold); font-size: 1.125rem; margin-bottom: 1rem; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { color: var(--gold); font-weight: 600; font-size: 0.9375rem; }

/* ── Trust strip ─────────────────────────────────────────────────────── */
.trust-strip {
  background: #0D1B2E;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201,168,76,0.2);
}
.trust-icon {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.trust-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── Stats strip ─────────────────────────────────────────────────────── */
.stat-item { text-align: center; padding: 1.5rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; color: #9CA3AF; font-weight: 500; }

/* ── Swiper overrides ────────────────────────────────────────────────── */
.swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next,
.swiper-button-prev { color: var(--gold) !important; }

/* ── Floating WhatsApp button ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; fill: #fff; }

/* ── GLightbox overrides ─────────────────────────────────────────────── */
.glightbox-clean .gclose { color: var(--gold); }
.glightbox-clean .gnext,
.glightbox-clean .gprev { color: var(--gold); }

/* ── Toast flash messages ─────────────────────────────────────────────── */
.toast {
  background: var(--near-black);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  font-size: 0.9375rem;
  font-weight: 500;
  border-left: 4px solid var(--gold);
  min-width: 280px;
}

/* ── AOS custom easing ─────────────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Page headers ────────────────────────────────────────────────────── */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--gray-soft);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Contact card ─────────────────────────────────────────────────── */
.contact-info-card {
  background: var(--near-black);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
}
.contact-icon-box {
  width: 3rem;
  height: 3rem;
  background: rgba(201,168,76,0.15);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── About page ──────────────────────────────────────────────────────── */
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef9ed;
  border: 1px solid #f0e8cc;
  color: var(--near-black);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.value-chip::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.625rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.why-item:last-child { border-bottom: none; }
.why-check {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ── Utility ─────────────────────────────────────────────────────────── */
.divider-gold {
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.25rem auto;
}
.divider-gold-left {
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-swiper { height: 100svh; }
  .stat-number { font-size: 2rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}
