/* ==========================================================================
   Memories World Studio - Luxury Photography & Cinematography Stylesheet
   Theme System: Pearl Ivory Light (Default) & Obsidian Gold Dark
   Owner: Niraj Shrivastava | Location: Birgaon, Raipur, Chhattisgarh
   ========================================================================== */

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

:root {
  /* Default Light Theme (Pearl Ivory, Warm Cream & Fine Gold) */
  --bg-dark: #FAFAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F2F4F8;
  --bg-section-alt: #F4F5F9;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --border-glass: rgba(184, 134, 11, 0.25);
  
  --gold-primary: #C59B27;
  --gold-light: #B8860B;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #896305 100%);
  --gold-glow: rgba(197, 155, 39, 0.20);
  
  --text-main: #252830;
  --text-heading: #111318;
  --text-muted: #4B5565;
  --text-dark: #FFFFFF;
  
  --accent-red: #E63946;
  --accent-green: #25D366;
  --accent-blue: #00B4D8;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 12px 35px rgba(197, 155, 39, 0.20);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  --hero-overlay-bg: linear-gradient(180deg, rgba(8, 10, 14, 0.75) 0%, rgba(8, 10, 14, 0.48) 45%, rgba(8, 10, 14, 0.92) 100%);
}

[data-theme="dark"] {
  /* Dark Theme (Obsidian & Gold) */
  --bg-dark: #0A0B0E;
  --bg-card: #12141A;
  --bg-card-hover: #1A1D26;
  --bg-section-alt: #0E1015;
  --bg-glass: rgba(18, 20, 26, 0.88);
  --border-glass: rgba(230, 194, 101, 0.18);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-gradient: linear-gradient(135deg, #FFE082 0%, #D4AF37 50%, #AA7C11 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  --text-main: #F0F2F5;
  --text-heading: #FFFFFF;
  --text-muted: #9BA3AF;
  --text-dark: #0A0B0E;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.2);
  
  --hero-overlay-bg: linear-gradient(180deg, rgba(10, 11, 14, 0.55) 0%, rgba(10, 11, 14, 0.95) 90%);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #C0C5D0;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #252834;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--text-heading);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.3);
}

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

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

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

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1EBE5B;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}

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

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

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

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

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-glass);
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.theme-toggle-btn:hover {
  transform: rotate(20deg) scale(1.08);
  background: var(--gold-primary);
  color: #FFFFFF;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--text-heading);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section - Cinematic Background Slider
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  background: #080A0E;
}

/* Background Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.4s;
  transform: scale(1);
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: scale(1.08);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 8s linear;
}


/* Luxury Gradient Overlay - ensures perfect readability across all screens */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.75) 0%, rgba(8, 10, 14, 0.48) 45%, rgba(8, 10, 14, 0.92) 100%),
              radial-gradient(circle at 50% 45%, transparent 20%, rgba(8, 10, 14, 0.65) 100%);
  pointer-events: none;
}

/* Centered Editorial Content */
.hero-content-center {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 15px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(18, 20, 26, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.pulse-ring {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(197, 155, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  color: #FFFFFF;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(240, 242, 245, 0.92);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 28px auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Event Highlights Pills */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(18, 20, 26, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-pill:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}

.btn-hero-cta {
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.hero-actions .btn-outline {
  color: #FFFFFF;
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(18, 20, 26, 0.55);
  backdrop-filter: blur(12px);
}

.hero-actions .btn-outline:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: #FFFFFF;
}

.hero-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: rgba(18, 20, 26, 0.7);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-whatsapp-pill:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  color: #FFFFFF;
}

.hero-whatsapp-pill i {
  color: #25D366;
  font-size: 1.35rem;
}

.hero-whatsapp-pill .online-indicator {
  width: 9px;
  height: 9px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
  animation: pulseDot 2s infinite;
}

/* Stats Counter Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 840px;
  margin: 0 auto;
}

.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.stat-item .label {
  font-size: 0.82rem;
  color: rgba(240, 242, 245, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* Hero Slide Navigation Dots */
.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
  outline: none;
}

.hero-dot.active {
  background: var(--gold-primary);
  transform: scale(1.35);
  box-shadow: 0 0 12px var(--gold-primary);
}



/* Quick Search & Filter Bar */
.filter-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 24px 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-subtle);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.filter-search-box input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.filter-search-box input:focus {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(197, 155, 39, 0.2);
}

.filter-search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 18px;
  background: var(--bg-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

[data-theme="dark"] .chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chip:hover, .chip.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  font-weight: 600;
}

/* Event Grid Section */
.events-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-subtle);
}

