
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  position: relative;
}

body{
    padding-top: 80px;
    max-width: 100%;
    position: relative;
    background: #000;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  position: relative;
}

/* Global logo watermark */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/logo.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 480px;
  opacity: 0.03; /* VERY IMPORTANT */
  pointer-events: none;
  z-index: 0;
}


/* =========================
   ELITE HERO SECTION
========================= */

.elite-hero {
  position: relative;
  min-height: 100vh;
  /* background: url("images/pic1.jpg") center/cover no-repeat; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f5f5f5;
  overflow: hidden;
}

/* Dark cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Header */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.1rem 1%;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  /* background: rgba(8, 8, 8, 0.75); */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}


.hero-brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5e5e5;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-brand a{
    text-decoration: none;
    color: #e5e5e5;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.success-logo {
  width: 60px;
  margin-bottom: 12px;
  opacity: 0.9;
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1.2rem 6%;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
}

/* Links */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.75);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* CTA */
.nav-cta {
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: #c7a14a;
  color: #0b0b0b;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  font-weight: 600;
  justify-self: end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.nav-cta:hover {
  color: #0b0b0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(199, 161, 74, 0.4);
}

@media (max-width: 768px) {
    .nav-links{
        display: none;
    }
}


/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 6%;
  margin-top: 4rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
}

.hero-content h1 span {
  font-weight: 300;
  opacity: 0.75;
}

.hero-content p {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.78;
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 2.4rem;
}

.hero-content p {
  max-width: 480px; /* narrower = more deliberate */
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.78;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: #c7a14a;
  color: #0b0b0b;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(199, 161, 74, 0.4);
}

.btn-secondary {
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f5f5f5;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f5f5f5;
  color: #0b0b0b;
  opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  opacity: 0.6;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 34px;
  border-color: rgba rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  width: 4px;
  height: 6px;
  background: #f5f5f5;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite ease;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================
    ABOUT SECTION
    ===================== */

   .about-section {
    position: relative;
    padding: 90px 20px;
    overflow: hidden;
  }

  .about-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    color: #ddd;
    z-index: 2;
  }

  .about-container h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 25px;
  }

  .about-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #cfcfcf;
  }

  .about-highlight {
    margin-top: 25px;
    font-weight: 600;
    color: #fff;
  }

/* =========================
   SIGNATURE SERVICES
========================= */
.elite-services {
  padding: 6rem 1.5rem;
  /* background: #0b0b0b; */
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: #aaa;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(180deg, #111, #0e0e0e);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  border: 1px solid rgba(202,162,77,0.4);
}

.service-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.service-desc {
  color: #b5b5b5;
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #caa24d;
  font-weight: 600;
}

.price {
  font-size: 1.05rem;
}

.service-btn {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 999px;
  background: #caa24d;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-btn:hover {
  background: #e0b85c;
  transform: translateY(-2px);
}

.service-card.highlight {
  border: 1px solid rgba(202,162,77,0.4);
  background: linear-gradient(180deg, #15120a, #0e0c07);
}

.kid-group {
  cursor: pointer;
}

.kid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kid-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.kid-services {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 20px;
}

.kid-services.open {
  max-height: 2000px;
}

.kid-services.open + .kid-arrow {
  transform: rotate(180deg);
}

.kids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
/* Responsive */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2.2rem;
  }
}

/*================

 ====BOOKING==== 

==================*/

.selected-service-box{
  border: 1px solid #333;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  opacity: 1;
}

.selected-service-box label{
  font-size: 12px;
  opacity: 0.7;
}

.selected-service-content{
  margin-top: 6px;
  font-size: 14px;
  color: white;
}

.selected-service-content strong{
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #c9a24d;
}

.selected-service-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.change-service-btn{
  background: transparent;
  border: 1px solid #c9a24d;
  color: #c9a24d;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.change-service-btn:hover{
  background: #c9a24d;
  color: #0a0a0a;
}

.service-select-wrapper{
  margin-bottom: 20px;
}

.service-select-wrapper label{
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 8px;
}

#serviceSelect{
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a24d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

