/*
 * Silver Horizon Budapest - Landing Page Styles
 * Mobile-first responsive design with desert/canyon aesthetic
 * Color palette: terracotta, sand, amber
 */

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */

:root {
  /* Colors */
  --background: #138526;
  --foreground: #2c1810;
  --card: #138526;
  --card-foreground: #2c1810;
  --popover: #ffffff;
  --popover-foreground: #2c1810;
  --primary: #c7692f;
  --primary-foreground: #ffffff;
  --secondary: #f4e8d9;
  --secondary-foreground: #2c1810;
  --muted: #f0e6d9;
  --muted-foreground: #6b5445;
  --accent: #e8a870;
  --accent-foreground: #2c1810;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5d5c1;
  --input: #f4e8d9;
  --ring: #c7692f;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(44, 24, 16, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(44, 24, 16, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(44, 24, 16, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-index */
  --z-modal: 1000;
  --z-header: 100;
  --z-sticky: 50;
}

[data-theme="dark"] {
  --background: #1a0f08;
  --foreground: #f4e8d9;
  --card: #2c1810;
  --card-foreground: #f4e8d9;
  --popover: #2c1810;
  --popover-foreground: #f4e8d9;
  --primary: #c7692f;
  --primary-foreground: #ffffff;
  --secondary: #3d2817;
  --secondary-foreground: #f4e8d9;
  --muted: #4a3426;
  --muted-foreground: #b89d85;
  --accent: #8b4d1f;
  --accent-foreground: #f4e8d9;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #4a3426;
  --input: #3d2817;
  --ring: #c7692f;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

input, textarea, select {
    max-width: 100%;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
  min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
  color: var(--foreground);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 var(--space-md) 0;
}

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

a:hover {
  color: var(--accent);
}

ul, ol {
  margin: 0 0 var(--space-md) 0;
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.section-padding {
  padding: var(--space-3xl) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary-small {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-secondary-small {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* ============================================
   MODALS
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 15, 8, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-content {
  background-color: var(--card);
  color: var(--card-foreground);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.age-modal .modal-icon {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.age-modal h2 {
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

.age-modal p {
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.modal-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn {
    width: 100%;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-top: 2px solid var(--border);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: calc(var(--z-modal) - 1);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
  }
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  z-index: var(--z-header);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .header.scrolled {
  background-color: rgba(26, 15, 8, 0.95);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-md);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  white-space: nowrap;
}

.nav-desktop {
  display: none;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: transparent;
  color: var(--foreground);
  transition: all var(--transition-fast);
  padding: 0;
}

.theme-toggle:hover {
  background-color: var(--secondary);
  transform: rotate(15deg);
}

.theme-icon {
  width: 24px;
  height: 24px;
}

.sun-icon {
  display: block;
}

.moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

[data-theme="dark"] .moon-icon {
  display: block;
}

.btn-cta {
  display: none;
}

@media (min-width: 768px) {
  .btn-cta {
    display: inline-flex;
  }
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: transparent;
}

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

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.nav-mobile.active {
  transform: translateX(0);
}

.mobile-nav-content {
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.mobile-nav-list li {
  margin-bottom: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.mobile-nav-list a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-fast);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.mobile-nav-list a:hover {
  color: var(--primary);
  padding-left: var(--space-sm);
}

.btn-mobile-cta {
  margin-top: var(--space-lg);
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 15, 8, 0.3) 0%,
    rgba(26, 15, 8, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: var(--space-xl) 0;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--space-xl);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: #ffffff;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   CASINO SECTION
   ============================================ */

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

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
  .section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.section-image {
  min-width: 0;
}

.section-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.section-img:hover {
  transform: scale(1.02);
}

.section-content {
  min-width: 0;
}

.section-title {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.section-description {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.feature-item {
  padding: var(--space-md);
  background-color: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-icon {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-bottom: var(--space-lg);
}

.info-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.info-box p {
  margin: 0;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.badge {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-width: 0;
}

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

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

/* ============================================
   RESTAURANT SECTION
   ============================================ */

.restaurant-section {
  background-color: var(--card);
}

.restaurant-hero {
  margin-bottom: var(--space-2xl);
  min-width: 0;
}

.restaurant-hero-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
}

.features-grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--background);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

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

.feature-icon-large {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.feature-card-text {
  color: var(--muted-foreground);
  margin: 0;
}

.chef-quote {
  text-align: center;
  margin: var(--space-3xl) auto;
  max-width: 800px;
  padding: var(--space-xl);
  background-color: var(--background);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
}

.chef-quote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.chef-quote footer {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--muted-foreground);
}

.cta-buttons-center {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.dishes-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.dish-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 0;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform var(--transition-slow);
}

.dish-item:hover .dish-img {
  transform: scale(1.05);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background-color: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.star {
  margin-right: 2px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.value-proposition {
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.value-proposition h3 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: #ffffff;
}

.value-proposition p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */

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

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.experience-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .experience-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  
  .experience-reverse {
    direction: rtl;
  }
  
  .experience-reverse > * {
    direction: ltr;
  }
}

.experience-image {
  min-width: 0;
}

.experience-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-content {
  min-width: 0;
}

.experience-title {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.experience-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.testimonials-experiences {
  max-width: 800px;
  margin: var(--space-2xl) auto;
}

.testimonial-slide {
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-slide blockquote {
  margin: 0;
}

.testimonial-slide p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-small-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.cta-box {
  text-align: center;
  padding: var(--space-2xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--muted-foreground);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background-color: var(--card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.map-container {
  min-width: 0;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
  min-width: 0;
  max-width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  min-width: 0;
}

.location-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

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

.info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--background);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-width: 0;
}

.info-item .info-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--foreground);
}

.info-item p {
  margin: 0;
  color: var(--muted-foreground);
  overflow-wrap: break-word;
}

.info-item a {
  color: var(--primary);
  transition: color var(--transition-fast);
  word-break: break-all;
}

.info-item a:hover {
  color: var(--accent);
}

.transport-info {
  padding: var(--space-lg);
  background-color: var(--background);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.transport-info h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

.transport-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .transport-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.transport-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  min-width: 0;
}

.transport-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.transport-item span {
  font-size: 0.875rem;
  overflow-wrap: break-word;
}

.form-container {
  min-width: 0;
}

.form-container h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  color: var(--foreground);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 500;
  color: var(--foreground);
}

.required {
  color: var(--destructive);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--input);
  color: var(--foreground);
  transition: border-color var(--transition-fast);
  max-width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(199, 105, 47, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.success-message {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

[data-theme="dark"] .success-message {
  background-color: #14532d;
  border-color: #15803d;
  color: #86efac;
}

.message-icon {
  flex-shrink: 0;
}

.message-icon svg {
  color: currentColor;
}

.trust-signals {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   LEGAL SECTION
   ============================================ */

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-title-center {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--primary);
}

.legal-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.legal-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.legal-block {
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: all var(--transition-normal);
}

.legal-block:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.legal-icon {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.legal-block h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

.legal-block p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.legal-block ul {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.legal-block a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

.legal-block a:hover {
  color: var(--accent);
}

.disclaimer-box {
  padding: var(--space-lg);
  background-color: #fef2f2;
  border: 2px solid #fca5a5;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

[data-theme="dark"] .disclaimer-box {
  background-color: #450a0a;
  border-color: #dc2626;
}

.disclaimer-icon {
  color: #dc2626;
  flex-shrink: 0;
}

.disclaimer-box p {
  margin: 0;
  color: #7f1d1d;
  font-weight: 500;
}

[data-theme="dark"] .disclaimer-box p {
  color: #fca5a5;
}

.seo-content {
  padding: var(--space-lg);
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.seo-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

.seo-content a {
  color: var(--primary);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--card);
  border-top: 2px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  }
}

.footer-column {
  min-width: 0;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.footer-tagline {
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  color: var(--foreground);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--muted-foreground);
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-trust-badges {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.trust-badge svg {
  color: var(--primary);
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.age-restriction {
  font-weight: 600;
  color: var(--primary);
}

.footer-legal-text {
  text-align: center;
  padding: var(--space-md) 0;
  margin-bottom: var(--space-lg);
}

.footer-legal-text p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-legal-text a {
  color: var(--primary);
  font-weight: 500;
}

.footer-policies {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 100%;
}

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

.policy-section {
  padding: var(--space-lg);
  background-color: var(--background);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-width: 0;
}

.policy-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-indicator {
    animation: none;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .cookie-banner,
  .modal-overlay,
  .scroll-to-top,
  .mobile-menu-toggle,
  .theme-toggle {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}