/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
  background: #0e0b0b;
  color: #f5ede0;
  overflow-x: hidden;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #1a1212;
}
::-webkit-scrollbar-thumb {
  background: #c9a96e;
  border-radius: 3px;
}

/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 7, 7, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: padding 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #8b5e3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 0 18px rgba(201, 169, 110, 0.5);
}
.logo-text {
  line-height: 1.1;
}
.logo-text span:first-child {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #c9a96e;
  letter-spacing: 3px;
}
.logo-text span:last-child {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  color: #c4b49a;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.menu-toggle:hover {
  background: rgba(201, 169, 110, 0.14);
  border-color: rgba(201, 169, 110, 0.48);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f5ede0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links a {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #c4b49a;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #c9a96e;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: linear-gradient(135deg, #c9a96e, #a07840);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 18px rgba(201, 169, 110, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.6) !important;
}
.nav-cta::after {
  display: none !important;
}

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0e0b0b;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 7, 7, 0.88) 0%,
    rgba(35, 22, 12, 0.7) 55%,
    rgba(10, 7, 7, 0.9) 100%
  );
  z-index: 1;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.8s ease,
    transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #c9a96e;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s infinite;
}
@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(1.5);
  }
}
.hero-inner {
  text-align: center;
  z-index: 3;
  padding: 0 20px;
  animation: fade-up 1.2s ease both;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: #c9a96e;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  background: rgba(201, 169, 110, 0.07);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 300;
  line-height: 1;
  color: #f5ede0;
  letter-spacing: 8px;
  margin-bottom: 10px;
}
.hero-title em {
  font-style: normal;
  color: #c9a96e;
  display: block;
  font-size: 0.55em;
  letter-spacing: 14px;
}
.hero-sub {
  font-size: 12px;
  letter-spacing: 5px;
  color: #c4b49a;
  text-transform: uppercase;
  margin-bottom: 44px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #c9a96e, #a07840);
  color: #fff;
  padding: 15px 38px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.45);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.6);
}
.btn-outline {
  border: 1px solid rgba(201, 169, 110, 0.6);
  color: #c9a96e;
  padding: 15px 38px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-outline:hover {
  background: rgba(201, 169, 110, 0.12);
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #c4b49a;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i {
  font-size: 14px;
  color: #c9a96e;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.hero-dot.is-active {
  background: #c9a96e;
  transform: scale(1.15);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ========== SECTION COMMON ========== */
section {
  padding: 100px 60px;
}
.section-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 5px;
  color: #c9a96e;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 300;
  color: #f5ede0;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title em {
  font-style: normal;
  color: #c9a96e;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a96e);
}
.section-divider::after {
  background: linear-gradient(90deg, #c9a96e, transparent);
}
.section-divider i {
  color: #c9a96e;
  font-size: 12px;
}

/* ========== ABOUT US ========== */
#about {
  background: #0e0b0b;
  padding: 110px 60px;
}
.aboutus-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* Visual side */
.aboutus-visual {
  position: relative;
}
.aboutus-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 169, 110, 0.15);
}
.aboutus-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.aboutus-img-frame:hover .aboutus-img {
  transform: scale(1);
}
.aboutus-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(14, 11, 11, 0.75) 100%
  );
}
.aboutus-floater {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, #1e1408, #2e1e0e);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 169, 110, 0.1);
}
.aboutus-floater i {
  font-size: 26px;
  color: #c9a96e;
  margin-bottom: 6px;
}
.aboutus-floater strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #c9a96e;
  letter-spacing: 3px;
  line-height: 1;
}
.aboutus-floater span {
  font-size: 9px;
  letter-spacing: 3px;
  color: #a89880;
  text-transform: uppercase;
}

/* Content side */
.aboutus-heading {
  text-align: left !important;
}
.aboutus-divider {
  justify-content: flex-start !important;
  margin-bottom: 30px;
}
.aboutus-divider::before {
  display: none !important;
}
.aboutus-para {
  font-size: 14.5px;
  color: #c4b49a;
  line-height: 2;
  margin-bottom: 20px;
}
.aboutus-para strong {
  color: #f5ede0;
  font-weight: 600;
}
.aboutus-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 34px 0 40px;
}
.aboutus-val {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  transition: background 0.3s, border-color 0.3s;
}
.aboutus-val:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.35);
}
.aboutus-val i {
  font-size: 15px;
  color: #c9a96e;
  flex-shrink: 0;
}
.aboutus-val span {
  font-size: 11.5px;
  color: #e8d9c0;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.aboutus-cta {
  display: inline-flex;
  align-items: center;
}

/* ========== FEATURES STRIP ========== */
#features {
  background: linear-gradient(135deg, #1a1010 0%, #261a10 50%, #1a1010 100%);
  padding: 80px 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 16px;
  background: rgba(201, 169, 110, 0.04);
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
}
.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
}
.about-card i {
  font-size: 28px;
  color: #c9a96e;
  margin-bottom: 14px;
  display: block;
}
.about-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #f5ede0;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.about-card p {
  font-size: 12px;
  color: #c4b49a;
  line-height: 1.7;
}

/* ========== SERVICES ========== */
#services {
  background: #0e0b0b;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 20px;
  background: linear-gradient(145deg, #1a1010, #221510);
  padding: 36px 28px 32px;
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.35);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.15),
    rgba(201, 169, 110, 0.05)
  );
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #c9a96e;
  transition:
    background 0.35s,
    box-shadow 0.35s;
}
.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.28),
    rgba(201, 169, 110, 0.1)
  );
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.3);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #f5ede0;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 11.5px;
  color: #a89880;
  line-height: 1.7;
}
.service-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 11px;
  color: rgba(201, 169, 110, 0.25);
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

