/* ===== ROOT VARIABLES ===== */
:root {
  --midnight: #0B0C1E;
  --midnight2: #13152B;
  --midnight3: #1C1F38;
  --gold: #C9A46D;
  --gold-light: #E0C28A;
  --gold-dark: #9E7840;
  --rose: #C47B9A;
  --rose-light: #DFA8C0;
  --rose-dark: #9A5275;
  --cream: #F9F4EF;
  --white: #FFFFFF;
  --gray: #888;
  --gray-light: #CCCCCC;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(201, 164, 109, 0.3);
  --shadow-rose: 0 4px 30px rgba(196, 123, 154, 0.3);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 110px 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--midnight2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--rose), var(--gold)); border-radius: 3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.btn:hover::after { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--midnight);
  box-shadow: 0 4px 24px rgba(201, 164, 109, 0.45);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201, 164, 109, 0.55);
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose-light), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(196, 123, 154, 0.4);
}

.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(196, 123, 154, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.btn-wa-form {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  padding: 16px;
  font-size: 0.95rem;
}

.btn-wa-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  color: var(--rose);
  font-style: italic;
}

.section-title span { color: var(--gold); }

.section-desc {
  font-size: 0.97rem;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.85;
  font-weight: 400;
}

/* ===== SPARKLES ===== */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,109,0.8) 0%, transparent 70%);
  animation: sparkle-float 4s ease-in-out infinite;
  pointer-events: none;
}

.sparkle.s1 { width: 6px; height: 6px; top: 15%; left: 10%; animation-delay: 0s; animation-duration: 5s; }
.sparkle.s2 { width: 4px; height: 4px; top: 30%; left: 85%; animation-delay: 0.8s; animation-duration: 4.5s; background: radial-gradient(circle, rgba(196,123,154,0.8) 0%, transparent 70%); }
.sparkle.s3 { width: 8px; height: 8px; top: 60%; left: 5%; animation-delay: 1.6s; animation-duration: 6s; }
.sparkle.s4 { width: 4px; height: 4px; top: 70%; left: 90%; animation-delay: 2.4s; animation-duration: 4s; background: radial-gradient(circle, rgba(196,123,154,0.8) 0%, transparent 70%); }
.sparkle.s5 { width: 5px; height: 5px; top: 20%; left: 55%; animation-delay: 0.4s; animation-duration: 5.5s; }
.sparkle.s6 { width: 6px; height: 6px; top: 80%; left: 45%; animation-delay: 1.2s; animation-duration: 4.8s; background: radial-gradient(circle, rgba(196,123,154,0.8) 0%, transparent 70%); }
.sparkle.s7 { width: 3px; height: 3px; top: 45%; left: 75%; animation-delay: 2s; animation-duration: 3.8s; }
.sparkle.s8 { width: 5px; height: 5px; top: 55%; left: 25%; animation-delay: 3s; animation-duration: 5.2s; background: radial-gradient(circle, rgba(196,123,154,0.8) 0%, transparent 70%); }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  33% { transform: translateY(-18px) scale(1.3); opacity: 1; }
  66% { transform: translateY(-8px) scale(0.8); opacity: 0.7; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 12, 30, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 164, 109, 0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 164, 109, 0.5);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .logo-main {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-logo-text .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 12, 30, 0.92) 0%,
    rgba(11, 12, 30, 0.65) 45%,
    rgba(30, 10, 20, 0.88) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-logo-ring {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid rgba(201, 164, 109, 0.5);
  box-shadow: 0 0 0 8px rgba(201, 164, 109, 0.08), 0 0 40px rgba(201, 164, 109, 0.2);
  overflow: hidden;
  animation: logo-ring-pulse 3s ease-in-out infinite;
}

