﻿/*
  Ardıç Cafe Restorant — Elegant Nightlife Theme
  Colors: Orange #FF7A00, Dark #1A1A1A, Charcoal #121212, Copper #C87F3A
  Fonts: Poppins (primary), Raleway (display)
*/

/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
  /* Colors */
  --orange: #FF7A00;
  --dark: #1A1A1A;
  --charcoal: #121212;
  --copper: #C87F3A;
  --muted: #999;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --success: #10b981;
  --error: #ef4444;

  /* Spacing System - Tutarlı oranlar */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Font Sizes - Orantılı ölçekler */
  --font-xs: 0.75rem;    /* 12px */
  --font-sm: 0.875rem;   /* 14px */
  --font-base: 1rem;     /* 16px */
  --font-lg: 1.125rem;   /* 18px */
  --font-xl: 1.25rem;    /* 20px */
  --font-2xl: 1.5rem;    /* 24px */
  --font-3xl: 2rem;      /* 32px */
  --font-4xl: 2.5rem;    /* 40px */
}

:root[data-theme='light'] {
  --dark: #f5f5f7;
  --charcoal: #ffffff;
  --surface: rgba(0, 0, 0, 0.04);
  --surface-hover: rgba(0, 0, 0, 0.08);
  --border: rgba(0, 0, 0, 0.12);
  --muted: #666;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #f2f2f2;
  background-color: var(--charcoal);
  line-height: 1.6;
  position: relative;
}

/* ========================================
   SAYFA BAZLI RENK UYUMU
   Sayfaya göre vurgu ve arka plan tonlarını değiştirir.
   html[data-page="..."] seviyesinde sadece değişkenleri override eder.
   ======================================== */
html[data-page='home'] {
  /* Varsayılan tema (turuncu vurgu) - değişiklik yok, referans için bırakıldı */
}

html[data-page='menu'] {
  /* Menü sayfası: daha sıcak bakır vurgu ve yumuşak yüzeyler */
  --orange: var(--copper); /* butonlar ve link vurgu rengi */
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
}

html[data-page='offline'] {
  /* Offline sayfası: kontrastı bir miktar azalt, uyarı için turuncu kalsın */
  --charcoal: #151515;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
}

/* Işık temada sayfa varyasyonları */
html[data-theme='light'][data-page='menu'] {
  --orange: #b36a2f; /* light modda bakırın bir ton koyusu */
}

