/* ==========================================================================
   FIRST CHOICE DENTAL CLINIC - ULTRA LUXURY STYLESHEET
   Design System Tokens, Typography, Layout & Utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette - Light Mode */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F5EE; /* Sand */
  --bg-card: #FFFFFF;
  --bg-subtle: #FAF8F5;
  
  --accent-beige: #EDE7DC;
  --accent-gold: #C5A059;
  --accent-gold-light: #E8D8B6;
  --accent-gold-dark: #9A7B39;
  --gold-gradient: linear-gradient(135deg, #DFBE7B 0%, #C5A059 50%, #9A7B39 100%);
  --gold-glow: rgba(197, 160, 89, 0.25);
  
  --text-primary: #12161A;
  --text-secondary: #4A525D;
  --text-muted: #848D99;
  --text-inverse: #FFFFFF;
  
  --border-color: rgba(197, 160, 89, 0.18);
  --border-subtle: rgba(0, 0, 0, 0.06);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(197, 160, 89, 0.25);
  --glass-shadow: 0 15px 35px -5px rgba(18, 22, 26, 0.06);
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(18, 22, 26, 0.04);
  --shadow-md: 0 12px 28px rgba(18, 22, 26, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(18, 22, 26, 0.12);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transition & Speeds */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --navbar-height: 90px;
}

/* Luxury Dark Mode Overrides */
[data-theme="dark"] {
  --bg-primary: #0A0D12;
  --bg-secondary: #121620;
  --bg-card: #181D2A;
  --bg-subtle: #1C2332;
  
  --accent-beige: #262E3F;
  --accent-gold: #E5C378;
  --accent-gold-light: #F7E7C4;
  --accent-gold-dark: #C29A45;
  --gold-gradient: linear-gradient(135deg, #F3D99B 0%, #E5C378 50%, #B88E36 100%);
  --gold-glow: rgba(229, 195, 120, 0.3);
  
  --text-primary: #F5F7FA;
  --text-secondary: #A3ADB9;
  --text-muted: #6B7787;
  --text-inverse: #0A0D12;
  
  --border-color: rgba(229, 195, 120, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --glass-bg: rgba(18, 22, 32, 0.82);
  --glass-border: rgba(229, 195, 120, 0.22);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 14px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 28px 56px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(229, 195, 120, 0.25);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Enable hardware acceleration for smooth momentum scrolling */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Custom Selection */
::selection {
  background: var(--accent-gold);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3. CONTAINER & LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1540px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Glassmorphism Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(197, 160, 89, 0.22);
  border: 1px solid var(--border-color);
  color: #2B2217;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.gold-badge i {
  color: #2B2217;
}

/* Gold Gradient Text */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #C5A059 0%, #9A7B39 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.45);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--accent-beige);
  color: var(--accent-gold-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.btn-icon-pulse {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   5. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 75px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--accent-gold);
  color: #FFF;
  border-color: var(--accent-gold);
}

/* Hamburger Button */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  box-shadow: -20px 0 50px rgba(0,0,0,0.3);
  z-index: 1005;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right var(--transition-normal);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.close-drawer-btn {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   6. FOOTER
   -------------------------------------------------------------------------- */
/* Static Footer Brand Logo (No Glow, No Animation) */
.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: none !important;
  filter: none !important;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: none !important;
  filter: none !important;
}

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 60px;
}

.footer-brand-desc {
  margin: 1.25rem 0 1.75rem 0;
  max-width: 340px;
}

/* Colorful & Glowing Social Media Buttons */
.social-icons-row {
  display: flex;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  position: relative;
  text-decoration: none;
}

/* Facebook - Vibrant Blue & Soft Neon Glow */
.social-icon-btn.social-facebook,
.social-icon-btn[aria-label="Facebook"],
.social-icon-btn[href*="facebook.com"] {
  background: #1877F2 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(24, 119, 242, 0.6) !important;
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.45) !important;
}

.social-icon-btn.social-facebook:hover,
.social-icon-btn[aria-label="Facebook"]:hover,
.social-icon-btn[href*="facebook.com"]:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.9), 0 0 32px rgba(24, 119, 242, 0.6) !important;
  filter: brightness(1.15);
}

/* Instagram - Multi-color Sunset Gradient & Neon Pink Glow */
.social-icon-btn.social-instagram,
.social-icon-btn[aria-label="Instagram"],
.social-icon-btn[href*="instagram.com"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(214, 36, 159, 0.6) !important;
  box-shadow: 0 0 12px rgba(214, 36, 159, 0.5) !important;
}

.social-icon-btn.social-instagram:hover,
.social-icon-btn[aria-label="Instagram"]:hover,
.social-icon-btn[href*="instagram.com"]:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 0 20px rgba(214, 36, 159, 0.95), 0 0 32px rgba(253, 89, 73, 0.7) !important;
  filter: brightness(1.15);
}

/* WhatsApp - Vibrant Emerald Green & Glow */
.social-icon-btn.social-whatsapp,
.social-icon-btn[aria-label="WhatsApp"],
.social-icon-btn[href*="wa.me"] {
  background: #25D366 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(37, 211, 102, 0.6) !important;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5) !important;
}

.social-icon-btn.social-whatsapp:hover,
.social-icon-btn[aria-label="WhatsApp"]:hover,
.social-icon-btn[href*="wa.me"]:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.95), 0 0 32px rgba(37, 211, 102, 0.7) !important;
  filter: brightness(1.15);
}

/* YouTube - Vibrant Crimson Red & Neon Red Glow */
.social-icon-btn.social-youtube,
.social-icon-btn[aria-label="YouTube Channel"],
.social-icon-btn[href*="youtube.com"] {
  background: #FF0000 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 0, 0, 0.6) !important;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5) !important;
}

.social-icon-btn.social-youtube:hover,
.social-icon-btn[aria-label="YouTube Channel"]:hover,
.social-icon-btn[href*="youtube.com"]:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.95), 0 0 32px rgba(255, 50, 50, 0.7) !important;
  filter: brightness(1.15);
}

.footer-heading {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent-gold);
  margin-top: 4px;
}


.footer-bottom p:first-child {
  font-size: 0.78rem !important;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 25px;
  padding-right: 80px; /* Inset padding to prevent overlap with floating action buttons */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.footer-credit {
  font-size: 0.8rem !important;
  color: var(--text-muted);
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

/* --------------------------------------------------------------------------
   7. FLOATING QUICK ACTIONS BAR
   -------------------------------------------------------------------------- */
.floating-actions-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.floating-action-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #FFF;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all var(--transition-normal);
  position: relative;
}

.floating-whatsapp {
  background: #25D366;
}

.floating-phone {
  background: var(--gold-gradient);
}

.floating-backtop {
  background: var(--bg-card);
  color: var(--accent-gold);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
}

.floating-backtop.visible {
  opacity: 1;
  visibility: visible;
}

.floating-action-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Tooltip on hover */
.floating-action-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-action-btn:hover::after {
  opacity: 1;
}

/* ==========================================================================
   SMILE GALLERY SYSTEM STYLES (gallery.html)
   ========================================================================== */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.gallery-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: var(--accent-gold) !important;
  color: #2B2217 !important;
  border-color: var(--accent-gold) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4) !important;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption-cat {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.gallery-caption-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}


/* ==========================================================================
   FAQ ACCORDION SYSTEM STYLES (faq.html)
   ========================================================================== */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.75rem;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(197, 160, 89, 0.5);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.15);
  background: var(--bg-card);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}

.faq-question i {
  color: var(--accent-gold);
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding-top 0.35s ease;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 1rem;
}
