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

/* --- CUSTOM VARIABLES --- */
:root {
  --bg-primary: #1a050a;
  --bg-secondary: #24040b;
  --bg-card: #340711;
  --bg-card-hover: #480a18;
  --accent-gold: #D4AF37;
  --accent-gold-rgb: 212, 175, 55;
  --accent-gold-hover: #F2D06B;
  --accent-wine: #5C0A1A;
  --text-primary: #F5EDE4;
  --text-secondary: #e2dacd;
  --text-muted: #bdae9c;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.4);
  --shadow-gold-soft: 0 0 15px rgba(212, 175, 55, 0.15);
  --max-width: 1200px;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky nav */
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-wine);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #AA841C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.text-center {
  text-align: center;
}

/* --- GLOBAL PATTERNS & UTILITIES --- */
.section {
  padding: 100px 20px;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--accent-gold);
}

/* Elegant gold line under headings with a diamond ornament */
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-header h2::before {
  content: '♦';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 8px auto 0;
  color: var(--text-muted);
}

/* Decorative Mandala/Paisley Background Pattern */
.mandala-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23D4AF37' d='M50 0 C60 20 80 40 100 50 C80 60 60 80 50 100 C40 80 20 60 0 50 C20 40 40 20 50 0 Z'/%3E%3Ccircle cx='50' cy='50' r='15' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-dark);
}

.btn-gold {
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #B88E14 100%);
  color: #1a050a;
  border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFF1C5 0%, #EBC351 50%, #D4AF37 100%);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-3px);
}

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

.btn-outline-gold:hover {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-soft);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
  border-radius: 30px;
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-3px);
}

/* --- NAVIGATION HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header.sticky {
  background-color: rgba(26, 5, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header.sticky .header-container {
  padding: 8px 20px;
}

.header.sticky .logo-img {
  height: 90px;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease, height 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 130px; /* Increased logo size on desktop */
  width: auto;
  object-fit: contain;
  border-radius: 8px; /* Smooth rounded corners for the square jpeg logo */
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.35));
  transition: height 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}


.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: var(--font-body);
  font-weight: 600;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(26, 5, 10, 0.4) 0%,
    rgba(26, 5, 10, 0.8) 55%,
    rgba(26, 5, 10, 1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 96px;
  line-height: 96px;
  margin-bottom: 25px;
  color: var(--text-primary);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 52px;
    line-height: 52px;
  }
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 45px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

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

.btn-hero-pill {
  border-radius: 30px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
}

.btn-hero-glow {
  box-shadow: var(--shadow-gold-glow) !important;
}

.header-cta-btn {
  border-radius: 30px !important;
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.hero-features-list-v3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 40px;
}

.hero-features-list-v3 span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- ABOUT SECTION --- */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: center;
}

.about-img-container {
  position: relative;
  padding: 15px;
  display: inline-block;
  width: 100%;
}

.about-img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
  pointer-events: none;
}

.about-img-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--accent-gold);
  border-right: 3px solid var(--accent-gold);
  pointer-events: none;
}

