/* =============================================
   Glam & Glitter by Ruchi - Stylesheet
   ============================================= */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07832;
  --rose: #b5616c;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --text: #444;
  --text-light: #777;
  --bg-light: #faf8f5;
  --bg-cream: #f5f0e8;
  --white: #ffffff;
  --border: #e8dfd0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

.section { padding: 90px 0; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--gold);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.8);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--dark);
  transition: all var(--transition);
  margin-top: 12px;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-sm {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-sm:hover { background: var(--white); color: var(--gold); }

/* ---- Section Headers ---- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar span { display: flex; align-items: center; gap: 6px; }
.social-top {
  margin-left: auto;
  display: flex;
  gap: 14px;
}
.social-top a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.social-top a:hover { color: var(--gold); }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.header .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo a { display: block; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; align-items: center; }
.nav ul li { position: relative; }
.nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}
.nav ul li a:hover { color: var(--gold); }
.nav ul li.has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  border-top: 3px solid var(--gold);
  z-index: 100;
}
.dropdown li a {
  padding: 10px 18px;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--bg-cream); color: var(--gold); }

.arrow { font-size: 0.6rem; margin-left: 3px; }

.btn-book {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-book:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,10,5,0.72) 0%, rgba(15,10,5,0.35) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 720px;
  z-index: 2;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ========== MARQUEE ========== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px;
}
.marquee-track .sep { color: rgba(255,255,255,0.6); padding: 0 4px; }

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

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ========== ABOUT ========== */
.about { background: var(--bg-light); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img { position: relative; }
.about-img-main img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 500px;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }

.experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.exp-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.exp-text { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 0 8px; line-height: 1.2; margin-top: 4px; }

.about-text p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.8;
}

.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-list li svg { color: var(--gold); flex-shrink: 0; }

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.service-img { position: relative; overflow: hidden; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body { padding: 24px; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ========== WHY US ========== */
.why-us { background: var(--bg-cream); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  min-width: 48px;
  line-height: 1;
}
.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-item p { font-size: 0.92rem; color: var(--text-light); }

.why-us-img img {
  border-radius: var(--radius);
  height: 500px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

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

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== BOOKING ========== */
.booking {
  background: linear-gradient(135deg, #1a1208 0%, #2c1e0a 50%, #1a1208 100%);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/2K4A7971.jpg.jpeg') center/cover;
  opacity: 0.12;
}

.booking-centered {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.booking-sub {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.booking-contact { display: flex; flex-direction: column; gap: 12px; }
.booking-contact-centered {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  width: fit-content;
}
.contact-chip:hover { background: var(--gold); border-color: var(--gold); }
.contact-chip.whatsapp:hover { background: #25d366; border-color: #25d366; }


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

.testimonials-slider { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 36px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.stars { color: #fbb940; font-size: 1.2rem; margin-bottom: 20px; }

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.client { display: flex; align-items: center; gap: 16px; }
.client img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.client strong { display: block; font-size: 1rem; color: var(--dark); }
.client span { font-size: 0.85rem; color: var(--text-light); }

.testimonial-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.testimonial-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-nav button:hover {
  background: var(--gold);
  color: var(--white);
}

/* ========== BRANDS ========== */
.brands { background: var(--white); }
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.brand-item {
  padding: 14px 30px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.brand-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--bg-cream);
}

/* ========== VIDEO REELS ========== */
.reels-section { background: var(--dark); }
.reels-section .section-eyebrow { color: var(--gold-light); }
.reels-section .section-title { color: var(--white); }
.reels-section .section-desc { color: rgba(255,255,255,0.65); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.reel-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}

.reel-item.reel-main {
  grid-column: span 2;
}

.reel-item video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.reel-item.reel-main video { min-height: 340px; }

.reel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 20px 14px 10px;
  text-transform: uppercase;
}

/* ========== INSTAGRAM ========== */
.insta-section { background: var(--bg-cream); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-hover { opacity: 1; }

/* ========== FOOTER ========== */
.footer-top { background: var(--dark2); padding: 80px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-main { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--white); display: block; }
.footer-logo .logo-sub { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-size: 0.85rem; display: block; }

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  background: #111;
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.83rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.83rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about .container { gap: 50px; }
  .why-us-inner { gap: 50px; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-item.reel-main { grid-column: span 2; }
}

@media (max-width: 768px) {
  .top-bar .container { flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }

  .hamburger { display: flex; }
  .btn-book { display: none; }
  .nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 72px);
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: left var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  .nav.open { left: 0; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul li a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: var(--bg-cream);
    border-radius: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }

  .about .container, .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { display: none; }
  .experience-badge { top: 16px; left: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 1; }

  .section { padding: 60px 0; }
  .hero-prev, .hero-next { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-bar .container { gap: 16px; }

  .testimonial-card { padding: 32px 24px; }
  .testimonial-card::before { font-size: 4rem; top: 16px; left: 20px; }
  .reels-grid { grid-template-columns: 1fr; }
  .reel-item.reel-main { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
