/*
Theme Name: Karai Decorations Theme
Theme URI: https://karaidecoration.local
Author: Karai Decorations Team
Description: Premium Gold & Black Luxury Event & Wedding Decoration Theme for Karai Decorations, Karaikudi.
Version: 1.2.0
Text Domain: karaidecoration
*/

/* ==========================================================================
   KARAI DECORATIONS - PREMIUM BRAND STYLESHEET
   Design Style: Gold + Black Luxury Hybrid (Light & Dark Balanced)
   Location: Karaikudi, Tamil Nadu
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-dark: #0b0b0f;
  --bg-dark-surface: #14141c;
  --bg-dark-card: #1a1a24;
  
  --bg-light: #fdfbf7;
  --bg-light-surface: #f7f4ed;
  --bg-light-card: #ffffff;

  --gold-primary: #c59b27;
  --gold-light: #eed580;
  --gold-dark: #967215;
  --gold-gradient: linear-gradient(135deg, #c59b27 0%, #f5e192 35%, #a47d1b 70%, #e0bc51 100%);
  --gold-glow: 0 0 25px rgba(197, 155, 39, 0.28);
  --gold-border: rgba(197, 155, 39, 0.35);
  --gold-border-hover: rgba(197, 155, 39, 0.75);

  --text-dark-theme: #f8f8fa;
  --text-dark-muted: #a0a0b2;
  
  --text-light-theme: #1a1a22;
  --text-light-muted: #555566;
  
  /* Typography */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing & Layout */
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-dark-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 24px rgba(197, 155, 39, 0.28);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-light-theme);
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-light-theme);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-light-theme);
}

.gold-text {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold-primary);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light-theme);
}

.section-dark .section-title {
  color: var(--text-dark-theme);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}

.section-dark .section-subtitle {
  color: var(--text-dark-muted);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. UNIFIED BUTTON SYSTEM (Gold + Black + White/Cream Only)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Primary Button: Gold Background + Black Text */
.btn-primary {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(197, 155, 39, 0.45);
  color: #000000;
}

/* Secondary Button: Transparent + Gold Border + Black/White Text */
.btn-outline {
  background: transparent;
  color: var(--text-light-theme);
  border: 1.5px solid var(--gold-primary);
}

.section-dark .btn-outline,
.hero .btn-outline,
.cta-banner .btn-outline {
  color: #ffffff;
  border-color: var(--gold-primary);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.1);
  transform: translateY(-3px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION (Obsidian Dark Luxury)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: background var(--transition-fast), padding var(--transition-fast);
}

body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark-theme);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

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

.nav-link,
.nav-menu li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active,
.nav-menu li.current-menu-item a,
.nav-menu li a:hover {
  color: var(--gold-primary);
}

.nav-link.active::after,
.nav-menu li.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark-theme);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-primary);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 15, 0.96);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay .nav-link,
.mobile-nav-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark-theme);
}

/* --------------------------------------------------------------------------
   5. HERO BANNER WITH LOCATION BADGE & YOUTUBE VIDEO BACKGROUND
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  overflow: hidden;
  color: var(--text-dark-theme);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 177.77vh; /* 16:9 ratio coverage */
  min-height: 56.25vw;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
  filter: brightness(0.48) contrast(1.1);
  border: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11,11,15,0.2) 0%, rgba(11,11,15,0.85) 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  padding: 60px 24px;
}

/* Hero Location Badge */
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulseGold 3s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 10px rgba(197, 155, 39, 0.2); }
  50% { box-shadow: 0 0 25px rgba(197, 155, 39, 0.45); }
}

.hero-location-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold-primary);
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

/* Page Inner Hero */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 60px 0;
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.95) 0%, rgba(11, 11, 15, 1) 100%);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  color: var(--text-dark-theme);
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.25rem;
  }
}

/* --------------------------------------------------------------------------
   6. SECTION LAYOUTS & LIGHT/DARK CARDS
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 90px 0;
}

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

.section-bg-surface {
  background-color: var(--bg-light-surface);
}

.section-bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-dark-theme);
}

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.intro-text p {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.intro-card-frame {
  position: relative;
  border-radius: var(--radius-md);
  padding: 6px;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-card);
}

.intro-card-img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

/* Services Grid (6 Featured Cards on Home) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-light-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.18);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-light-theme);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.service-link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* --------------------------------------------------------------------------
   7. VISUAL SHOWCASE / VIDEO SECTION (Dark Charcoal Accent)
   -------------------------------------------------------------------------- */
.showcase-section {
  background: #0d0d12;
  color: var(--text-dark-theme);
  padding: 90px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.showcase-section .section-title {
  color: #ffffff;
}

.showcase-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.showcase-video-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  box-shadow: var(--shadow-dark-card), var(--gold-glow);
  aspect-ratio: 16 / 9;
  background: #000;
}

