/* ===================================================
   J&P BANQUET – Global Stylesheet
   Theme: Dark Charcoal, Copper, Cream
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─────────────────────── */
:root {
  --gold: #E09145;
  --gold-dark: #B5702E;
  --gold-light: #FCD9B8;
  --green: #292C35;
  --green-dark: #17181D;
  --green-light: #363A47;
  --ivory: #FCD9B8;
  --ivory-dark: #F0C89A;
  --saffron: #E09145;
  --saffron-light: #F5B978;
  --text: #17181D;
  --text-light: #4A4D57;
  --white: #FFFFFF;
  --shadow-gold: 0 8px 32px rgba(224, 145, 69, 0.22);
  --shadow-deep: 0 16px 48px rgba(23, 24, 29, 0.18);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #F5EDE0;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.25;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── INDIAN MOTIF SVG DECORATIONS ──────────────── */
.motif-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 2rem;
  width: fit-content;
}

.motif-divider::before,
.motif-divider::after {
  content: '';
  display: block;
  width: 80px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.motif-divider span {
  font-size: 1.4rem;
  color: var(--gold);
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.section-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}

.mandala-corner {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200, 151, 58, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 151, 58, 0.5);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(46, 89, 66, 0.35);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 89, 66, 0.45);
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: #0e0f12;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  /* Background removal effect for black background */
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.1);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(200, 151, 58, 0.3);
}

/* Hide fallback icon when image is present */
.nav-logo img+.logo-icon {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(23, 24, 29, 0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem 5%;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(200, 151, 58, 0.25);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200, 151, 58, 0.1);
  transition: color 0.25s;
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

/* ─── PAGE HERO BANNER (inner pages) ────────────── */
.page-hero {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 60px;
  background: linear-gradient(160deg, var(--green-dark) 0%, #1a1b21 60%, #0e0f12 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8973A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.page-hero .decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 58, 0.15);
}

.page-hero .ring-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: ring-pulse 6s ease-in-out infinite;
}

.page-hero .ring-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 5%;
  animation: ring-pulse 8s ease-in-out infinite 2s;
}

@keyframes ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.6;
  }
}

