/* ==========================================
   LA DOLCE VITA - RESTAURANT ITALIEN
   ========================================== */

/* ==========================================
   1. VARIABLES CSS
   ========================================== */
:root {
  /* Couleurs principales du client */
  --primary: #C62828;
  --primary-light: #E57373;
  --primary-dark: #8E0000;
  --secondary: #FFEBEE;
  --secondary-dark: #FFCDD2;
  --accent: #388E3C;
  --accent-light: #66BB6A;
  --accent-dark: #1B5E20;

  /* Couleurs neutres */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  /* Couleurs fonctionnelles */
  --background: #FAFAFA;
  --surface: #FFFFFF;
  --text-primary: #2C2C2C;
  --text-secondary: #616161;
  --text-on-primary: #FFFFFF;
  --text-on-accent: #FFFFFF;
  --error: #D32F2F;
  --success: #388E3C;
  --warning: #F57C00;

  /* Typographie */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Espacements */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  /* Bordures */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-tooltip: 1050;
}

/* ==========================================
   2. 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.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================
   3. TYPOGRAPHIE
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

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

p {
  margin-bottom: 1rem;
}

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

/* ==========================================
   4. UTILITAIRES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* ==========================================
   5. BOUTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================
   6. LANGUAGE SWITCHER
   ========================================== */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: var(--z-fixed);
  background: var(--white);
  padding: 4px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.lang-btn {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================
   7. NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

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

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.header.scrolled .logo-text {
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  z-index: 100;
}

.hamburger {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.hamburger::before { top: -9px; }
.hamburger::after { bottom: -9px; }

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  transition: color var(--transition-fast);
  position: relative;
}

.header.scrolled .nav-menu a {
  color: var(--text-primary);
}

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

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

.nav-menu-highlight {
  color: var(--accent-light) !important;
  font-weight: 700 !important;
}

.btn-reserve {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-reserve::after {
  display: none;
}

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

/* ==========================================
   8. HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(198, 40, 40, 0.85) 0%,
    rgba(56, 142, 60, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: var(--spacing-xl);
  animation: fadeInUp 1s ease;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-title-main {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.95;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 1;
}

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

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

/* ==========================================
   9. SECTIONS COMMUNES
   ========================================== */
section {
  padding: var(--spacing-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================
   10. MENU SECTION
   ========================================== */
.menu-section {
  background: var(--gray-50);
}

.menu-search {
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
  position: relative;
}

.menu-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.menu-search input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.menu-search input:focus {
  outline: none;
  border-color: var(--primary);
}

.menu-categories {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
  padding: 0 var(--spacing-md);
}

.category-btn {
  padding: 12px 24px;
  background: var(--white);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-300);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.category-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.category-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  opacity: 1;
  animation: fadeIn 0.5s ease;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-item.fade-in {
  animation: fadeIn 0.5s ease;
}

.menu-item-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.badge-classic {
  background: linear-gradient(135deg, #FFA726, #FB8C00);
}

.badge-premium {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.badge-new {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
}

.menu-item-content {
  padding: var(--spacing-lg);
}

.menu-item-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.menu-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.dietary-icons {
  display: flex;
  gap: var(--spacing-sm);
}

.dietary-icons i {
  font-size: 1.25rem;
  color: var(--accent);
}

.menu-download {
  text-align: center;
  padding: var(--spacing-2xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.menu-download p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

/* ==========================================
   11. STORY SECTION
   ========================================== */
.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

.story-content {
  max-width: 600px;
}

.story-text p {
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

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

.value-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.value-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   12. SERVICES SECTION
   ========================================== */
.services-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-50) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-featured {
  border: 3px solid var(--accent);
  position: relative;
}

.service-card-featured::before {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.service-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.service-features {
  margin-bottom: var(--spacing-lg);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

.service-features i {
  color: var(--accent);
  font-size: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--primary);
  font-weight: 600;
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: var(--spacing-md);
}

/* ==========================================
   13. GALLERY SECTION
   ========================================== */
.gallery-section {
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-caption {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

/* ==========================================
   14. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
}

.testimonials-section .section-tag,
.testimonials-section .section-title,
.testimonials-section .section-subtitle {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-md);
  color: #FFD700;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  font-style: italic;
  opacity: 0.95;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 1.125rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ==========================================
   15. CONTACT SECTION
   ========================================== */
.contact-section {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--spacing-md);
}

.info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.info-content h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.info-content a {
  color: var(--primary);
  font-weight: 600;
}

.info-content a:hover {
  text-decoration: underline;
}

.info-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* ==========================================
   16. FORM
   ========================================== */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background: var(--white);
}

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

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

.form-error {
  display: block;
  color: var(--error);
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
  min-height: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.btn-submit {
  width: 100%;
  position: relative;
}

.btn-submit .btn-loader {
  display: none;
}

.btn-submit.loading .btn-text {
  visibility: hidden;
}

.btn-submit.loading .btn-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-info {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-md);
  margin-bottom: 0;
}

.form-message {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-3xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.form-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-message i {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
}

.form-message-success i {
  color: var(--success);
}

.form-message-error i {
  color: var(--error);
}

.form-message h3 {
  margin-bottom: var(--spacing-md);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   17. FOOTER
   ========================================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-4xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
}

.footer-text {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer-subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a,
.footer-contact a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
  display: block;
}

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

.footer-contact li {
  display: flex;
  gap: var(--spacing-md);
  color: var(--gray-400);
}

.footer-contact i {
  color: var(--primary);
  width: 20px;
  flex-shrink: 0;
}

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

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--gray-500);
}

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

.footer-legal span {
  color: var(--gray-700);
}

/* ==========================================
   18. FLOATING CTA
   ========================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 16px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.floating-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(56, 142, 60, 0.4);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(56, 142, 60, 0.3);
  }
  50% {
    box-shadow: 0 10px 40px rgba(56, 142, 60, 0.5);
  }
}

/* ==========================================
   19. RESPONSIVE
   ========================================== */
@media (max-width: 1023px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1;
  }

  .story-image img {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--spacing-xl) var(--spacing-xl);
    gap: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 90;
  }

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

  .nav-menu a {
    color: var(--text-primary) !important;
    font-size: 1.125rem;
  }

  .hero {
    height: 100svh;
  }

  .hero-content {
    padding: var(--spacing-lg);
  }

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

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

  .story-values {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
  }

  .footer-legal span {
    display: none;
  }

  .lang-switcher {
    top: 10px;
    right: 10px;
    scale: 0.9;
  }

  .floating-cta span {
    display: none;
  }
}

/* ==========================================
   20. ANIMATIONS & INTERACTIONS
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================
   21. UTILITIES
   ========================================== */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}