/* ========== EXPERIENCE STRIP ========== */
#experience {
  background: linear-gradient(135deg, #1c1208, #2a1a0c, #1c1208);
  padding: 90px 60px;
}
.exp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-text .section-label {
  text-align: left;
}
.exp-text .section-title {
  text-align: left;
}
.exp-text .section-divider {
  justify-content: flex-start;
}
.exp-text .section-divider::before {
  display: none;
}
.exp-text p {
  font-size: 14px;
  color: #c4b49a;
  line-height: 2;
  margin-bottom: 28px;
}
.exp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  background: rgba(201, 169, 110, 0.04);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  color: #c9a96e;
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #c4b49a;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ========== CONTACT ========== */
#contact {
  background: #0e0b0b;
}
.contact-wrapper {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: #f5ede0;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.15),
    rgba(201, 169, 110, 0.05)
  );
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 16px;
}
.contact-item-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #c9a96e;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 13px;
  color: #c4b49a;
  line-height: 1.6;
}
.contact-item-text a {
  font-size: 13px;
  color: #c4b49a;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-text a:hover {
  color: #c9a96e;
}

/* Map */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* ========== BOOKING CTA ========== */
#book {
  background: linear-gradient(135deg, #1e1008 0%, #3a2010 50%, #1e1008 100%);
  text-align: center;
  padding: 100px 40px;
}
#book .section-title {
  margin-bottom: 16px;
}
#book p {
  font-size: 14px;
  color: #c4b49a;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.book-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
footer {
  background: #080505;
  padding: 40px 60px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 11px;
  color: #6e5e4e;
}
.footer-copy strong {
  color: #c9a96e;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b49a;
  font-size: 14px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
}
.footer-social a:hover {
  border-color: #c9a96e;
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.08);
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.float-whatsapp {
  position: fixed;
  bottom: 98px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  animation: pulse-whatsapp 2.5s infinite;
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.75);
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 6px 48px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ========== FLOATING CALL BUTTON ========== */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e, #a07840);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.55);
  animation: pulse-call 2.5s infinite;
}
@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.55);
  }
  50% {
    box-shadow:
      0 6px 48px rgba(201, 169, 110, 0.85),
      0 0 0 12px rgba(201, 169, 110, 0.08);
  }
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  #about {
    padding: 80px 24px;
  }
  .aboutus-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .aboutus-img-frame {
    aspect-ratio: 16 / 9;
  }
  .aboutus-floater {
    right: 16px;
    bottom: -20px;
    padding: 16px 20px;
  }
  nav {
    padding: 14px 24px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 20px;
    background: rgba(15, 10, 10, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: flex;
    width: 100%;
    padding: 14px 12px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }
  .nav-links li:last-child a {
    border-bottom: 0;
  }
  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 10px;
    border-bottom: 0;
  }
  section {
    padding: 70px 24px;
  }
  #features,
  #experience {
    padding: 60px 24px;
  }
  .exp-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 30px 24px;
  }
}
@media (max-width: 600px) {
  .hero-title {
    letter-spacing: 2px;
  }
  .hero-slider-dots {
    bottom: 75px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .exp-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== GALLERY ========== */
#gallery {
  background: linear-gradient(135deg, #0e0b0b 0%, #1a1010 50%, #0e0b0b 100%);
  padding: 100px 60px;
}

/* Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.gal-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 30px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: transparent;
  color: #a89880;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.gal-filter:hover {
  border-color: rgba(201, 169, 110, 0.5);
  color: #c9a96e;
}
.gal-filter.is-active {
  background: linear-gradient(135deg, #c9a96e, #a07840);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(201, 169, 110, 0.4);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Each Item */
.gal-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 169, 110, 0.1);
  background: #1a1010;
}
.gal-item.is-hidden {
  display: none;
}

/* Thumbnail (image) */
.gal-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.gal-item:hover .gal-thumb {
  transform: scale(1.08);
}

/* Video bg tile */
.gal-video-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1208 0%, #3a2210 50%, #1e1208 100%);
}

/* Overlay */
.gal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 7, 7, 0);
  transition: background 0.3s ease;
}
.gal-overlay i {
  font-size: 28px;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.gal-item:hover .gal-overlay {
  background: rgba(10, 7, 7, 0.52);
}
.gal-item:hover .gal-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Video badge */
.gal-video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(201, 169, 110, 0.9);
  color: #0e0b0b;
  font-size: 10px;
  border-radius: 20px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 3, 3, 0.96);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

/* Stage — the media container */
.lb-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96vw;
  max-height: 92vh;
  transform: scale(0.88);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.is-open .lb-stage {
  transform: scale(1);
}

/* Image */
.lb-img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.85);
  user-select: none;
  -webkit-user-drag: none;
}

/* Video */
.lb-video {
  display: none;
  max-width: 88vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.85);
  background: #000;
}

/* Close */
.lb-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #f5ede0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 9001;
}
.lb-close:hover {
  background: rgba(201, 169, 110, 0.28);
  border-color: #c9a96e;
  transform: rotate(90deg);
}

/* Prev / Next */
.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: #f5ede0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  z-index: 9001;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover {
  background: rgba(201, 169, 110, 0.25);
  border-color: #c9a96e;
  transform: translateY(-50%) translateX(-3px);
}
.lb-next:hover {
  background: rgba(201, 169, 110, 0.25);
  border-color: #c9a96e;
  transform: translateY(-50%) translateX(3px);
}

/* Counter */
.lb-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: #a89880;
  text-transform: uppercase;
  z-index: 9001;
}

/* Gallery responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  #gallery {
    padding: 80px 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .lb-img {
    max-width: 98vw;
    max-height: 80vh;
  }
  .lb-video {
    max-width: 98vw;
    max-height: 76vh;
  }
}