.page-hero h1 {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero h1 span {
  color: var(--gold-light);
}

.page-hero p {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  font-size: 1rem;
}

/* ─── SECTIONS SHARED ────────────────────────────── */
.section {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.section-light {
  background: #FFF8F0;
}

.section-dark {
  background: linear-gradient(160deg, var(--green-dark), #1a1b21);
  color: var(--white);
}

.section-cream {
  background: #f0c89a20;
  background: #FAF0E4;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-dark .section-title {
  color: var(--white);
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  color: var(--text-light);
  max-width: 580px;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─── FADE-IN ANIMATION (scroll observer) ────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── HOME: HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0e0f12;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.45);
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(23, 24, 29, 0.65) 0%, rgba(41, 44, 53, 0.45) 100%);
}

.hero-mandala {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  opacity: 0.06;
  animation: spin-slow 40s linear infinite;
}

.hero-mandala svg,
.hero-mandala img {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 5% 100px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  background: rgba(200, 151, 58, 0.15);
  border: 1px solid rgba(200, 151, 58, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.2rem;
  animation: fadeUp 1s ease both 0.2s;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  animation: fadeUp 1s ease both 0.4s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease both 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-dot {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(200, 151, 58, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(14px);
    opacity: 0.3;
  }
}

/* ─── STATS ──────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--green-dark), #1a1b21);
  border-bottom: 3px solid var(--gold);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(200, 151, 58, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-suffix {
  color: var(--saffron);
}

.stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

/* ─── ABOUT ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: white;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Cinzel', serif;
  box-shadow: var(--shadow-gold);
}

.about-badge .big {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge .small {
  font-size: 0.75rem;
  opacity: 0.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-feat .icon {
  width: 32px;
  height: 32px;
  background: rgba(200, 151, 58, 0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── WHY CHOOSE US ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #FFF8F0;
  border: 1px solid rgba(224,145,69,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, rgba(200, 151, 58, 0.1), rgba(232, 133, 42, 0.08));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card p {
  font-size: 0.87rem;
  color: var(--text-light);
}

/* ─── GALLERY PREVIEW (home) ─────────────────────── */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gp-item:hover img {
  transform: scale(1.08);
}

.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 26, 18, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
}

.gp-item:hover .gp-overlay {
  opacity: 1;
}

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  padding: 70px 5%;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a1b21 50%, #0e0f12 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='35' stroke='%23C8973A' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='40' cy='40' r='20' stroke='%23C8973A' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E") center/80px;
}

.cta-banner h2 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner h2 span {
  color: var(--gold-light);
}

.cta-banner p {
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-banner .btn {
  position: relative;
}

/* ─── PACKAGES PAGE ──────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  perspective: 1200px;
}

/* 3D FLIP CARD */
.pkg-card {
  height: 520px;
  perspective: 1000px;
  cursor: pointer;
}

.pkg-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pkg-card:hover .pkg-inner {
  transform: rotateY(180deg);
}

.pkg-front,
.pkg-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.pkg-front {
  background: #FFF8F0;
  border: 1px solid rgba(224,145,69,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.pkg-back {
  background: linear-gradient(160deg, var(--green-dark), #1a1b21);
  transform: rotateY(180deg);
  box-shadow: var(--shadow-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pkg-front.featured {
  background: linear-gradient(160deg, var(--green-dark), #1a1b21);
}

.pkg-front.featured .pkg-title {
  color: var(--white);
}

.pkg-front.featured .pkg-price {
  color: var(--gold-light);
}

.pkg-front.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
}

.pkg-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(200, 151, 58, 0.12), rgba(232, 133, 42, 0.1));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(200, 151, 58, 0.2);
}

.pkg-front.featured .pkg-icon {
  background: rgba(200, 151, 58, 0.15);
  border-color: rgba(200, 151, 58, 0.3);
}

.pkg-title {
  font-size: 1.4rem;
  font-family: 'DM Serif Display', serif;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.pkg-price {
  font-size: 2.2rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pkg-price .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.pkg-price .per {
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.pkg-front p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 0.8rem;
}

.pkg-hint {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-front.featured .pkg-hint {
  color: rgba(255, 255, 255, 0.4);
}

/* Back */
.pkg-back-title {
  font-family: 'DM Serif Display', serif;
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pkg-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.pkg-list li .check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pkg-list li .cross {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ADDONS */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.addon-item {
  background: #FFF8F0;
  border: 1px solid rgba(224,145,69,0.15);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.addon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(200, 151, 58, 0.35);
}

.addon-item .icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.addon-item p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.addon-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

/* ─── GALLERY PAGE ───────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(224, 145, 69, 0.3);
  background: transparent;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(200, 151, 58, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #1a1a1a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 26, 18, 0.85), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  color: white;
}

.gallery-item:hover .g-overlay {
  opacity: 1;
}

.gallery-item .g-overlay .g-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-item .g-overlay .g-cat {
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.gallery-item.hidden {
  display: none;
}

/* Gallery color placeholder blocks */
.gallery-color-block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 2rem;
}

.filter-btn {
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #1a1206;
  font-weight: 600;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 12, 10, 0.95);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(200, 151, 58, 0.2);
  border: 1px solid rgba(200, 151, 58, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--gold);
  color: white;
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-top: 0.75rem;
}

/* ─── CONTACT / FAQ PAGE ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(224, 145, 69, 0.18);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  box-shadow: var(--shadow-deep);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group label .required {
  color: var(--saffron);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(200, 151, 58, 0.2);
  border-radius: 8px;
  background: var(--ivory);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 151, 58, 0.12);
  background: var(--white);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #E53E3E;
}

.form-error-msg {
  font-size: 0.76rem;
  color: #E53E3E;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error .form-error-msg {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* CONTACT DETAILS */
.contact-details h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ci-item span {
  color: var(--text);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 151, 58, 0.15);
}

/* FAQ */
.faq-section {
  padding: 80px 5%;
  background: var(--ivory-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(200, 151, 58, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item.open {
  box-shadow: var(--shadow-gold);
  border-color: rgba(200, 151, 58, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(200, 151, 58, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.4rem;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, #17181D, #0e0f12);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 0;
  border-top: 2px solid rgba(224, 145, 69, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 151, 58, 0.1);
}

.footer-logo-section .nav-logo {
  margin-bottom: 1rem;
}

.footer-logo-section p {
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(224, 145, 69, 0.2);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(200, 151, 58, 0.1);
  border: 1px solid rgba(200, 151, 58, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.4rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom span {
  color: var(--gold);
}

/* ─── PRELOADER ───────────────────────────────────── */
.cinematic-loader {
  position: fixed;
  inset: 0;
  background: var(--text);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}

.cinematic-loader.hide {
  transform: scaleX(0);
}

.loader-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  animation: pulse-glow 2s infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loader-logo span {
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3em;
  color: var(--saffron);
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 10px rgba(200, 151, 58, 0.2);
    transform: scale(0.98);
  }

  100% {
    text-shadow: 0 0 30px rgba(200, 151, 58, 0.6);
    transform: scale(1.02);
  }
}

/* ─── HIGHLIGHT SLIDER (SWIPER) ────────────────────── */
.highlight-swiper {
  width: 100%;
  padding-bottom: 2rem;
  overflow: visible;
  --swiper-navigation-color: transparent !important;
  --swiper-theme-color: transparent !important;
  --swiper-navigation-size: 0px !important;
}

.highlight-card {
  background: #FFF8F0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(224, 145, 69, 0.12);
  transition: var(--transition);
  height: auto;
  display: flex;
  flex-direction: column;
  cursor: grab;
}

.highlight-card:active {
  cursor: grabbing;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(200, 151, 58, 0.4);
}

.hc-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.hc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlight-card:hover .hc-image img {
  transform: scale(1.05);
}

.hc-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 2;
}

.hc-date .day {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}

.hc-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hc-content {
  padding: 1.8rem;
  flex-grow: 1;
}

.hc-content h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.hc-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.highlight-prev,
.highlight-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: absolute;
  top: 130px;
  /* Vertically centered relative to the 260px image */
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 0;
}

.highlight-prev {
  left: 10px;
}

.highlight-next {
  right: 10px;
}

.highlight-prev i,
.highlight-next i {
  font-size: 1.1rem;
  color: var(--gold);
}

/* Hide default Swiper blue arrows completely */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: none !important;
}

.highlight-prev svg,
.highlight-next svg {
  display: none !important;
}

.highlight-prev:hover,
.highlight-next:hover {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 12px rgba(200, 151, 58, 0.3);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: none;
  }

  .stat-item {
    border-bottom: 1px solid rgba(200, 151, 58, 0.15);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap img {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-card .hc-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links,
  .navbar .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-badge {
    display: none;
  }

  .gallery-preview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero {
    padding: 100px 5% 40px;
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Highlight slider header adjusting for mobile */
  #highlights>div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 120px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── BLOG SECTION ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: #FFF8F0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(224, 145, 69, 0.12);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-info {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-info .date {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--rich-green);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link {
  margin-top: auto;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── SPECIALITIES SECTION ──────────────────────────────── */
.speciality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.speciality-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  background: var(--green-dark);
}


.speciality-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.speciality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.speciality-card:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.sc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(23, 24, 29, 0.88) 100%);
  color: var(--white);
  transition: all 0.4s ease;
}

.speciality-card:hover .sc-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(224, 145, 69, 0.88) 100%);
}

.sc-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.speciality-card:hover .sc-icon {
  transform: translateY(-10px) scale(1.1);
  color: var(--white);
}

.sc-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sc-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.speciality-card:hover .sc-overlay p {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
  margin-bottom: 1rem;
}

.sc-btn {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  margin-top: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.speciality-card:hover .sc-btn {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
}

@media (max-width: 768px) {
  .speciality-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .speciality-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── EXTRA SMALL MOBILE REFINEMENTS ────────────────────── */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    margin: 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .about-grid h2.section-title,
  .section h2.section-title {
    font-size: 2rem;
  }

  /* Ensure highlights arrows are properly hidden or restyled if they overlap too much */
  .highlight-prev,
  .highlight-next {
    width: 35px;
    height: 35px;
  }

  .highlight-prev i,
  .highlight-next i {
    font-size: 0.9rem;
  }
}

/* ─── FLOATING ACTION BUTTONS (WhatsApp + Call) ────────── */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 0;
  height: 56px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  white-space: nowrap;
  max-width: 56px; /* collapsed by default */
}

.fab-btn:hover {
  max-width: 240px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}

.fab-btn .fab-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.fab-btn:hover .fab-icon {
  transform: rotate(10deg) scale(1.05);
}

.fab-btn .fab-label {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
  pointer-events: none;
}

.fab-btn:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp FAB */
.fab-whatsapp {
  background: #25D366;
}

.fab-whatsapp .fab-icon {
  background: #1ebe5d;
}

.fab-whatsapp:hover {
  background: #22c55e;
}

/* Call FAB */
.fab-call {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
}

.fab-call .fab-icon {
  background: rgba(0,0,0,0.12);
}

.fab-call:hover {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
}

/* Pulse ring on WhatsApp */
.fab-whatsapp::after {
  content:'';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fab-pulse 2.2s ease-out infinite;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes fab-pulse {
  0%   { transform: translateY(-50%) scale(1); opacity: 0.7; }
  70%  { transform: translateY(-50%) scale(1.6); opacity: 0; }
  100% { transform: translateY(-50%) scale(1.6); opacity: 0; }
}

/* ─── LOCATION SECTION ─────────────────────────────────── */
.location-section {
  padding: 80px 5%;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8973A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.location-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.location-info {
  color: var(--white);
}

.location-info .section-badge {
  color: var(--gold-light);
}

.location-info .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.location-info .section-title span {
  color: var(--gold-light);
}

.location-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.location-detail-item .ld-icon {
  width: 42px;
  height: 42px;
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.3);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-detail-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.location-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.location-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(200,151,58,0.25);
  position: relative;
}

.location-map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

@media (max-width: 900px) {
  .location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-map-wrap iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .location-action-btns {
    flex-direction: column;
  }

  .location-action-btns .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ─── CONTACT ACTION BUTTONS ROW ──────────────────────── */
.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  color: #fff;
}

.btn-instagram {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff;
  box-shadow: 0 4px 18px rgba(220,39,67,0.3);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,39,67,0.45);
  color: #fff;
}

/* ─── MOBILE EXTRA FIXES ────────────────────────────────── */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-banner .btn {
    width: 90%;
    max-width: 320px;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card {
    height: auto;
  }

  .pkg-inner {
    transform-style: flat;
  }

  .pkg-card:hover .pkg-inner {
    transform: none;
  }

  .pkg-front, .pkg-back {
    position: relative;
    backface-visibility: visible;
  }

  .pkg-back {
    transform: none;
    margin-top: 1rem;
    border-radius: var(--radius);
  }

  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .fab-container {
    bottom: 20px;
    right: 14px;
  }

  .fab-btn {
    height: 50px;
    max-width: 50px;
  }

  .fab-btn .fab-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}