/* ============================================================
   EIGHT PETAL FILMS — DESIGN SYSTEM
   Premium Wedding Photography & Cinematography
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* === CSS Variables / Tokens === */
:root {
  --black:       #F8F5F0;
  --black-soft:  #FFFFFF;
  --black-card:  #FFFFFF;
  --gold:        #D4AF37;
  --gold-light:  #e8c84a;
  --gold-dark:   #b8922a;
  --white:       #111111;
  --cream:       #F8F5F0;
  --cream-dark:  #ede8e0;
  --gray-light:  #555555;
  --gray-mid:    #777777;
  --overlay:     rgba(17, 17, 17, 0.65);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --radius-xl:  40px;

  --shadow-gold:  0 4px 30px rgba(212, 175, 55, 0.25);
  --shadow-card:  0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.12);

  --transition:       all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
  --section-gap: 100px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* === Scrollbar === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.8; }

.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-gray  { color: var(--gray-light); }
.text-center { text-align: center; }
.italic { font-style: italic; }

/* === Layout === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--section-gap) 0; }
.section--dark  { background: var(--black); }
.section--soft  { background: var(--black-soft); }
.section--card  { background: var(--black-card); }
.section--cream { background: var(--cream); color: #111111; }
.section--cream h2, .section--cream h3, .section--cream h4 { color: #111111; }
.section--cream p { color: var(--gray-mid); }

/* === Section Header === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-header .eyebrow::before { right: 100%; }
.section-header .eyebrow::after  { left: 100%; }

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111111;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #111111;
  transform: translateY(-2px);
}

.btn-white {
  background: #111111;
  color: #FFFFFF;
}

.btn-white:hover {
  background: #222222;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 24px; font-size: 0.78rem; }
.btn-lg { padding: 18px 48px; font-size: 0.9rem; }

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 2rem;
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  background: var(--black);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta .btn { padding: 10px 24px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.navbar.scrolled .hamburger span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--black);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* mobile viewport fix — avoids address bar overlap */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video,
.hero-video-bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.55) 0%,
    rgba(17,17,17,0.35) 40%,
    rgba(17,17,17,0.7) 100%
  );
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 6px 20px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-xl);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-content h1 em {
  font-style: italic;
  color: rgba(212, 175, 55, 0.85);
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* === Page Hero (inner pages) === */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.6) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow { color: var(--gold); display: block; margin-bottom: 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; }

/* === Breadcrumb === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* === Counter Stats === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  background: var(--black-card);
  transition: var(--transition);
}

.stat-item:hover { background: rgba(212,175,55,0.06); }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 8px;
  display: block;
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.35); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon i { color: var(--black); }

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* === Portfolio / Gallery === */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 9px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--gray-light);
  transition: var(--transition);
}

.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Masonry Grid (Native Aspect Ratio Layout) */
.masonry-grid {
  columns: 3;
  column-gap: 20px;
  display: block;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  break-inside: avoid;
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-item:hover img { transform: scale(1.06); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay .expand-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(212,175,55,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masonry-overlay .expand-icon i { color: var(--black); font-size: 1rem; }

/* Gallery Grid (standard) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold); color: var(--black); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.lightbox-nav:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-caption {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* === Story Cards === */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.story-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: pointer;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.25);
  box-shadow: var(--shadow-card);
}

.story-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover .story-thumb img { transform: scale(1.07); }

.story-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212,175,55,0.9);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}

.story-body {
  padding: 24px;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.story-meta span {
  font-size: 0.78rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.story-meta i { color: var(--gold); font-size: 0.75rem; }

.story-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
  transition: var(--transition);
}

.story-card:hover .story-body h3 { color: var(--gold); }

.story-body p { font-size: 0.84rem; }

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 16px;
  transition: var(--transition);
}

.story-link:hover { gap: 10px; }

/* === Video Cards === */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.video-card:hover { border-color: rgba(212,175,55,0.25); box-shadow: var(--shadow-card); }

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img { transform: scale(1.04); }

