/* ==========================================================================
   SALÃO EVENTOS - PREMIER INSTITUTIONAL STYLESHEET
   Location: Cambará - Paraná | Luxury Venues & Catering
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Default Light / Metallic Gold & Luxury Dark accents */
  --bg-primary: #FAFAFA;
  --bg-secondary: #F4F1EA;
  --bg-tertiary: #EFEBE0;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-solid: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.65);
  
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --text-light: #F7F5F0;
  
  /* Metallic Gold Palette */
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #A4811F;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Champagne & Olive */
  --champagne: #F7E7CE;
  --champagne-dark: #E6D2B5;
  --olive-primary: #4A5D36;
  --olive-light: #768E5D;
  --olive-glow: rgba(74, 93, 54, 0.25);
  
  /* Neutral Dark Graphite */
  --graphite: #121212;
  --graphite-card: #1E1E1E;
  --border-color: rgba(212, 175, 55, 0.25);
  --border-subtle: rgba(0, 0, 0, 0.08);

  /* Shadows & Glass */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --glass-border: 1px solid rgba(212, 175, 55, 0.3);
  --glass-backdrop: blur(16px) saturate(180%);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Dimensions & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. DARK MODE THEME OVERRIDES
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
  --bg-primary: #0F0F0F;
  --bg-secondary: #161616;
  --bg-tertiary: #1F1F1F;
  --bg-card: rgba(26, 26, 26, 0.75);
  --bg-card-solid: #1C1C1C;
  --bg-glass: rgba(20, 20, 20, 0.7);
  
  --text-primary: #F7F5F0;
  --text-secondary: #CCCCCC;
  --text-muted: #888888;
  --text-light: #FFFFFF;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   4. CUSTOM GOLD CURSOR
   -------------------------------------------------------------------------- */
.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.1s ease;
}

.custom-cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

body.cursor-hover .custom-cursor-outline {
  width: 55px;
  height: 55px;
  background-color: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
}

@media (max-width: 991px) {
  .custom-cursor-dot, .custom-cursor-outline {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5. PRELOADER SCREEN
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: #0D0D0D;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 4px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top: 2px solid var(--gold-primary);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin-bottom: 20px;
}

.preloader-counter {
  font-family: var(--font-accent);
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   6. TYPOGRAPHY & REUSABLE UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 110px 0;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-bottom: 12px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-color);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 50px auto;
}

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

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

/* Glowing Gold Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold-gradient);
  color: #121212;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold-primary);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--gold-gradient);
  color: #121212;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   7. NAVIGATION / HEADER (MEGA MENU + STICKY)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  padding: 14px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  flex-shrink: 0;
  margin-right: 48px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-gradient);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L15 9L22 12L15 15L12 22L9 15L2 12L9 9L12 2Z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L15 9L22 12L15 15L12 22L9 15L2 12L9 9L12 2Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

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

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   7.1 HEADER TRANSPARENT STATE CONTRAST (TOP OVER HERO)
   -------------------------------------------------------------------------- */
.header:not(.scrolled) .logo span {
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: var(--gold-light);
}

.header:not(.scrolled) .theme-toggle-btn {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(18, 18, 18, 0.35);
  backdrop-filter: blur(8px);
}

.header:not(.scrolled) .mobile-nav-toggle {
  color: #FFFFFF;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-cta-btn {
  padding: 11px 24px !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.mobile-nav-cta {
  display: none;
}

/* Theme Switch Toggle Button */
.theme-toggle-btn {
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: rotate(25deg) scale(1.1);
  border-color: var(--gold-primary);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION (100VH CINEMATIC SHOWCASE)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.65) 0%, rgba(13, 13, 13, 0.45) 50%, rgba(13, 13, 13, 0.85) 100%);
  z-index: 2;
}

/* Particle Canvas Overlay */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #FFFFFF;
  max-width: 920px;
  padding: 0 20px;
  margin-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 38px;
  letter-spacing: 1px;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   9. FLOATING STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar-wrapper {
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 40px;
  background: var(--bg-card-solid);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   10. SOBRE SECTION & ANIMATED TIMELINE
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-card-solid);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  border: var(--glass-border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-img-badge i {
  font-size: 2.2rem;
  color: var(--gold-primary);
}

.about-img-badge-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.about-img-badge-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Timeline */
.timeline-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border-subtle);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold-gradient);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--gold-primary);
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-year {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.timeline-card {
  padding: 20px 24px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  border-radius: var(--radius-md);
  border: var(--glass-border);
}

/* --------------------------------------------------------------------------
   11. ESPAÇOS SHOWCASE & 3D TILT CARDS
   -------------------------------------------------------------------------- */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.space-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card-solid);
  border: var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.space-card-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.space-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
}

.space-card-body {
  padding: 28px;
}

.space-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.space-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.space-card-specs {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.space-card-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.space-card-spec-item i {
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   12. CASAMENTOS EXCLUSIVE SECTION & CHECKLIST
   -------------------------------------------------------------------------- */
.weddings-section {
  background: var(--bg-secondary);
  position: relative;
}

.weddings-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.weddings-content h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.wedding-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.wedding-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-card-solid);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-primary);
}

.wedding-step-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.wedding-checklist-card {
  padding: 36px;
  background: var(--bg-card-solid);
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.checklist-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}

.checklist-progress-fill {
  height: 100%;
  width: 30%;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
}

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

/* --------------------------------------------------------------------------
   13. BUFFET GOURMET MENU SHOWCASE
   -------------------------------------------------------------------------- */