.hero-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes logo-ring-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201, 164, 109, 0.08), 0 0 40px rgba(201, 164, 109, 0.2); }
  50% { box-shadow: 0 0 0 16px rgba(201, 164, 109, 0.04), 0 0 60px rgba(201, 164, 109, 0.35); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 123, 154, 0.1);
  border: 1px solid rgba(196, 123, 154, 0.3);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge i { font-size: 0.6rem; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title em {
  display: block;
  color: var(--rose-light);
  font-style: italic;
  font-weight: 400;
}

.hero-title span {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(0.82rem, 2vw, 1rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-phone-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.hero-phone-strip a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.hero-phone-strip a:hover { color: var(--gold); }
.hero-phone-strip a i { color: var(--gold); }

.strip-divider {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-down i { color: var(--rose); font-size: 1rem; }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ===== TICKER ===== */
.ticker {
  background: linear-gradient(90deg, var(--rose-dark), var(--rose), var(--gold), var(--rose));
  background-size: 300% 100%;
  animation: ticker-gradient 8s linear infinite;
  padding: 13px 0;
  overflow: hidden;
}

@keyframes ticker-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-item i { font-size: 0.5rem; opacity: 0.7; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about { background: var(--midnight2); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 540px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  z-index: 2;
}

.about-img-second {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  z-index: 3;
  border: 4px solid var(--midnight2);
}

.about-img-main img,
.about-img-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img,
.about-img-second:hover img { transform: scale(1.06); }

.about-flourish {
  position: absolute;
  top: 30px;
  right: -16px;
  z-index: 5;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-rose);
}

.flourish-inner { display: flex; flex-direction: column; align-items: center; }

.flourish-inner > i {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.flourish-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.flourish-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.about-location-pill {
  position: absolute;
  bottom: 50px;
  left: -10px;
  z-index: 4;
  background: var(--midnight3);
  border: 1px solid rgba(201, 164, 109, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-dark);
}

.about-location-pill i { color: var(--rose); }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px;
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(196, 123, 154, 0.3);
  background: rgba(196, 123, 154, 0.05);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(196,123,154,0.2), rgba(201,164,109,0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pillar-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.pillar-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-phones a {
  font-size: 0.82rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s;
}

.about-phones a i { color: var(--rose); font-size: 0.75rem; }
.about-phones a:hover { color: var(--gold); }

/* ===== SERVICES ===== */
.services { background: var(--midnight); }

.services-head { text-align: center; margin-bottom: 70px; }
.services-head .section-desc { margin: 0 auto; }

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

.service-card {
  background: var(--midnight2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 123, 154, 0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(196,123,154,0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.service-card:hover .service-number { color: rgba(196, 123, 154, 0.08); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(196,123,154,0.15), rgba(201,164,109,0.08));
  border: 1px solid rgba(196, 123, 154, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-color: transparent;
  transform: rotate(-8deg) scale(1.1);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-arrow {
  width: 36px;
  height: 36px;
  background: rgba(201, 164, 109, 0.1);
  border: 1px solid rgba(201, 164, 109, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  background: var(--gold);
  color: var(--midnight);
  transform: translateX(4px);
}

/* ===== GALLERY ===== */
.gallery { background: var(--midnight2); }

.gallery-head { text-align: center; margin-bottom: 60px; }
.gallery-head .section-desc { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--midnight3);
}

.gi-featured  { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gi-wide      { grid-column: span 3; grid-row: span 1; }

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 12, 30, 0.85) 0%, rgba(11, 12, 30, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-inner { transform: translateY(0); }

.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 164, 109, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  font-size: 1rem;
}

.gallery-overlay-inner span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 12, 30, 0.8);
  border: 1px solid rgba(196, 123, 154, 0.4);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.68rem;
  color: var(--rose-light);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-cta {
  text-align: center;
  margin-top: 56px;
}

.gallery-cta p {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 20px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 0 80px rgba(0,0,0,0.9);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(196,123,154,0.15);
  border: 1px solid rgba(196,123,154,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--rose);
  color: var(--white);
}

/* ===== STATS ===== */
.stats {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A0D26 0%, #0B0C1E 40%, #1C1020 100%);
}

.stats-bg::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,123,154,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-bg::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,164,109,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: var(--transition);
}

.stat-item:hover {
  border-color: rgba(196, 123, 154, 0.25);
  background: rgba(196, 123, 154, 0.05);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 12px;
  opacity: 0.8;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--rose-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--midnight); }

.testi-head { text-align: center; margin-bottom: 60px; }
.testi-head .section-desc { margin: 0 auto; }

.testi-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testi-track { overflow: hidden; }

.testi-cards {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-card {
  min-width: 100%;
  padding: 48px 52px;
  background: var(--midnight2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.testi-stars { color: var(--gold); font-size: 0.85rem; display: flex; gap: 4px; }

.testi-quote-mark {
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 1.02rem;
  color: var(--gray-light);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--rose);
  letter-spacing: 1px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.testi-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../media/Bookings Ongoing.webp') center/cover no-repeat;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 12, 30, 0.95), rgba(30, 10, 20, 0.92));
}

.cta-banner-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 520px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-numbers {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

.cta-numbers a {
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}

.cta-numbers a:hover { color: var(--gold); }

/* ===== CONTACT ===== */
.contact { background: var(--midnight2); }

.contact-head { text-align: center; margin-bottom: 64px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-desc { margin-bottom: 40px; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--midnight3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(196, 123, 154, 0.25);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(196,123,154,0.2), rgba(201,164,109,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card-body strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card-body a,
.contact-card-body span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.3s;
}

.contact-card-body a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--midnight3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 48px 44px;
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C47B9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option { background: var(--midnight3); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  background: rgba(196,123,154,0.05);
  box-shadow: 0 0 0 3px rgba(196,123,154,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group textarea { resize: vertical; min-height: 115px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i { color: var(--rose); }

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--rose-dark), var(--rose), var(--gold), var(--rose));
}

.footer-main {
  padding: 72px 0 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 164, 109, 0.3);
  margin-bottom: 12px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 230px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.3s ease;
  flex-shrink: 0;
}

.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a:hover::before { width: 12px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 16px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-contact-item i {
  color: var(--rose);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  display: block;
  color: var(--gray);
  transition: color 0.3s;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 0.8rem; color: var(--gray); }
.footer-copy span { color: var(--gold); }

.footer-love { font-size: 0.8rem; color: var(--gray); }
.footer-love i { color: var(--rose); }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}

.floating-wa:hover { transform: scale(1.12); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

.floating-wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--midnight3);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(37,211,102,0.25);
}

.floating-wa:hover .floating-wa-tooltip { opacity: 1; }

/* ===== AOS OVERRIDES ===== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: all; }

/* ===== MOBILE NAV ===== */
@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 88vw);
    background: rgba(11, 12, 30, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(196, 123, 154, 0.15);
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.95rem; }
  .nav-cta { margin-left: 0; }
  .hamburger { display: flex; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 380px; }
  .about-img-main { width: 65%; height: 300px; }
  .about-img-second { width: 50%; height: 230px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 4.5rem); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gi-featured  { grid-column: span 2; height: 280px; }
  .gallery-item:nth-child(2) { grid-column: span 2; height: 220px; }
  .gallery-item:nth-child(3) { grid-column: span 1; height: 200px; }
  .gi-wide      { grid-column: span 1; height: 200px; }

  .testi-card { padding: 36px 28px; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .contact-cards { grid-template-columns: 1fr; }

  .about-pillars { grid-template-columns: 1fr; }
  .about-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; }
  .hero-phone-strip { flex-direction: column; gap: 8px; }
  .strip-divider { display: none; }
  .nav-logo-text .logo-main { font-size: 0.95rem; }
}