:root[data-theme='light'] body {
  color: #1a1a1a;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}

.section-head {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section-head h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  font-size: clamp(var(--font-2xl), 4vw, var(--font-4xl));
  letter-spacing: -0.5px;
}

.section-head p {
  color: #cfcfcf;
  margin: 0;
  font-size: var(--font-lg);
}

:root[data-theme='light'] .section-head p {
  color: #555;
}

.text-accent {
  color: var(--orange);
}

.muted {
  color: #cfcfcf;
}

:root[data-theme='light'] .muted {
  color: #666;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* Glass effect */
.glass {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

:root[data-theme='light'] .site-header {
  background: rgba(255, 255, 255, 0.8);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.9;
}

:root[data-theme='light'] .brand {
  color: #111;
}

.brand .logo {
  filter: drop-shadow(0 4px 10px rgba(255, 122, 0, 0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

:root[data-theme='light'] .nav-links a {
  color: #333;
}

:root[data-theme='light'] .nav-links a:hover {
  color: #000;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 1.4rem;
}

:root[data-theme='light'] .nav-toggle {
  color: #111;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
  transform: scale(1.05);
}

:root[data-theme='light'] .icon-btn {
  color: #111;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px var(--space-md);
  border-radius: 20px;
  border: 1px solid var(--border);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  font-weight: 500;
  font-size: var(--font-sm);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #e46700);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: var(--surface);
}

.btn-ghost:hover {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ========================================
   HERO - Modern Design
   ======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 122, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 127, 58, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.3) 0%, rgba(18, 18, 18, 0.7) 50%, rgba(18, 18, 18, 0.95) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 1000px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--orange);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-md);
  letter-spacing: -2px;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange), #ffd700, var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   ABOUT
   ======================================== */
.about .grid-2 {
  grid-template-columns: 1.2fr 1fr;
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.about-text h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 20px;
}

.about-text p {
  margin: 0 0 var(--space-sm);
  line-height: 1.7;
  color: #cfcfcf;
}

:root[data-theme='light'] .about-text p {
  color: #555;
}

.badges {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: var(--space-xs);
  align-items: center;
  font-size: 0.9rem;
}

.badge i {
  color: var(--orange);
  font-size: 1.1rem;
}

/* ========================================
   EVENTS & FORMS
   ======================================== */
.events .grid-2 {
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.feature-list li {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
  margin-bottom: 12px;
  line-height: 1.6;
}

.feature-list i {
  color: var(--orange);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.card {
  padding: var(--space-md);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 var(--space-sm);
}

.form-grid {
  display: grid;
  gap: var(--space-xs);
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 500;
  font-size: 0.85rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

:root[data-theme='light'] .form-grid input,
:root[data-theme='light'] .form-grid select,
:root[data-theme='light'] .form-grid textarea {
  color: #111;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.form-grid textarea {
  resize: vertical;
  min-height: 70px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.form-msg {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  margin-top: 8px;
  display: none;
}

.form-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
}

.form-msg.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: var(--space-md);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-caption i {
  font-size: 18px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.lightbox-caption {
  color: white;
  font-size: 16px;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius);
  max-width: 600px;
}

/* Backward compatibility */
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* QR Modal (generic modal styles) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal .modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

#qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.qrcode-loading {
  display: grid;
  place-items: center;
  gap: 8px;
  color: #dcdcdc;
}

.qrcode > canvas {
  width: 200px !important;
  height: 200px !important;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* ========================================
   CONTACT
   ======================================== */
.contact .grid-2 {
  margin-bottom: var(--space-lg);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hours li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hours li:last-child {
  border-bottom: none;
}

.socials {
  display: flex;
  gap: var(--space-xs);
  margin: 24px 0;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

:root[data-theme='light'] .socials a {
  color: #111;
}

.socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}

.map {
  padding: 0;
  overflow: hidden;
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  margin-top: 32px;
}

.contact-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-note h3 {
  margin-top: 0;
}

.contact-note p {
  line-height: 1.7;
  color: #cfcfcf;
}

:root[data-theme='light'] .contact-note p {
  color: #555;
}

/* ========================================
   COMMENTS
   ======================================== */
.comments {
  background: linear-gradient(180deg, transparent, rgba(255, 122, 0, 0.03));
  position: relative;
  overflow: hidden;
}

.comments::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
  pointer-events: none;
}

/* Google Reviews Widget */
.google-reviews-widget {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  position: relative;
}

.google-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
}

.google-info {
  flex: 1;
}

.google-info h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.google-rating .stars {
  color: #fbbf24;
  font-size: 1.3rem;
}

.rating-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
}

.rating-max {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

.toggle-reviews-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toggle-reviews-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.toggle-reviews-btn i {
  transition: transform 0.3s ease;
}

:root[data-theme='light'] .toggle-reviews-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #111;
}

.reviews-header {
  padding: var(--space-xl);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.reviews-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.1), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.reviews-toggle {
  text-align: center;
  margin: 24px 0;
}

.reviews-toggle .btn {
  min-width: 280px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.reviews-toggle .btn:hover {
  transform: scale(1.05);
}

.reviews-header-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.google-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 32px rgba(66, 133, 244, 0.6);
    transform: scale(1.05);
  }
}

.reviews-info {
  flex: 1;
}

.reviews-info h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root[data-theme='light'] .reviews-info h3 {
  background: linear-gradient(135deg, #111, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}

:root[data-theme='light'] .rating-text {
  color: #111;
}

.rating-text strong {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}

.review-count {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-count::before {
  content: '👥';
  font-size: 1.1rem;
}

.reviews-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Google Reviews Preview - Instagram Tarzı */
.google-reviews-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.review-card {
  padding: var(--space-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.review-card:hover::before {
  transform: translateX(0);
}

.review-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 122, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: 16px;
  position: relative;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

:root[data-theme='light'] .reviewer-name {
  color: #111;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 1rem;
}

.review-source {
  position: absolute;
  top: 0;
  right: 0;
  color: #4285f4;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.review-card:hover .review-source {
  opacity: 1;
  transform: scale(1.1);
}

.review-text {
  margin: 16px 0;
  line-height: 1.8; /* Bu değer korunuyor */
  color: #cfcfcf;
  font-size: 1rem;
  position: relative;
  padding-left: 28px;
  padding-top: 4px;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0; /* Bu değer korunuyor */
  color: var(--orange);
  font-family: Georgia, serif;
  opacity: 0.5;
}

:root[data-theme='light'] .review-text {
  color: #444;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: normal;
}

.review-date::before {
  content: '📅';
  font-size: 1rem;
}

.reviews-footer {
  text-align: center;
  padding: 32px 0;
}

/* Site Comments - Modern Instagram Stil */
.comment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.comment-item {
  padding: var(--space-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--copper));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.comment-item:hover::before {
  transform: translateX(0);
}

.comment-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 122, 0, 0.3);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: 16px;
}

.comment-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--copper));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.comment-meta {
  flex: 1;
}

.comment-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

:root[data-theme='light'] .comment-name {
  color: #111;
}

.comment-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.comment-date::before {
  content: '🕒';
  font-size: 1rem;
}

.comment-message {
  margin: 0;
  line-height: 1.8;
  color: #cfcfcf;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}

.comment-message::before {
  content: '💬';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

:root[data-theme='light'] .comment-message {
  color: #444;
}

.no-comments,
.error-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}

.no-comments::before {
  content: '💭';
  display: block;
  font-size: 3rem;
  margin-bottom: 16px;
}

.error-message {
  color: var(--error);
}

.error-message::before {
  content: '⚠️';
  display: block;
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-socials {
  display: flex;
  gap: var(--space-xs);
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

:root[data-theme='light'] .footer-socials a {
  color: #111;
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e46700);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.5);
}

/* ========================================
   MENU PAGE STYLES
   ======================================== */

/* Menü sayfası için profesyonel ve modern tasarım geliştirmeleri */

/* --- Kategori Banner (örnekteki gibi) --- */
.menu-category {
  margin-bottom: 48px;
}

.menu-category-header {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: box-shadow .3s ease, transform .2s ease;
}

.menu-category-header.banner {
  position: relative;
  overflow: hidden;
  padding: 28px 28px;
  border-radius: 24px;
  /* Mor temayı turuncu/bakır ambiyansa dönüştür */
  background: linear-gradient(135deg, rgba(255, 122, 0, .88), rgba(200, 127, 58, .5));
  box-shadow: 0 12px 30px rgba(255, 122, 0, .25);
}

.menu-category-header.banner .menu-category-title h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  margin: 0 0 6px 0;
}

.menu-category-header.banner .menu-category-count {
  color: #f2eaff;
  background: rgba(255, 255, 255, .14);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.menu-category-header.banner .menu-category-visual {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 24vw, 280px);
  height: clamp(100px, 16vw, 170px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.menu-category-header.banner .menu-category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-category-header.banner .menu-category-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.35);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.menu-category.active .menu-category-header.banner {
  box-shadow: 0 16px 40px rgba(255, 122, 0, .35);
}

/* --- Ürün Liste Düzeni (örnekteki gibi) --- */
.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.menu-list-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 18px 6px 18px 6px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.menu-list-item:last-child {
  border-bottom: none;
}

.menu-list-item-image {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  background: #1b1b1b;
}

.menu-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-list-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.menu-list-item-name {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.menu-list-item-badge {
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  /* Varsayılan rozet rengini turuncu tona çek */
  background: rgba(255, 122, 0, .18);
  color: #ffe2cc;
}

.menu-list-item-badge.new { background: rgba(25, 181, 114,.18); color: #b9f6db; }
.menu-list-item-badge.popular { background: rgba(255, 122, 0,.18); color: #ffd9bf; }

.menu-list-item-size {
  font-size: 13px;
  color: #cfc7d9;
  margin-left: 6px;
}

.menu-list-item-description {
  margin: 6px 0 10px 0;
  color: #eae6f6;
  opacity: .9;
}

.menu-list-item-link {
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 122, 0, .35);
  display: inline-block;
  padding-bottom: 2px;
}

.menu-list-item-link:hover { color: #ff9233; border-bottom-color: rgba(255,122,0,.55); }

.menu-list-item-price-wrapper { align-self: center; }
.menu-list-item-price { font-weight: 800; font-size: 18px; }
.menu-list-item-price.muted { opacity: .6; }

@media (max-width: 900px) {
  .menu-category-header.banner .menu-category-visual { width: 180px; height: 120px; right: 12px; }
}

@media (max-width: 640px) {
  .menu-category-header.banner { padding-right: 16px; }
  .menu-category-header.banner .menu-category-visual { position: relative; transform: none; top: auto; right: auto; width: 100%; height: 150px; margin-top: 14px; }
  .menu-category-header.banner { display: block; }
  .menu-list-item { grid-template-columns: 68px 1fr; }
  .menu-list-item-price-wrapper { grid-column: 2 / 3; justify-self: end; }
}

/* Menü Başlıkları */
.menu-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.3), rgba(18, 18, 18, 0.95));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.menu-hero h1 {
  font-size: clamp(60px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

/* Menü Kontrolleri */
.menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.menu-search-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}

/* Arama kutusu */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 44px 10px 40px; /* sol: ikon, sağ: temizle butonu */
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.search-box:hover {
  background: var(--surface-hover);
}

.search-box:has(input:focus) {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--orange) 25%, transparent);
}

.search-box i.ri-search-line {
  position: absolute;
  left: 14px;
  font-size: 18px;
  color: var(--muted);
  pointer-events: none;
}

#menuSearch {
  appearance: none;
  outline: none;
  border: none;
  background: transparent;
  color: inherit;
  width: 100%;
  font-size: var(--font-base);
}

#menuSearch::placeholder {
  color: color-mix(in oklab, var(--muted) 80%, transparent);
}

/* Temizle butonu */
.clear-search {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.clear-search:hover {
  background: var(--surface-hover);
  color: #fff;
}

.clear-search.visible {
  opacity: 1;
  pointer-events: auto;
}

.clear-search:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--orange) 45%, transparent);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .menu-search-wrapper { max-width: 100%; }
  .search-box { padding-right: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .search-box, .clear-search { transition: none; }
}

/* Menü Sekmeleri */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: 60px;
}

.menu-tab {
  padding: 18px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: 20px;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.menu-tab:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--orange), #e46700);
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.6);
}

