:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --card: rgba(255, 255, 255, 0.055);
  --card-2: rgba(255, 255, 255, 0.085);
  --gold: #d4af37;
  --gold-2: #f6dc82;
  --white: #ffffff;
  --muted: #c9c9c9;
  --dark: #000000;
  --border: rgba(212, 175, 55, 0.24);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius: 26px;
  --font-main: "Poppins", sans-serif;
  --font-luxury: "Cinzel", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.section {
  padding: 110px 7%;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.section-heading span {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: var(--font-luxury);
  font-size: clamp(34px, 5vw, 58px);
  margin-top: 12px;
}

/* PRELOADER */

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: grid;
  place-items: center;
  transition: 0.7s ease;
}

.loader-logo {
  font-family: var(--font-luxury);
  font-size: 56px;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.loader-line {
  position: absolute;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 95px;
}

/* FLOATING BUTTONS */

.float-whatsapp,
.float-book {
  position: fixed;
  right: 22px;
  z-index: 999;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.float-whatsapp {
  bottom: 92px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
}

.float-book {
  bottom: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  padding: 15px 24px;
}

/* HEADER */

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 7%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
  transition: 0.35s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  padding: 12px 7%;
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 145px;
  height: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: #000;
}

.mobile-menu {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 0 7%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 45%, rgba(212, 175, 55, 0.14), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.35)),
    linear-gradient(to top, #050505, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero h1 {
  font-family: var(--font-luxury);
  font-size: clamp(58px, 9vw, 124px);
  line-height: 0.92;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
}

.hero h2 {
  font-size: clamp(24px, 3vw, 42px);
  margin: 26px 0 14px;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn,
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-gold,
.card-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  box-shadow: 0 18px 44px rgba(212, 175, 55, 0.25);
  border: none;
}

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

.btn:hover,
.card-btn:hover {
  transform: translateY(-4px);
}

/* ABOUT */

.about-section {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 36%),
    var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
}

.about-card,
.stat-box,
.service-card,
.reviews-box,
#bookingForm {
  background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 42px;
}

.about-card h3 {
  font-family: var(--font-luxury);
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 20px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.stats-grid {
  display: grid;
  gap: 18px;
}

.stat-box {
  padding: 30px;
  text-align: center;
}

.stat-box strong {
  color: var(--gold);
  font-family: var(--font-luxury);
  font-size: 42px;
  display: block;
}

.stat-box span {
  color: var(--muted);
}

/* GALLERY */

.gallery-section {
  background: var(--bg-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: 0.45s ease;
}

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

/* SERVICES */

.services-section {
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 35%),
    var(--bg);
}

.service-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.7);
}

.service-card h3 {
  color: var(--gold);
  font-family: var(--font-luxury);
  font-size: 25px;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.service-card strong {
  color: var(--white);
  white-space: nowrap;
}

/* BOOKING */

.booking-section {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 38%),
    #050505;
}

#bookingForm {
  max-width: 980px;
  margin: auto;
  padding: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
}

#bookingForm textarea,
.payment,
#bookingForm button,
.booking-price-box {
  grid-column: 1 / -1;
}

#bookingForm textarea {
  min-height: 130px;
  resize: vertical;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.09);
}

.payment,
.booking-price-box {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}

.payment h3,
.booking-price-box h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.payment p,
.payment label {
  color: var(--muted);
}

.iban-box {
  margin: 18px 0;
  padding: 18px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
}

.check-label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-label input {
  width: auto !important;
}

.booking-price-box {
  text-align: center;
}

.booking-price-box p {
  font-size: 28px;
  color: var(--white);
  font-weight: 800;
}

.booking-message {
  position: fixed;
  top: 110px;
  right: 24px;
  z-index: 9999;
  padding: 16px 24px;
  border-radius: 16px;
  color: white;
  font-weight: 700;
  transform: translateX(150%);
  transition: 0.35s ease;
  box-shadow: var(--shadow);
}

.booking-message.show {
  transform: translateX(0);
}

.booking-message.success {
  background: #178a45;
}

.booking-message.error {
  background: #b3261e;
}

/* REVIEWS */

.reviews-section {
  background: var(--bg-2);
}

.reviews-box {
  max-width: 900px;
  margin: auto;
  padding: 45px;
  text-align: center;
  color: var(--muted);
}

/* MAP */

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(1) invert(0.9);
}

/* FOOTER */

footer {
  background: #020202;
  border-top: 1px solid var(--border);
  padding: 65px 7%;
}

.footer-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}

footer h3 {
  color: var(--gold);
  margin-bottom: 16px;
}

footer p,
footer a {
  color: var(--muted);
  line-height: 1.8;
}

.footer-center {
  text-align: center;
}
.gallery-item {
  position: relative;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: 0.35s ease;
}

.gallery-hover span {
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 35px;
}

.lightbox.show {
  display: flex;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.45);
  cursor: pointer;
  z-index: 100000;
}

.lightbox-close {
  top: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 70px;
  font-size: 44px;
  border-radius: 18px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}
/* ===================================================
   PREMIUM HERO SECTION
=================================================== */

.premium-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#000;
}

.hero-logo-reveal{
    position:absolute;
    top:120px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;
    animation:logoFloat 5s ease-in-out infinite;
}