.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.play-btn i { color: var(--black); font-size: 1.3rem; margin-left: 3px; }
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--gold); }

.video-embed-wrap {
  display: none;
  aspect-ratio: 16/9;
}

.video-embed-wrap.active { display: block; }
.video-embed-wrap iframe { width: 100%; height: 100%; border: none; }

.video-body {
  padding: 20px 24px;
}

.video-body h4 { margin-bottom: 6px; font-size: 1rem; }
.video-body p { font-size: 0.82rem; }
.video-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  margin-bottom: 10px;
}

/* === Pricing Cards === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--black-card), rgba(212,175,55,0.06));
  transform: scale(1.04);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
  transform-origin: center;
  width: 140px;
  text-align: center;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.pricing-card h3 { font-size: 1.6rem; margin-bottom: 8px; }

.pricing-note {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-light);
}

.pricing-features li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.pricing-cta { width: 100%; justify-content: center; }

/* === Testimonials === */
.testimonials-wrap {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-md);
  padding: 36px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.08);
}

@media (min-width: 800px) {
  .testimonial-card {
    width: calc(50% - 12px);
  }
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.stars { margin-bottom: 16px; display: flex; gap: 4px; }
.stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.85);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-info { line-height: 1.4; }
.author-info .name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.author-info .role { font-size: 0.75rem; color: var(--gray-light); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.3);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.blog-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.2); box-shadow: var(--shadow-card); }

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-body { padding: 24px; }

.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-body h3 { color: var(--gold); }

.blog-body p { font-size: 0.83rem; margin-bottom: 16px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--gray-light);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-meta i { color: var(--gold); }

/* Featured Blog Card Responsive Layout */
.featured-blog-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.featured-blog-card:hover {
  border-color: rgba(212,175,55,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.featured-blog-card .featured-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.featured-blog-card .featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.featured-blog-card:hover .featured-img-wrap img {
  transform: scale(1.03);
}
.featured-blog-card .featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
  }
  .featured-blog-card .featured-body {
    padding: 24px;
  }
}

/* Rich-Text Post Article Styles */
.blog-article {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.9);
}
.blog-article p {
  margin-bottom: 24px;
}
.blog-article h2, .blog-article h3, .blog-article h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  margin: 40px 0 20px;
  line-height: 1.4;
}
.blog-article h2 { font-size: 1.8rem; }
.blog-article h3 { font-size: 1.45rem; margin: 32px 0 16px; }
.blog-article h4 { font-size: 1.25rem; margin: 28px 0 14px; }
.blog-article ul, .blog-article ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.blog-article li {
  margin-bottom: 8px;
}
.blog-article img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 32px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.blog-article a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s;
}
.blog-article a:hover {
  color: var(--gold-light);
}
.blog-article blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--gray-light);
}

/* Single Post Layout Styles */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-widget {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-md);
  padding: 30px;
}
.sidebar-widget h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  padding-bottom: 10px;
}
.related-post {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: var(--transition);
}
.related-post:hover {
  transform: translateX(4px);
}
.related-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === Contact Form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { color: var(--gold); font-size: 1rem; }

.contact-info-text .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.contact-info-text .value { font-size: 0.9rem; color: rgba(17, 17, 17, 0.85); }

/* Form */
.booking-form {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-title { margin-bottom: 8px; }
.form-sub { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 32px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #FFFFFF;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(17, 17, 17, 0.4);
}

.form-group select option { background: var(--black-card); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.about-image-accent {
  position: absolute;
  width: 55%;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-md);
  border: 4px solid var(--black);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1;
  object-fit: cover;
}

.about-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }

.about-signature {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 28px;
}

/* === Instagram Grid === */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img { transform: scale(1.08); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 1.5rem; color: var(--white); }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(212,175,55,0.08) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 560px; margin: 0 auto 36px; font-size: 1rem; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Footer === */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.logo-img-footer {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.footer-brand p { 
  font-size: 0.85rem; 
  max-width: 300px; 
  margin-bottom: 24px; 
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); }

