/* Istanblu Hotel Ataşehir - Main Stylesheet */
/* Premium Hotel Website with Editorial Aesthetic */

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

/* ============================================
   CSS CUSTOM PROPERTIES - MANDARIN ORIENTAL INSPIRED
   ============================================ */
:root {
  /* Colors - Sophisticated Luxury Palette */
  --color-bg-default: #FFFFFF;
  --color-bg-paper: #FAFAF8;
  --color-bg-dark: #1A1A1A;
  --color-bg-charcoal: #2B2B2B;
  --color-bg-accent: #F5F5F3;
  
  --color-text-primary: #2B2B2B;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-text-inverse: #FFFFFF;
  
  --color-brand-gold: #B8956A;
  --color-brand-gold-dim: #9A7A54;
  --color-brand-gold-light: #D4BFA0;
  --color-accent-teal: #4A6B6B;
  --color-charcoal: #1A1A1A;
  
  --color-border-subtle: rgba(0, 0, 0, 0.1);
  --color-border-strong: rgba(0, 0, 0, 0.2);
  --color-border-light: rgba(255, 255, 255, 0.15);
  
  /* Typography - Elegant Luxury */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  /* Spacing */
  --container-padding: clamp(1.5rem, 5vw, 6rem);
  --section-spacing: clamp(5rem, 15vw, 10rem);
  --element-spacing: clamp(1.5rem, 5vw, 3rem);
  
  /* Shadows */
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-lifted: 0 20px 50px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Z-index */
  --z-base: 0;
  --z-content: 10;
  --z-sticky: 40;
  --z-overlay: 50;
  --z-modal: 60;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-bg-default);
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.menu-open {
  overflow: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary) !important;
  font-size: revert !important;
}

.display {
  font-size: clamp(3rem, 10vw, 6rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.01em;
  font-weight: 400 !important;
}

h1, .h1 {
  font-size: clamp(2.75rem, 8vw, 5rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  line-height: 1.1 !important;
}

h2, .h2 {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  line-height: 1.15 !important;
}

h3, .h3 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

h4, .h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body) !important;
}

.body-lg {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.body-base {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.body-sm {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.85;
}

.caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-family: var(--font-body);
}

.text-serif {
  font-family: var(--font-heading);
}

.text-accent,
.review-text {
  font-family: var(--font-accent) !important;
  font-style: italic;
  color: var(--color-text-primary) !important;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--color-brand-gold);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-spacing) 0;
}

.section-compact {
  padding: calc(var(--section-spacing) * 0.6) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* ============================================
   HEADER
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: 0.5rem 0;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 1);
  border-bottom-color: var(--color-border-subtle);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--container-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
  text-transform: uppercase;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-brand-gold);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after {
  width: 80%;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-btn {
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-text-primary);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-text-primary);
}

.btn-primary:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-strong);
}

.btn-outline:hover {
  background: var(--color-text-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-text-primary);
}

.btn-gold {
  background: var(--color-brand-gold);
  color: white;
  border: 1px solid var(--color-brand-gold);
}

.btn-gold:hover {
  background: var(--color-brand-gold-dim);
  border-color: var(--color-brand-gold-dim);
  box-shadow: 0 4px 20px rgba(184, 149, 106, 0.3);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-width: 60px;
}

.lang-btn:hover {
  background: var(--color-bg-accent);
  border-color: var(--color-text-primary);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: white;
  border: 1px solid var(--color-border-subtle);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lifted);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 100;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition-base);
}

.lang-option:hover {
  background: var(--color-bg-accent);
}

.lang-option:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 60;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: white;
  padding: 6rem 2rem 2rem;
  z-index: var(--z-overlay);
  overflow-y: auto;
  transition: right var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  padding: 0.75rem 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

/* ============================================
   HERO SECTION - LUXURY STYLE
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 var(--container-padding);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.hero-description {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Fallback for video error */
.hero-video-wrapper.video-error {
  background-image: url('https://images.unsplash.com/photo-1758193783649-13371d7fb8dd?crop=entropy&cs=srgb&fm=jpg&q=85');
  background-size: cover;
  background-position: center;
}