[data-theme="dark"] .event-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  box-shadow: var(--shadow-subtle);
}

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

.card-title {
  font-size: 1.35rem;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.card-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-section-alt);
  border-radius: 4px;
  color: var(--text-muted);
  font-weight: 500;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-card-action {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.btn-card-action:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* Dedicated SEO Categories Deep-Dive Section */
.category-seo-section {
  padding: 90px 0;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-glass);
}

.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

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

.seo-header {
  margin-bottom: 20px;
}

.seo-heading {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.seo-desc {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.7;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.sub-service-item {
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-weight: 500;
}

[data-theme="dark"] .sub-service-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sub-service-item:hover {
  background: rgba(197, 155, 39, 0.1);
  border-color: var(--gold-primary);
  color: var(--text-heading);
}

.sub-service-item i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

/* About Studio & Owner Section */
.about-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-gold);
}

.about-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.owner-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}

.owner-name {
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 700;
}

.owner-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: var(--bg-section-alt);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
}

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

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 11, 14, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-title {
  font-size: 1.2rem;
  color: #FFF;
}

.portfolio-cat {
  font-size: 0.85rem;
  color: var(--gold-primary);
}

/* Contact & Quote Form Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--border-glass);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.info-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.quote-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}

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

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(197, 155, 39, 0.2);
}

[data-theme="dark"] .form-control:focus {
  background: #181B24;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

/* Modal Popup Styles */
.modal-backdrop, .modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active, .modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card, .modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-gold);
  color: var(--text-main);
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--gold-primary);
  transform: scale(1.15);
}

/* Custom Checkbox Grid Styles */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.custom-option {
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.custom-option:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}

.custom-option input[type="checkbox"] {
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.custom-option label {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0;
}

/* Packages & Pricing Section */
.packages-section {
  padding: 90px 0;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.package-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--gold-gradient);
  color: #0A0B0E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-name {
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.package-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
  min-height: 44px;
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.package-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  display: block;
}

.package-features {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.4;
}

.package-features li i {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-top: 3px;
}

/* Testimonials / Client Reviews Section */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0A0B0E;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.review-name {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Breadcrumbs & Service Page Layout */
.service-hero {
  padding: 130px 0 60px 0;
  background: var(--bg-section-alt);
  border-bottom: 1px solid var(--border-glass);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-muted);
}

.service-grid-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding: 80px 0;
}

@media (max-width: 992px) {
  .service-grid-details {
    grid-template-columns: 1fr;
  }
}

.service-main-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.service-main-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 24px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.service-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 25px;
}

.faq-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  padding: 20px;
  transition: var(--transition);
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Footer Section */
.footer {
  background: #0B0D12;
  color: #F0F2F5;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.footer-about p {
  color: #9BA3AF;
  font-size: 0.95rem;
  margin-top: 15px;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
}

.footer-links a {
  display: block;
  color: #9BA3AF;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  color: #9BA3AF;
}

/* Responsive Navigation & Mobile styles */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-subtle);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }
}

/* Responsive Hero Styles */
@media (max-width: 992px) {
  .hero {
    padding-top: 125px;
    padding-bottom: 90px;
  }

  .slide-caption-tag {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn, .hero-whatsapp-pill {
    width: 100%;
    justify-content: center;
  }

  .slider-controls {
    bottom: 16px;
    gap: 10px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
  }

  .indicator-bar {
    padding: 4px 10px;
    font-size: 0.72rem;
  }
}