/* === Floating Buttons === */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.float-whatsapp i { color: white; font-size: 1.6rem; }
.float-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

.float-call {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 900;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.float-call i { color: var(--black); font-size: 1.2rem; }
.float-call:hover { transform: scale(1.1); }

/* === Popup / Modal === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.popup-overlay.active { opacity: 1; pointer-events: all; }

.popup-box {
  background: var(--black-card);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(17, 17, 17, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}

.popup-close:hover { background: var(--gold); color: var(--black); }

/* === Cookie Bar === */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(248, 245, 240, 0.98);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  padding: 16px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 8000;
  transform: translateY(100%);
  transition: transform 0.4s;
  flex-wrap: wrap;
}

.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.82rem; color: var(--gray-light); }
.cookie-bar a { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* === Sticky Mobile CTA === */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(248, 245, 240, 0.98);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.05);
  padding: 12px 20px;
  gap: 10px;
}

.mobile-sticky-cta .btn { flex: 1; justify-content: center; font-size: 0.78rem; padding: 12px 16px; }

/* === Utility === */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === FAQ Accordion === */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.8rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--gold); color: var(--black); transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p { padding: 0 0 20px; font-size: 0.88rem; }

/* === Video Modal === */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.video-modal.active { opacity: 1; pointer-events: all; }

.video-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
}

.video-modal-inner iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-sm); }

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
  font-size: 1rem;
}

.video-modal-close:hover { background: var(--gold); color: var(--black); }

/* === Map === */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(212,175,55,0.12);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(60%) invert(5%); }

/* === Responsive === */
@media (max-width: 1100px) {
  .masonry-grid { columns: 2; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-gap: 70px; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }
  .masonry-grid { columns: 2; }
  .pricing-card.featured { transform: scale(1); }
  .testimonial-card { min-width: 0; }
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-gap: 60px; }
  .masonry-grid { columns: 1; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 24px; }
  .booking-form { padding: 28px 20px; }
  .hero-actions .btn:last-child { display: none; }
  .mobile-sticky-cta { display: flex; }
  .float-whatsapp { bottom: 75px; }
  .float-call { bottom: 145px; }
  .stories-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 12s ease forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

/* Mobile: show top of image so faces/subjects are visible */
@media (max-width: 640px) {
  .hero {
    height: 70vh;
    height: 70svh;
    min-height: 400px;
    align-items: flex-end;
    padding-bottom: 50px;
  }
  .hero-slide {
    background-position: center 25%;
    background-size: cover;
  }
  .page-hero {
    padding: 100px 0 50px;
  }
  .page-hero-bg {
    background-position: center 25%;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(17,17,17,0.25) 0%,
      rgba(17,17,17,0.2) 30%,
      rgba(17,17,17,0.85) 100%
    );
  }
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .hero-content p {
    font-size: 0.85rem;
    max-width: 320px;
    margin: 12px auto 0;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
  }
  .hero-actions {
    margin-top: 20px;
    justify-content: center;
  }
}
/* Service Detail Synced Half-Slider */
.half-slider-wrap {
  position: relative;
  width: 100%;
}

.half-slider-main {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(212, 175, 55, 0.18);
  background: #111111;
}

.half-slide-main {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.half-slide-main.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.half-slide-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.half-slide-main.active img {
  transform: scale(1.06);
}

/* Hide overlapping double accent slider globally to achieve premium single slider design */
.half-slider-accent {
  display: none !important;
}

.half-slide-accent {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.half-slide-accent.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.half-slide-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.half-slide-accent.active img {
  transform: scale(1.06);
}

/* Half Slider Navigation Buttons */
.half-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.half-slider-main:hover .half-slider-btn {
  opacity: 1;
  visibility: visible;
}

.half-slider-btn:hover {
  background: var(--gold);
  color: #111111;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.half-slider-btn.prev {
  left: 18px;
}

.half-slider-btn.next {
  right: 18px;
}

/* Premium Navigation Dots indicators at the bottom of the slider */
.half-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(17, 17, 17, 0.45);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.06);
}