.about-img-box {
  position: relative;
  border-radius: 8px;
  height: 480px;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-img-badge {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background-color: var(--bg-card);
  border: 1.5px solid var(--accent-gold);
  border-radius: 6px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.badge-star-circle {
  width: 32px;
  height: 32px;
  background-color: var(--accent-gold);
  color: #1a050a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.badge-text-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-text-box strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.badge-text-box span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-tagline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about-tagline .tagline-line {
  width: 35px;
  height: 1.5px;
  background-color: var(--accent-gold);
}

.about-tagline .tagline-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
  color: rgb(254, 252, 232);
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .about-content h3 {
    font-size: 38px;
    line-height: 38px;
  }
}

.italic-gold {
  font-style: italic !important;
  color: var(--accent-gold) !important;
  font-weight: 400 !important;
}

.section-tagline-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-tagline-center .tagline-line {
  width: 35px;
  height: 1.5px;
  background-color: var(--accent-gold);
}

.section-tagline-center .tagline-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-content p span.bold {
  font-weight: 700;
}

.about-content p span.text-gold {
  color: var(--accent-gold);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.about-stat-card {
  text-align: center;
  background-color: rgba(26, 5, 10, 0.5);
  border: 1.5px solid rgba(212, 175, 55, 0.12);
  padding: 20px 10px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.about-stat-card:hover {
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-soft);
}

.about-stat-card .stat-num {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 5px;
}

.about-stat-card .stat-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.3;
  font-weight: 600;
  display: block;
}

/* --- PERFORMANCE VIDEO (v3) --- */
.video-container-v3 {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  position: relative;
  box-shadow: var(--shadow-dark);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-overlay-v3 {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 5, 10, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-play-overlay-v3.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-icon-v3 {
  width: 76px;
  height: 76px;
  background-color: var(--accent-gold);
  color: #1a050a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding-left: 5px; /* Offset play triangle to center it */
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  transition: var(--transition-smooth);
}

.video-play-overlay-v3:hover .play-icon-v3 {
  transform: scale(1.08);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.8);
}

@media (max-width: 576px) {
  .play-icon-v3 {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}

@media (max-width: 991px) {
  .video-container-v3 {
    height: auto;
  }
}

@media (max-width: 576px) {
  .video-container-v3 {
    height: auto;
    border-radius: 8px;
  }
}

.video-media-v3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-fallback-img-v3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-dark-overlay-v3 {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 5, 10, 0.15);
  z-index: 2;
  pointer-events: none;
}

.video-live-badge-v3 {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(26, 5, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .video-live-badge-v3 {
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    font-size: 0.65rem;
  }
}

.live-dot-pulse-v3 {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.live-dot-pulse-v3::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: live-pulse-anim 1.8s infinite ease-out;
  opacity: 0;
}

@keyframes live-pulse-anim {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.video-controls-v3 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .video-controls-v3 {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
}

.video-control-btn-circle-v3 {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background-color: rgba(26, 5, 10, 0.65);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
  outline: none;
}

.video-control-btn-circle-v3:hover {
  background-color: var(--accent-gold);
  color: #1a050a;
}

.video-control-btn-pill-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent-gold);
  background-color: rgba(26, 5, 10, 0.65);
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

@media (max-width: 576px) {
  .video-control-btn-circle-v3 {
    width: 30px;
    height: 30px;
  }
  .video-control-btn-pill-v3 {
    padding: 6px 12px;
    font-size: 0.72rem;
  }
}

.video-control-btn-pill-v3:hover {
  background-color: var(--accent-gold);
  color: #1a050a;
}

.video-caption-v3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 15px;
  text-align: center;
}

/* --- OVERHAULED SERVICES GRID (v3) --- */
.services-overhauled-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .services-overhauled-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .services-overhauled-grid-v3 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.service-card-v3 {
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
}

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

@media (min-width: 992px) {
  .service-card-v3.card-centered-v3 {
    grid-column: 2;
  }
}

.service-img-wrapper-v3 {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-img-wrapper-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v3:hover .service-img-wrapper-v3 img {
  transform: scale(1.05);
}

.service-badge-bestseller-v3 {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e23368;
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 5;
}

.service-badge-new-v3 {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #25D366;
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 5;
}

.service-icon-overlay-v3 {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 34px;
  height: 34px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1a050a;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  z-index: 5;
}

.service-play-btn-v3 {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold);
  color: #1a050a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 3px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 4;
}

.service-card-v3:hover .service-play-btn-v3 {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.service-body-v3 {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.service-title-row-v3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 6px;
}

.service-title-row-v3 h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
}

.service-price-v3 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.price-val-v3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
}

.price-lbl-v3 {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-tag-v3 {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: lowercase;
  letter-spacing: 0.2px;
}

.service-bullets-v3 {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.service-bullets-v3 li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bullet-star-v3 {
  color: var(--accent-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-actions-v3 {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-service-wa-v3 {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #25D366;
  border: 1px solid #25D366;
  text-decoration: none;
  transition: var(--transition-smooth);
  background: transparent;
}

.btn-service-wa-v3:hover {
  background-color: rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
  color: #25D366;
}

.btn-service-enquire-v3 {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  background: transparent;
}

.btn-service-enquire-v3:hover {
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  color: var(--accent-gold);
}

.btn-service-video-v3 {
  flex: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  background: transparent;
}

.btn-service-video-v3:hover {
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  color: var(--accent-gold);
}

/* --- COMBO PACKAGES SECTION --- */
/* --- COMBO PACKAGES SECTION --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.package-card-v2 {
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 45px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
}

.package-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-gold-soft);
}

.package-card-v2.popular-v2 {
  border: 2.5px solid var(--accent-gold);
  background-color: var(--bg-card-hover);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold-hover);
}

.package-card-v2.popular-v2:hover {
  transform: scale(1.03) translateY(-5px);
}

.badge-v2 {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #B88E14 100%);
  color: #1a050a;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.package-top-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.package-icon-container {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.05);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.package-card-v2:hover .package-icon-container {
  background-color: var(--accent-gold);
  color: #1a050a;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.package-title-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.package-name-v2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.package-sub-v2 {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.package-price-v2 {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 25px;
}

.price-row-v2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-amount-v2 {
  font-size: 2.6rem;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 700;
  line-height: 1.1;
}

.price-original-v2 {
  font-size: 1.05rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.save-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.save-badge-green {
  background-color: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25D366;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.2px;
}

.vs-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.package-features-v2 {
  list-style: none;
  margin-bottom: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 20px;
  flex-grow: 1;
}

.package-features-v2 li {
  padding: 10px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.package-features-v2 li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.package-note-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  padding-top: 15px;
}

.gold-vertical-line {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.note-text {
  line-height: 1.3;
}

.package-actions-v2 {
  display: flex;
  gap: 12px;
  width: 100%;
}

.btn-pkg-wa-outline {
  flex: 1.2;
  padding: 11px;
  background-color: transparent;
  color: #25D366;
  border: 1.5px solid #25D366;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-pkg-wa-outline:hover {
  background-color: #25D366;
  color: white;
  border-color: #25D366;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.btn-pkg-wa-filled {
  flex: 1.2;
  padding: 11px;
  background: var(--accent-gold);
  color: #1a050a;
  border: 1.5px solid var(--accent-gold);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-pkg-wa-filled:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-gold-glow);
}

.btn-pkg-enquire {
  flex: 1;
  padding: 11px;
  background-color: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-fast);
}

.btn-pkg-enquire:hover {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-gold-soft);
}

/* --- GALLERY SECTION --- */
.gallery-collage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(212, 175, 55, 0.12);
  background-color: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 5, 10, 0.8) 0%, rgba(26, 5, 10, 0) 45%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.gallery-caption-v2 {
  position: absolute;
  bottom: 15px;
  left: 18px;
  font-size: 0.82rem;
  color: rgba(245, 237, 228, 0.85); /* cream/off-white */
  font-weight: 500;
  z-index: 5;
  pointer-events: none;
  font-family: var(--font-body);
  letter-spacing: 0.2px;
  line-height: 1.3;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-caption-v2 {
  color: var(--accent-gold);
}

/* Specific Collage Span Heights & Positions */
.collage-tall {
  grid-column: span 4;
  grid-row: span 2;
  height: 520px;
}

.collage-standard {
  grid-column: span 2;
  height: 250px;
}

.collage-bottom-row {
  grid-column: span 2;
  height: 200px;
}

.collage-bottom-wide {
  grid-column: span 3;
  height: 220px;
}

/* Responsive Collage */
@media (max-width: 991px) {
  .gallery-collage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .collage-tall {
    grid-column: span 4;
    height: 400px;
  }
  .collage-standard {
    grid-column: span 2;
    height: 200px;
  }
  .collage-bottom-row {
    grid-column: span 2;
    height: 180px;
  }
  .collage-bottom-wide {
    grid-column: span 2;
    height: 180px;
  }
}

@media (max-width: 600px) {
  .gallery-collage-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .collage-tall, .collage-standard, .collage-bottom-row, .collage-bottom-wide {
    grid-column: span 1;
    grid-row: span 1;
    height: 240px;
  }
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 5, 10, 0.97);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background-color: var(--bg-primary);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  object-fit: contain;
}

.lightbox-caption {
  padding: 15px;
  text-align: center;
  background-color: rgba(26, 5, 10, 0.8);
  color: var(--text-primary);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-primary);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
  font-size: 1.8rem;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-fast);
  user-select: none;
}

.lightbox-nav:hover {
  background-color: var(--accent-gold);
  color: #1a050a;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* --- TRUST ELEMENTS (v2) --- */
.why-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card-v2 {
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: left;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-dark);
}

.why-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow-gold-soft);
}

.why-icon-box-v2 {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.05);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.why-card-v2:hover .why-icon-box-v2 {
  background-color: var(--accent-gold);
  color: #1a050a;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.why-card-v2 h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-card-v2 p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- TESTIMONIALS --- */
.testimonials-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 5px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 45px 35px;
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

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

@media (min-width: 992px) {
  .testimonial-slide {
    min-width: calc(33.333% - 16px);
  }
}

.stars {
  color: var(--accent-gold);
  font-size: 1.15rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-primary);
  line-height: 1.65;
  font-family: var(--font-heading);
  flex-grow: 1;
}

.client-info {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 20px;
  margin-top: auto;
}

.client-info h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.client-info p {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-btn {
  background-color: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--accent-gold);
  color: #1a050a;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--accent-gold);
  width: 25px;
  border-radius: 5px;
}

/* --- INSTAGRAM WRAPPER & GRID --- */
.instagram-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.instagram-cta-card {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  text-align: left;
}

.instagram-cta-card .insta-tag {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.instagram-cta-card h3 {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.instagram-cta-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 35px;
}

.btn-insta-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: linear-gradient(90deg, #9d2cc1 0%, #e23368 50%, #f77737 100%);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(226, 51, 104, 0.4);
  transition: var(--transition-smooth);
  width: fit-content;
  border: none;
  cursor: pointer;
}

.btn-insta-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(226, 51, 104, 0.6);
  color: #ffffff;
}

.arrow-up-right {
  font-weight: bold;
  margin-left: 5px;
}

.insta-sub-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 25px;
  font-weight: 500;
}