.showcase-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.showcase-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(197, 155, 39, 0.6);
  transition: transform var(--transition-fast);
  z-index: 3;
}

.showcase-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.showcase-play-btn svg {
  width: 32px;
  height: 32px;
  fill: #0b0b0e;
  margin-left: 4px;
}

/* Why Choose Us Grid (4 Features) */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--bg-light-card);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 30px;
  height: 30px;
  fill: var(--gold-primary);
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-light-theme);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* Local Karaikudi Chettinad Section */
.chettinad-section {
  background: linear-gradient(135deg, #f7f4ed 0%, #fdfbf7 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 90px 0;
}

.chettinad-frame {
  border: 2px solid var(--gold-primary);
  padding: 12px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.chettinad-img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* CTA Banner (Dark Luxury Accent) */
.cta-banner {
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.96) 0%, rgba(11, 11, 15, 0.98) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  text-align: center;
  box-shadow: var(--shadow-dark-card), var(--gold-glow);
  position: relative;
  overflow: hidden;
  color: var(--text-dark-theme);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --------------------------------------------------------------------------
   8. GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--bg-light-card);
  border: 1px solid var(--gold-border);
  color: var(--text-light-theme);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border-color: transparent;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  transition: all var(--transition-normal);
  background: var(--bg-light-card);
  box-shadow: var(--shadow-card);
}

.gallery-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

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

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

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.video-play-badge svg {
  width: 24px;
  height: 24px;
  fill: #0b0b0e;
  margin-left: 3px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 11, 15, 0.92) 0%, rgba(11, 11, 15, 0.2) 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 3;
}

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

.gallery-item-tag {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-item-title {
  font-size: 1.1rem;
  color: var(--text-dark-theme);
  font-weight: 600;
}

.gallery-admin-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.btn-admin-action {
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: 1px solid var(--gold-border);
  cursor: pointer;
}

.btn-admin-action:hover {
  background: var(--gold-primary);
  color: #000;
}

.gallery-admin-panel {
  background: var(--bg-dark-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 36px;
  color: var(--text-dark-theme);
  display: none !important;
}

.gallery-admin-panel.active {
  display: block !important;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 15, 0.96);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  object-fit: contain;
}

.lightbox-iframe {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--text-dark-muted);
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-dark-theme);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 12px;
}

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

/* --------------------------------------------------------------------------
   9. ABOUT & SERVICES PAGE SPECIFICS
   -------------------------------------------------------------------------- */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline-card {
  background: var(--bg-light-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.timeline-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.timeline-step {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-light-theme);
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail-card {
  background: var(--bg-light-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.service-detail-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(197, 155, 39, 0.16);
}

.service-detail-media {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-img {
  transform: scale(1.08);
}

.service-detail-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.service-detail-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-light-theme);
}

.service-detail-text {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   10. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-card {
  background: var(--bg-light-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

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

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-primary);
}

.info-label {
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 600;
}

.info-value {
  font-size: 1.05rem;
  color: var(--text-light-theme);
  line-height: 1.5;
}

.info-value a:hover {
  color: var(--gold-primary);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-light-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-light-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text-light-theme);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-response {
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.95rem;
}

.form-response.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25d366;
  color: #20ba5a;
}

/* --------------------------------------------------------------------------
   11. FOOTER (Obsidian Dark Luxury)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #08080b;
  color: var(--text-dark-theme);
  border-top: 1px solid var(--gold-border);
  padding: 70px 0 30px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  }
}

.footer-brand .brand-logo {
  margin-bottom: 16px;
}

.footer-about {
  color: var(--text-dark-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links a {
  color: var(--text-dark-muted);
  font-size: 0.92rem;
}

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

.footer-contact-info p {
  color: var(--text-dark-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-info a {
  color: var(--text-dark-theme);
}

.footer-contact-info a:hover {
  color: var(--gold-primary);
}

/* Footer Social & Map Buttons */
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.footer-btn-ig {
  background: linear-gradient(135deg, #d6a748 0%, #c18c28 100%);
  color: #08080b !important;
  border: 1px solid var(--gold-primary);
}

.footer-btn-ig:hover {
  background: linear-gradient(135deg, #f0c366 0%, #d6a748 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 167, 72, 0.4);
}

.footer-btn-map {
  background: rgba(214, 167, 72, 0.12);
  color: var(--gold-primary) !important;
  border: 1.5px solid var(--gold-primary);
}

.footer-btn-map:hover {
  background: var(--gold-primary);
  color: #08080b !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 167, 72, 0.4);
}

.footer-btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-contact-info a:hover {
  color: var(--gold-primary);
}

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

.copyright-text {
  color: var(--text-dark-muted);
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   12. ANIMATIONS & RESPONSIVE TWEAKS
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .nav-menu,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .btn {
    width: 100%;
  }
}
