﻿/* ===================================================
   SMOKE & GOLD - LÜKS & SADE NARGİLE LOUNGE STİLİ (GÖRSELLİ & ZENGİNLEŞTİRİLMİŞ)
   =================================================== */

:root {
  --bg-main: #0a0c10;
  --bg-surface: #12151c;
  --bg-card: rgba(20, 25, 34, 0.85);
  --bg-glass: rgba(18, 22, 30, 0.7);
  
  --primary-gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --accent-amber: #e69500;
  --text-main: #f0f3f8;
  --text-muted: #9aa3b2;
  --text-dim: #64748b;
  
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);

  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 65%, rgba(230, 149, 0, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #07080a 0%, var(--bg-main) 100%);
  background-attachment: fixed;
}

.container {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}

h1, h2, h3, h4, .brand-name {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.gold-text {
  color: var(--primary-gold);
  background: linear-gradient(135deg, #fff2be 0%, #d4af37 50%, #aa820a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary-gold);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.section-divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 12, 16, 0.75);
  border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(10, 12, 16, 0.96);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 80%);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  line-height: 1.1;
  color: #fff;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--primary-gold);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #dfbc4b 0%, #b88d1d 100%);
  color: #0d0f12;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #f0cf68 0%, #ca9e28 100%);
}

.btn-outline {
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.05);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section with Rich Visual Background */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1527661591475-527312dd65f5?auto=format&fit=crop&w=1920&q=85') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.88) 0%, rgba(10, 12, 16, 0.95) 100%);
  z-index: 1;
}

.smoke-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
  filter: blur(40px);
  animation: pulseGlow 8s infinite alternate ease-in-out;
  z-index: 2;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.3rem;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.highlight-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Section */
.section {
  padding: 6rem 0;
  position: relative;
}

/* Atmosphere Showcase Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 12, 16, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-info h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.gallery-info span {
  font-size: 0.8rem;
  color: var(--primary-gold);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.8rem;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gold);
  color: #0a0c10;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Menu Controls */
.menu-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.search-box {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.9rem 1.4rem 0.9rem 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.cat-btn {
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-weight: 500;
}

.cat-btn:hover {
  color: #fff;
  border-color: var(--primary-gold);
}

.cat-btn.active {
  background: var(--primary-gold);
  color: #0a0c10;
  border-color: var(--primary-gold);
  font-weight: 600;
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* Menu Grid & Cards with IMAGES */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(212, 175, 55, 0.15);
}

.menu-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #11141a;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.08);
}

.menu-badge-corner {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.menu-price-corner {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.menu-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.menu-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-amber {
  background: rgba(230, 149, 0, 0.15);
  color: #ffaa1d;
  border: 1px solid rgba(230, 149, 0, 0.3);
}

.badge-dark {
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.badge-bronze {
  background: rgba(184, 115, 51, 0.15);
  color: #df9e62;
  border: 1px solid rgba(184, 115, 51, 0.3);
}

.quick-order-btn {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.quick-order-btn:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

/* Reservation & Contact */
.reservation-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.reservation-wrapper::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-control {
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.form-notice {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.reservation-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border-glass);
  padding-left: 2.5rem;
}

.info-box {
  margin-bottom: 2rem;
}

.info-title {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.info-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.info-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Map */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(85%) invert(90%) contrast(85%);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(20%) contrast(95%);
}

/* Footer */
.footer {
  background: #07080b;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.2rem 0;
  max-width: 340px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--primary-gold);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-gold);
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reservation-wrapper {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .reservation-info {
    border-left: none;
    border-top: 1px solid var(--border-glass);
    padding-left: 0;
    padding-top: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgba(10, 12, 16, 0.98);
    flex-direction: column;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-gold);
    gap: 1.5rem;
  }
  .nav-menu.open {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   MÜŞTERİ YORUMLARI KAYAR SLIDER STİLLERİ
   =================================================== */
.reviews-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 2rem;
}

.reviews-track {
  display: flex;
  gap: 1.8rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
  user-select: none;
}

.reviews-track:active {
  cursor: grabbing;
}

.review-slide-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.review-slide-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.review-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(212, 175, 55, 0.12);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfbc4b 0%, #b88d1d 100%);
  color: #0a0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.reviewer-info h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.review-card-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-style: italic;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: #0a0c10;
  box-shadow: 0 0 15px var(--gold-glow);
}

@media (max-width: 992px) {
  .review-slide-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  .review-slide-card {
    flex: 0 0 100%;
  }
}