.half-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.half-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.half-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* Adjustments for smaller screen layouts */
@media (max-width: 900px) {
  .half-slider-accent {
    bottom: -15px;
    right: -15px;
  }
}

/* === FAQ Accordion Styles === */
.faq-premium .faq-item {
  background: #ffffff;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-premium .faq-item:hover {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 4px 20px rgba(212,175,55,0.08);
}

.faq-premium .faq-question {
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-premium .faq-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #111;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.faq-premium .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-premium .faq-answer p {
  padding: 0 28px 22px;
  color: #555555;
  font-size: 0.88rem;
  line-height: 1.8;
}

/* Mobile & Tablet Slider Fixes: Hide overlapping accent slider and ensure fit */
@media (max-width: 768px) {
  .half-slider-accent {
    display: none !important;
  }
  .half-slide-main img {
    object-fit: contain !important;
    background: #111111;
  }
}

/* Premium Slider Ornaments and Corner Brackets Styles */
.half-slider-ornament-top,
.half-slider-ornament-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 32px;
  pointer-events: none;
}

.half-slider-ornament-top {
  margin-bottom: 25px;
  margin-top: 15px;
}

.half-slider-ornament-bottom {
  margin-top: 25px;
  margin-bottom: 15px;
}

.half-slider-ornament-top .line-left,
.half-slider-ornament-top .line-right,
.half-slider-ornament-bottom .line-left,
.half-slider-ornament-bottom .line-right {
  height: 1px;
  flex-grow: 1;
}

.half-slider-ornament-top .line-left,
.half-slider-ornament-bottom .line-left {
  background: linear-gradient(to left, rgba(212, 175, 55, 0.4), transparent);
}

.half-slider-ornament-top .line-right,
.half-slider-ornament-bottom .line-right {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.4), transparent);
}

.half-slider-ornament-top .dot-accent,
.half-slider-ornament-bottom .dot-accent {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.65;
  line-height: 1;
  user-select: none;
}

/* Custom 8-Petal Flower SVG Styling */
.eight-petal-flower {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.25));
}

.half-slider-wrap:hover .eight-petal-flower {
  transform: rotate(45deg);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

/* Dynamic Photo Album corners inside the main slider */
.half-slider-corners {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 4px;
  pointer-events: none;
  z-index: 8;
}

.half-slider-corners .corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid transparent;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.half-slider-corners .corner-tl {
  top: 0;
  left: 0;
  border-top-color: rgba(212, 175, 55, 0.6);
  border-left-color: rgba(212, 175, 55, 0.6);
}

.half-slider-corners .corner-tr {
  top: 0;
  right: 0;
  border-top-color: rgba(212, 175, 55, 0.6);
  border-right-color: rgba(212, 175, 55, 0.6);
}

.half-slider-corners .corner-bl {
  bottom: 0;
  left: 0;
  border-bottom-color: rgba(212, 175, 55, 0.6);
  border-left-color: rgba(212, 175, 55, 0.6);
}

.half-slider-corners .corner-br {
  bottom: 0;
  right: 0;
  border-bottom-color: rgba(212, 175, 55, 0.6);
  border-right-color: rgba(212, 175, 55, 0.6);
}

/* Micro-interaction: pull corners slightly inward on hover */
.half-slider-main:hover .half-slider-corners .corner-tl {
  transform: translate(2px, 2px);
  border-top-color: var(--gold);
  border-left-color: var(--gold);
}

.half-slider-main:hover .half-slider-corners .corner-tr {
  transform: translate(-2px, 2px);
  border-top-color: var(--gold);
  border-right-color: var(--gold);
}

.half-slider-main:hover .half-slider-corners .corner-bl {
  transform: translate(2px, -2px);
  border-bottom-color: var(--gold);
  border-left-color: var(--gold);
}

.half-slider-main:hover .half-slider-corners .corner-br {
  transform: translate(-2px, -2px);
  border-bottom-color: var(--gold);
  border-right-color: var(--gold);
}