#serviceSelect:focus{
  outline: none;
  border-color: #c9a24d;
}

#serviceSelect option{
  background: #1a1a1a;
  color: white;
  padding: 8px;
}

#serviceSelect optgroup{
  background: #1a1a1a;
  color: #c9a24d;
  font-style: normal;
  font-weight: 600;
}

.booking-simple {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(
    ellipse at top,
    rgba(201,162,77,0.08),
    transparent 60%
  );
}

.booking-box {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.booking-inner {
  padding: 40px;
}

.booking-box h2 {
  text-align: center;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.booking-subtitle {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 36px;
}

/* FORM */

.booking-box form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-box label {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-transform: uppercase;
  color: #cbd5f5;
}

/* FORCE PREMIUM SELECT */
.booking-box select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-color: #000 !important;
  color: #ffffff !important;

  border-radius: 14px;

  padding: 14px 48px 14px 16px;
  font-size: 14px;

  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23c9a24d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;

  cursor: pointer;
}

.booking-box input,
.booking-box select {
  width: 100%;
  padding: 14px 16px;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background-color: rgba(255,255,255,0.02);
  color: #fff;
  font-size: 14px;
  transition: all 0.25s ease;
  
}

.booking-box input:focus,
.booking-box select:focus {
  outline: none;
  border-color: #c9a24d;
  box-shadow: 0 0 0 4px rgba(201,162,77,0.15);
  background: rgba(255,255,255,0.04);
}

/* BUTTON */
.booking-box button {
  width: 100%;
  margin-top: 28px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    #d4af37,
    #b8922e
  );
  color: #020617;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-box button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(201,162,77,0.35);
}

/* =========================
   ELITE GALLERY
========================= */

.elite-gallery {
  padding: 8px 6%;
  text-align: center;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 70px;
}

.gallery-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-header p {
  color: #aaa;
  font-size: 15px;
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1/1;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.gallery-grid img.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.gallery-toggle {
  padding: 12px 28px;
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size:20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gallery-toggle:hover {
  opacity: 0.85;
}

.gallery-action{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Subtle overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.45)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
} 

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid img{
    height: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-header h2 {
    font-size: 2.2rem;
  }
}


/* =========================
   ELITE SOCIAL PROOF
========================= */

.google-reviews {
  padding: 100px 20px;
  background: #0b0b0b;
  text-align: center;
}

.google-reviews h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.google-reviews .subtitle {
  color: #b5b5b5;
  margin-bottom: 40px;
}

.google-map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.google-map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(0.1) contrast(1.05);
}

.google-review-link {
  display: inline-block;
  margin-top: 25px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

.google-review-link:hover {
  text-decoration: underline;
}

/* FINAL CTA */
.final-cta {
  padding: 100px 20px;
  /* background: radial-gradient(
    circle at center,
    rgba(201,162,77,0.15),
    transparent 60%
  ); */
    background: #080808;
  text-align: center;
}

.final-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.final-cta p {
  margin-bottom: 30px;
  color: #fff;
}

.final-cta .cta-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #b8922e);
  color: #020617;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(201,162,77,0.4);
  transition: background 0.25s ease, transform 0.25s ease;
}

.final-cta .cta-btn:hover{
  transform: translateY(-2px);
}

.cta-container h2{
  color: #fff;
}

/* =========================
   ELITE FOOTER
========================= */

.elite-footer {
  background: #080808;
  color: #f5f5f5;
  padding: 5rem 0 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 6%;
}

.footer-brand {
  max-width: 420px;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.65;
  color: rgba(245, 245, 245, 0.7);
}

/* Footer Info Grid */
.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.4rem;
  margin-bottom: 3.5rem;
}

.footer-info .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
  margin-bottom: 0.6rem;
  opacity: 0.5;
}

.footer-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.85);
}

.footer-info i {
  margin-right: 0.6rem;
  color: #c7a14a;
  opacity: 0.8;
  font-size: 1rem;
}

.footer-brand img {
  width: 70px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 13px;
  color: #aaa;
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.45);
}

.footer-bottom .divider {
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-brand {
    margin-bottom: 2.5rem;
  }
}