/* ============================================
   BUTTONS - LUXURY STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 0.8rem;
}

.btn-text {
  background: transparent;
  color: var(--color-text-primary);
  padding: 0.875rem 0;
  text-decoration: none;
  border: none;
  border-bottom: 2px solid var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  display: inline-block;
  transition: all var(--transition-base);
}

.btn-text:hover {
  color: var(--color-brand-gold);
  border-bottom-color: var(--color-brand-gold);
  transform: translateX(4px);
}

/* ============================================
   CARDS - MINIMALIST LUXURY
   ============================================ */
.card {
  background: white;
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-image {
  transform: scale(1.03);
}

.card-content {
  padding: 3rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.card-description {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  flex: 1;
  line-height: 1.8;
  font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-caption {
  color: var(--color-brand-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* Split Section */
.split-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.split-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--color-bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
  background: var(--color-brand-gold);
  color: white;
  transform: translateY(-4px);
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   BOOKING WIDGET - FLOATING STICKY
   ============================================ */
.booking-widget-section {
  background: white;
  padding: 3rem var(--container-padding);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

#elektraweb-widget-area {
  max-width: 1200px;
  margin: 0 auto;
}

/* Floating sticky reservation widget */
.floating-booking-widget {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  z-index: 200;
  width: min(420px, 92vw);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  padding: 1.5rem 1.75rem 1.75rem;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  pointer-events: auto;
}

.floating-booking-widget:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(255, 255, 255, 0.96);
}

.floating-booking-widget .fbw-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 1.1rem;
  text-align: center;
}

.floating-booking-widget .fbw-close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
}

.floating-booking-widget .fbw-close:hover {
  color: var(--color-text-primary);
}

.floating-booking-widget .fbw-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.floating-booking-widget .fbw-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.floating-booking-widget .fbw-btn-primary {
  background: var(--color-brand-gold);
  color: white;
}

.floating-booking-widget .fbw-btn-primary:hover {
  background: var(--color-brand-gold-dim);
  color: white;
}

.floating-booking-widget .fbw-btn-whatsapp {
  background: #25D366;
  color: white;
}

.floating-booking-widget .fbw-btn-whatsapp:hover {
  background: #1fba58;
  color: white;
}

.floating-booking-widget .fbw-btn-outline {
  background: transparent;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-primary);
}

.floating-booking-widget .fbw-btn-outline:hover {
  border-color: var(--color-brand-gold);
  color: var(--color-brand-gold);
}

.floating-booking-widget .fbw-divider {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.25rem 0;
}

/* Show toggle button when widget is dismissed */
.fbw-reopen-btn {
  position: fixed;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  z-index: 200;
  background: var(--color-brand-gold);
  color: white;
  border: none;
  border-radius: 2px;
  padding: 0.75rem 0.5rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.25s ease;
}

.fbw-reopen-btn:hover {
  background: var(--color-brand-gold-dim);
}

@media (max-width: 480px) {
  .floating-booking-widget {
    width: 92vw;
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

/* ============================================
   FAQ
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-brand-gold);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 0 1.5rem 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-brand-gold);
}

.contact-info-value {
  font-size: 1.125rem;
  color: var(--color-text-primary);
}

.contact-form {
  background: white;
  padding: 2rem;
  border: 1px solid var(--color-border-subtle);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-strong);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--color-text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 0.75rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border: 1px solid var(--color-border-subtle);
  margin-top: 3rem;
}

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

/* ============================================
   FOOTER - DARK ELEGANT
   ============================================ */
.main-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-brand-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-body);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 1rem;
}

.footer-section a {
  opacity: 0.7;
  transition: opacity var(--transition-base);
  font-size: 0.9rem;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--color-brand-gold-light);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-description {
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 350px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

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

.fade-in {
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.fade-in.animate-in {
  opacity: 1;
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.text-gold { color: var(--color-brand-gold); }
.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }

.bg-white { background-color: white; }
.bg-accent { background-color: var(--color-bg-accent); }
.bg-dark { background-color: var(--color-bg-dark); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
}

/* ============================================
   GLASSMORPHISM
   ============================================ */
.glass {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.glass-dark {
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lifted);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .main-header,
  .main-footer,
  .mobile-menu-btn,
  .lang-switcher,
  .menu-overlay {
    display: none !important;
  }
  
  body {
    background: white;
  }
}