.buffet-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.buffet-tab-btn {
  padding: 10px 24px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.buffet-tab-btn.active, .buffet-tab-btn:hover {
  background: var(--gold-gradient);
  color: #121212;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

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

.buffet-item-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--bg-card-solid);
  border-radius: var(--radius-md);
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buffet-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.buffet-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.buffet-item-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.buffet-item-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.buffet-item-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   14. DECORAÇÃO STYLES SWITCHER
   -------------------------------------------------------------------------- */
.decor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.decor-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.decor-card:hover .decor-card-img {
  transform: scale(1.1);
}

.decor-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 18, 18, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #FFFFFF;
}

.decor-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.decor-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   15. GALERIA PREMIUM (MASONRY & LIGHTBOX)
   -------------------------------------------------------------------------- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--gold-gradient);
  color: #121212;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

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

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

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

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

.gallery-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: opacity 0.4s ease;
}

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

.gallery-item-hover i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.gallery-item-hover h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.gallery-item-hover p {
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 40px;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--gold-primary);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   16. DEPOIMENTOS (TESTIMONIALS CARDS)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 36px;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

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

.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   17. SMART BUDGET CALCULATOR (ORÇAMENTO INTELIGENTE)
   -------------------------------------------------------------------------- */
.calculator-container {
  background: var(--bg-card-solid);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

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

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

.calc-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-input, .calc-select, .calc-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.calc-input:focus, .calc-select:focus, .calc-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Range Slider Styling */
.range-slider-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.calc-range {
  flex-grow: 1;
  accent-color: var(--gold-primary);
  height: 6px;
  border-radius: 3px;
  cursor: pointer;
}

.range-val-badge {
  padding: 8px 18px;
  background: var(--gold-gradient);
  color: #121212;
  font-weight: 700;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  min-width: 100px;
  text-align: center;
}

/* Checkbox Grid for Services */
.calc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.calc-checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-size: 0.88rem;
  user-select: none;
}

.calc-checkbox-card:hover, .calc-checkbox-card.checked {
  border-color: var(--gold-primary);
  background: var(--gold-gradient-subtle);
}

.calc-checkbox-card input {
  accent-color: var(--gold-primary);
}

/* Summary Box */
.calc-summary-box {
  background: var(--bg-secondary);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.summary-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.summary-breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.summary-breakdown-item span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.summary-total-price {
  background: var(--bg-card-solid);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  text-align: center;
  margin-bottom: 24px;
}

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

.summary-total-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.whatsapp-submit-btn {
  width: 100%;
  background: #25D366;
  color: #FFFFFF;
  padding: 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

/* --------------------------------------------------------------------------
   18. DIFERENCIAIS & INFRAESTRUTURA
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-box {
  padding: 36px 28px;
  text-align: center;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-dark);
  transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient);
  color: #121212;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   19. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card-solid);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.4s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px 28px;
}

/* --------------------------------------------------------------------------
   20. CONTATO & MAPA EMBED (CAMBARÁ-PR)
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

.contact-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.contact-item-link:hover {
  transform: translateX(6px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.contact-text p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.map-wrapper {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   21. FOOTER & FLOATING WHATSAPP
   -------------------------------------------------------------------------- */
.footer {
  background: var(--graphite);
  color: #F7F5F0;
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-color);
  position: relative;
}

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

.footer-brand p {
  color: #A0A0A0;
  font-size: 0.92rem;
  margin: 18px 0 24px 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #121212;
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
}

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

.footer-links a {
  color: #A0A0A0;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 0.88rem;
}

.newsletter-btn {
  padding: 12px 20px;
  background: var(--gold-gradient);
  color: #121212;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #888888;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #FF3B30;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 35px;
  width: 44px;
  height: 44px;
  background: var(--bg-card-solid);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-gradient);
  color: #121212;
  transform: translateY(-4px);
}

/* Modal Windows for Privacy & Terms */
.info-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

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

.info-modal-card {
  background: var(--bg-card-solid);
  max-width: 680px;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow-y: auto;
  border: var(--glass-border);
  position: relative;
}

.info-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid, .weddings-banner, .calc-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item:nth-child(2)::after { display: none; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .logo {
    margin-right: 0;
  }
  .header-actions .header-cta-btn {
    display: none !important;
  }
  .mobile-nav-cta {
    display: inline-flex !important;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.88rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--bg-card-solid);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  /* Mobile Header Navigation & CTA Adjustments */
  .header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 24px;
    gap: 12px;
  }

  .logo {
    font-size: 1.2rem;
    gap: 6px;
    margin-right: 0;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .header-actions {
    gap: 14px;
    margin-right: 6px;
  }

  .theme-toggle-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 0.9rem;
  }

  .mobile-nav-toggle {
    font-size: 1.5rem;
    padding: 4px 8px;
  }

  /* Mobile Section Text & Header Centering */
  .section-padding {
    padding: 60px 0;
  }

  .section-title, .section-subtitle, .section-tag {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid, .weddings-banner, .weddings-content {
    text-align: center;
  }

  .hero-content {
    text-align: center;
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 14px;
  }

  .hero-actions .btn-primary, .hero-actions .btn-secondary {
    width: 100%;
  }

  .about-features, .wedding-steps {
    text-align: left;
  }

  /* Mobile Smart Budget Calculator Form Fixes */
  .calculator-container {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .calc-form-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .calc-services-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .range-slider-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .range-val-badge {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .calc-summary-box {
    padding: 22px 16px;
    margin-top: 10px;
  }

  .summary-total-amount {
    font-size: 1.8rem;
    word-break: break-word;
  }

  .whatsapp-submit-btn {
    font-size: 0.95rem;
    padding: 14px 18px;
    width: 100%;
  }

  /* Timeline & Footer mobile fixes */
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 10px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .header-container {
    padding: 0 18px;
  }

  .logo span {
    font-size: 1.1rem;
  }

  .header-actions {
    gap: 10px;
    margin-right: 4px;
  }
}