.hero-logo-reveal img{
    width:220px;
    filter:
    drop-shadow(0 0 20px rgba(212,175,55,.45))
    drop-shadow(0 0 60px rgba(212,175,55,.15));
}

.hero-gold-light{
    position:absolute;
    width:850px;
    height:850px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(212,175,55,.18),
    transparent 70%);
    left:50%;
    top:45%;
    transform:translate(-50%,-50%);
    pointer-events:none;
    animation:goldPulse 6s ease-in-out infinite;
}

.premium-hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    max-width:900px;
}

.premium-hero h1{

font-size:110px;

letter-spacing:8px;

margin-bottom:15px;

font-family:"Cinzel",serif;

text-transform:uppercase;

color:#d4af37;

text-shadow:

0 0 20px rgba(212,175,55,.35),

0 0 50px rgba(212,175,55,.15);

}

.premium-hero h2{

font-size:38px;

font-weight:300;

margin-bottom:20px;

letter-spacing:3px;

color:white;

}

.hero-text{

max-width:700px;

margin:auto;

font-size:20px;

line-height:1.8;

color:#ddd;

margin-bottom:45px;

}

.hero-bottom-info{

position:absolute;

bottom:45px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:45px;

z-index:20;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

color:#d4af37;

}

.hero-bottom-info span{

padding:10px 18px;

border:1px solid rgba(212,175,55,.3);

border-radius:40px;

backdrop-filter:blur(8px);

background:rgba(255,255,255,.03);

}

.hero-buttons{

justify-content:center;

}

.btn-gold{

font-size:18px;

padding:18px 38px;

}

.btn-outline{

font-size:18px;

padding:18px 38px;

}

@media(max-width:992px){

.hero-logo-reveal img{

width:170px;

}

.premium-hero h1{

font-size:70px;

}

.premium-hero h2{

font-size:28px;

}

.hero-bottom-info{

display:none;

}

}

@media(max-width:768px){

.premium-hero h1{

font-size:48px;

letter-spacing:3px;

}

.premium-hero h2{

font-size:22px;

}

.hero-text{

font-size:16px;

}

.hero-logo-reveal{

top:90px;

}

.hero-logo-reveal img{

width:130px;

}
  
.hero-logo-reveal {
  display: none;
}.hero-logo-reveal {
  display: none;
}
.hero-logo-reveal,
.hero-logo-reveal img {
  display: none !important;
}
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.16),
    transparent 45%
  );
  opacity: 0;
  transition: 0.35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.service-card ul,
.service-card .card-btn {
  position: relative;
  z-index: 2;
}

.service-card::after {
  content: "JULLY";
  position: absolute;
  right: -18px;
  bottom: -22px;
  font-family: "Cinzel", serif;
  font-size: 52px;
  color: rgba(212, 175, 55, 0.06);
  letter-spacing: 6px;
}
.service-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#d4af37,#f8e28a);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#111;
    box-shadow:0 0 30px rgba(212,175,55,.35);
    transition:.4s;
}

.service-card:hover .service-icon{
    transform:rotate(12deg) scale(1.08);
    box-shadow:0 0 45px rgba(212,175,55,.6);
}
/* NETFLIX / LUXURY GALLERY */

.gallery-section {
  background:
    radial-gradient(circle at top, rgba(212,175,55,.10), transparent 35%),
    #050505;
}

.gallery-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 30px 5px 45px;
  scroll-snap-type: x mandatory;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: #111;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 20px;
}

.gallery-item {
  min-width: 310px;
  height: 430px;
  scroll-snap-align: start;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transform: scale(.96);
  transition: .45s ease;
}

.gallery-item:nth-child(2n) {
  height: 500px;
}

.gallery-item:nth-child(3n) {
  min-width: 380px;
}

.gallery-item:hover {
  transform: scale(1.04);
  z-index: 5;
}

.gallery-item::after {
  content: "Jully Afrika Style";
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
  text-shadow: 0 4px 18px #000;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hover {
  background:
    linear-gradient(to top, rgba(0,0,0,.85), transparent 55%);
}

.lightbox-content img,
.lightbox-content video {
  animation: galleryZoom .35s ease;
}

@keyframes galleryZoom {
  from {
    opacity: 0;
    transform: scale(.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
.gallery-section .container {
  position: relative;
}

.gallery-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 54px;
  height: 76px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,.45);
  background: rgba(0,0,0,.72);
  color: #d4af37;
  font-size: 46px;
  cursor: pointer;
  z-index: 30;
  transition: .3s ease;
}

.gallery-arrow:hover {
  background: #d4af37;
  color: #000;
}

.gallery-left {
  left: -20px;
}

.gallery-right {
  right: -20px;
}

.gallery-grid.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery-grid {
  cursor: grab;
}
.reviews-slider {
  max-width: 850px;
  margin: auto;
  position: relative;
  min-height: 260px;
}

.review-card {
  display: none;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 28px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.review-card.active {
  display: block;
  animation: reviewFade .7s ease;
}

.stars {
  color: #d4af37;
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-card p {
  color: #ddd;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.review-card h4 {
  color: #d4af37;
}

.google-review-btn {
  display: table;
  margin: 35px auto 0;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg,#d4af37,#f6dc82);
  color: #000;
  font-weight: 800;
}

@keyframes reviewFade {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