.green-live-dot {
  color: #25D366;
  font-size: 0.85rem;
  animation: pulseLive 2s infinite ease-in-out;
  display: inline-block;
  margin-right: 5px;
}

@keyframes pulseLive {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.instagram-right-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insta-feed-item {
  border-radius: 12px;
  overflow: hidden;
  height: 175px;
  border: 1.5px solid rgba(212, 175, 55, 0.12);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: block;
}

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

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

.insta-feed-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold-soft);
}

.insta-fineprint {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  font-weight: 500;
}

/* --- FAQ ACCORDIONS --- */
.faq-group-box-v3 {
  max-width: 900px;
  margin: 40px auto 0;
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.faq-item-v3 {
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: var(--transition-smooth);
}

.faq-item-v3:last-child {
  border-bottom: none;
}

.faq-item-v3[open] {
  background-color: rgba(212, 175, 55, 0.015);
}

.faq-question-v3 {
  padding: 22px 30px;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: var(--transition-smooth);
}

.faq-question-v3::-webkit-details-marker {
  display: none;
}

.chevron-down-svg {
  color: var(--accent-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item-v3[open] .chevron-down-svg {
  transform: rotate(180deg);
}

.faq-answer-v3 {
  padding: 0 30px 22px 30px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer-v3 p {
  margin: 0;
}

/* --- OVERHAULED BOOKING FORM --- */
.booking-form-box-v2 {
  max-width: 900px;
  margin: 40px auto 0;
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: var(--shadow-dark);
}

.form-grid-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .form-grid-v3 {
    grid-template-columns: 1fr;
  }
  .booking-form-box-v2 {
    padding: 30px 20px;
  }
  .form-actions-v3 {
    flex-direction: column;
    gap: 15px;
  }
}

.form-group-v3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label-v3 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.form-control-v3 {
  width: 100%;
  background-color: rgba(26, 5, 10, 0.6);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  box-sizing: border-box;
}

.form-control-v3:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold-soft);
}

.select-wrapper-v3 {
  position: relative;
  width: 100%;
}

.select-control-v3 {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.select-wrapper-v3::after {
  content: '▼';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 0.8rem;
  pointer-events: none;
}

.services-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.service-tag-label {
  cursor: pointer;
}

.service-tag-label input {
  display: none;
}

.service-tag-label span {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background-color: rgba(212, 175, 55, 0.02);
  transition: var(--transition-smooth);
}

.service-tag-label input:checked + span {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #1a050a;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.service-tag-label:hover span {
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.06);
}

.textarea-v3 {
  resize: vertical;
  min-height: 100px;
}

.form-actions-v3 {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-form-submit-v3 {
  flex: 1.2;
  padding: 14px;
  background: var(--accent-gold);
  color: #1a050a;
  border: 1.5px solid var(--accent-gold);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold-glow);
}

.btn-form-submit-v3:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-form-wa-v3 {
  flex: 1;
  padding: 14px;
  background-color: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.btn-form-wa-v3:hover {
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-soft);
}

/* --- CONTACT DETAILS & ROYAL CREST PANEL --- */
.contact-details-emblem-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .contact-details-emblem-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-left-details-v3 {
  text-align: left;
}

.contact-main-heading-v3 {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-desc-v3 {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 35px;
}

.contact-list-v3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item-v3 {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-icon-circle-v3 {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.04);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item-v3:hover .contact-icon-circle-v3 {
  background-color: var(--accent-gold);
  color: #1a050a;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-text-v3 {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-label-v3 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-val-v3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

a.contact-val-v3:hover {
  color: var(--accent-gold);
}

.contact-val-v3.font-sans-bold-v3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
}

.crest-emblem-card-v3 {
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 45px 40px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crest-logo-wrapper-v3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.crest-svg-v3 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
}

.crest-logo-caption-v3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.crest-heading-v3 {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.crest-subheading-v3 {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 320px;
}

.crest-actions-v3 {
  display: flex;
  gap: 15px;
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .crest-actions-v3 {
    flex-direction: column;
    gap: 12px;
  }
}

.btn-crest-pill-v3 {
  flex: 1;
  padding: 12px 20px !important;
  border-radius: 30px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-crest-phone-v3 {
  background: var(--accent-gold) !important;
  color: #1a050a !important;
  border: 1.5px solid var(--accent-gold) !important;
}

.btn-crest-phone-v3:hover {
  background: var(--accent-gold-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  color: #1a050a !important;
}

.btn-crest-wa-v3 {
  border: 1.5px solid #25D366 !important;
  color: #25D366 !important;
  background: transparent !important;
}

.btn-crest-wa-v3:hover {
  background-color: rgba(37, 211, 102, 0.08) !important;
  transform: translateY(-2px);
  color: #25D366 !important;
}

.crest-reviews-capsule-v3 {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(212, 175, 55, 0.02);
  max-width: 100%;
  box-sizing: border-box;
}

.rating-stars-v3 {
  color: var(--accent-gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.rating-text-v3 {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.review-link-v3 {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.review-link-v3:hover {
  color: var(--accent-gold-hover);
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 50px);
  background-color: #2c5e3b;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  z-index: 3000;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
  font-weight: 500;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-msg.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* --- PERSISTENT FLOATING ACTIONS --- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
  color: white;
  cursor: pointer;
  border: none;
  font-size: 1.8rem;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

.btn-float-call {
  background-color: var(--accent-gold);
  color: #1a050a;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-float-call:hover {
  box-shadow: var(--shadow-gold-glow);
}

.btn-float-wa {
  background-color: #25D366;
}

.btn-float-wa:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* --- FOOTER --- */
.footer {
  background-color: #0d0205;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 70px 20px 30px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 50px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-about .logo {
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer-buttons-v3 {
    justify-content: center;
  }
  .footer-desc-v3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-title-v3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-desc-v3 {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 25px;
  max-width: 440px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

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

.footer-buttons-v3 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-footer-pill-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-footer-phone-v3 {
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-footer-phone-v3:hover {
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  color: var(--accent-gold);
}

.btn-footer-wa-v3 {
  border: 1.5px solid #25D366;
  color: #25D366;
  background: transparent;
}

.btn-footer-wa-v3:hover {
  background-color: rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
  color: #25D366;
}

.btn-footer-insta-v3 {
  background: linear-gradient(90deg, #9d2cc1 0%, #e23368 50%, #f77737 100%);
  color: #ffffff;
  border: none;
}

.btn-footer-insta-v3:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 51, 104, 0.35);
  color: #ffffff;
}

.btn-footer-google-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  color: var(--text-primary);
  background: transparent;
}

.btn-footer-google-v3:hover {
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--accent-gold);
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .services-overhauled-grid {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .why-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-box {
    height: 350px;
  }
  .instagram-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-details-emblem-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
  .header-container {
    padding: 12px 20px;
  }
  .logo-img {
    height: 115px;
  }
  .header.sticky .header-container {
    padding: 8px 20px;
  }
  .header.sticky .logo-img {
    height: 85px;
  }
  .hero {
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: 180px !important;
    padding-bottom: 80px !important;
  }
  .nav {
    display: none; /* Controlled by JS mobile menu */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }
  .nav.active {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 40px;
  }
  .package-card.popular {
    transform: none;
  }
  .package-card.popular:hover {
    transform: translateY(-5px);
  }
  .video-banner-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 15px;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
  .why-grid-v2 {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid-v2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-form-v2 {
    padding: 25px 20px;
  }
  .lightbox-prev, .lightbox-next {
    display: none; /* Hide visual nav on mobile, use touch gestures or clicks */
  }
  .lightbox-content {
    max-width: 95%;
  }
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .instagram-cta-card {
    padding: 30px;
  }
  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-features-list {
    font-size: 0.8rem;
    gap: 10px;
  }
  .hero-features-list .feature-divider {
    display: none;
  }
  .video-banner-card {
    height: 240px;
  }
  .play-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 95px;
  }
  .header.sticky .header-container {
    padding: 6px 15px;
  }
  .header.sticky .logo-img {
    height: 70px;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .logo-text span {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
  .logo {
    gap: 8px;
  }
  .hero {
    padding-top: 155px !important;
    padding-bottom: 60px !important;
  }
  .hero-title {
    font-size: 40px !important;
    line-height: 48px !important;
    font-weight: 300 !important;
    font-style: italic !important;
    margin-bottom: 20px;
  }
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 35px !important;
    padding: 0 10px;
  }
  .hero-actions-v3 {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100%;
    max-width: 290px;
    margin: 0 auto 40px !important;
  }
  .hero-actions-v3 .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    display: inline-flex !important;
    padding: 12px 24px !important;
    font-size: 0.92rem !important;
    box-sizing: border-box;
    border-radius: 30px !important;
  }
  .hero-actions-v3 a.btn-outline-gold {
    border: 1.5px solid var(--accent-gold) !important;
    color: var(--text-primary) !important;
  }
  .hero-actions-v3 a[href^="tel"] {
    border: 1.5px solid rgba(212, 175, 55, 0.25) !important;
    color: var(--text-primary) !important;
  }
  .hero-features-list-v3 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 290px;
    margin: 30px auto 0 !important;
    font-size: 0.82rem !important;
    text-align: left;
    padding: 0 5px;
  }
  .hero-features-list-v3 span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .section-tagline-center .tagline-line {
    width: 25px !important;
  }
  .section-tagline-center .tagline-text {
    font-size: 0.72rem !important;
    letter-spacing: 1px !important;
  }
}

/* --- Video Popup Modal (v3) --- */
.video-modal-v3 {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000; /* Above header and lightbox */
  inset: 0;
  background-color: rgba(26, 5, 10, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-v3.active {
  display: flex;
  opacity: 1;
}

.video-modal-content-v3 {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: #1a050a;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal-v3.active .video-modal-content-v3 {
  transform: scale(1);
}

.video-modal-close-v3 {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.video-modal-close-v3:hover {
  color: var(--accent-gold);
  transform: scale(1.1);
}

.video-modal-body-v3 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-body-v3 video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-modal-caption-v3 {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