/* Menü Kartları */
.menu-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.menu-card img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card img:hover {
  transform: scale(1.05);
}

.menu-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.menu-card p {
  font-size: 1.1rem;
  color: #dcdcdc;
  line-height: 1.8;
}

.menu-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
}

/* Menü Kategorileri */
.menu-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-category-header:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.menu-category.active .menu-category-header {
  background: rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--orange);
}

/* ========================================
   REVIEWS SECTION - Modern Design
   ======================================== */
.toggle-section {
  text-align: center;
  margin: var(--space-lg) 0;
}

.toggle-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: var(--surface-hover);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.toggle-btn.active {
  background: rgba(255, 122, 0, 0.1);
  border-color: var(--orange);
}

.reviews-list-container {
  margin: var(--space-lg) 0;
}

/* Google CTA Centered Button */
.google-cta-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--space-xl) 0;
  padding: var(--space-md) 0;
}

.google-cta-centered .btn {
  min-width: 320px;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.review-card {
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.review-avatar.site {
  background: linear-gradient(135deg, var(--orange), var(--copper));
}

.review-meta {
  flex: 1;
}

.review-meta strong {
  display: block;
  margin-bottom: 4px;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.google-badge {
  width: 28px;
  height: 28px;
  background: #4285f4;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}

.review-content {
  color: #cfcfcf;
  line-height: 1.7;
  margin: var(--space-sm) 0;
}

.review-time {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  margin: var(--space-xl) 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--orange);
}

/* Site Reviews Section */
.site-reviews-section {
  margin-top: var(--space-2xl);
}

.site-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.site-reviews-header h3 {
  margin: 0;
  flex: 1;
}

/* Comment Form Wrapper */
.comment-form-wrapper {
  max-width: 700px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg);
}

.comment-form-wrapper .comment-form-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.comment-form-wrapper .form-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.comment-form-wrapper .form-title h4 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.comment-form-wrapper .form-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.comment-form .form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.char-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ========================================
   CONTACT SECTION - Modern Design
   ======================================== */
.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contact-info-modern {
  padding: var(--space-lg);
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

.contact-info-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-detail-item {
  display: flex;
  gap: var(--space-sm);
}

.contact-detail-item > i {
  font-size: 1.3rem;
  color: var(--orange);
  margin-top: 4px;
}

.contact-detail-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-detail-item p {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--orange);
  text-decoration: none;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  color: var(--success);
  font-size: 0.8rem;
  margin-top: 8px;
}

.badge-closed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 999px;
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 8px;
}

.contact-social-row {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: all 0.3s ease;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.maps {
  background: #4285f4;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
}

.btn-whatsapp:hover {
  background: #128c7e !important;
  border-color: #128c7e !important;
}

.btn-full {
  width: 100%;
}

.contact-map-modern {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.map-container {
  flex: 1;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-sm);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.map-link-btn:hover {
  color: var(--orange);
}

/* Contact Bottom Modern */
.contact-bottom-modern {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
}

.contact-form-modern {
  padding: var(--space-lg);
}

.form-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-header .form-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
}

.form-header h3 {
  margin: 0;
}

.modern-form .form-group {
  margin-bottom: var(--space-md);
}

.modern-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.modern-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-info-box-modern {
  padding: var(--space-lg);
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.info-box-header i {
  font-size: 1.5rem;
  color: var(--orange);
}

.info-box-header h3 {
  margin: 0;
}

.info-box-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--orange);
  margin-top: 2px;
}

.info-item p {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}

/* Responsive Contact */
@media (max-width: 900px) {
  .contact-modern-grid {
    grid-template-columns: 1fr;
  }

  .contact-bottom-modern {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE - Hero & General
   ======================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-sm);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: var(--space-sm) 0;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .site-header .nav {
    height: 60px;
  }

  .nav-links {
    top: 60px;
  }

  .brand .logo {
    width: 100px;
    height: auto;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }
}
