/* ===================================================
   NB Masaj Salonu — Ana CSS
   Tema: Lüks & Organik | Koyu Altın + Derin Yeşil
   =================================================== */

:root {
  --gold: #b8975a;
  --gold-light: #d4b483;
  --gold-dark: #8a6e3e;
  --dark: #1a1a18;
  --dark2: #252520;
  --dark3: #2e2e28;
  --cream: #f5f0e8;
  --cream2: #ede6d6;
  --white: #ffffff;
  --text: #3a3830;
  --text-muted: #7a7060;
  --green: #2d4a3e;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 60px rgba(0,0,0,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTION ---- */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.section-header h2 em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--text-muted); margin-top: 16px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,151,90,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 0.83rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ---- FAB BUTTONS ---- */
.fab-btn {
  position: fixed;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  z-index: 9000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.fab-btn:hover { transform: scale(1.1); }
.fab-whatsapp { bottom: 28px; right: 24px; background: #25D366; color: #fff; }
.fab-call { bottom: 96px; right: 24px; background: var(--gold); color: #fff; }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; width: 100%; z-index: 8000;
  transition: var(--transition);
  padding: 18px 0;
}
#header.scrolled {
  background: rgba(26,26,24,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-nb {
  width: 46px; height: 46px;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  border-radius: 8px;
  letter-spacing: 1px;
}
.logo-text span { display: block; color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; line-height: 1.2; }
.logo-text small { color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.12em; }

#mainNav ul { display: flex; align-items: center; gap: 8px; }
#mainNav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 6px;
}
#mainNav ul li a:hover { color: var(--gold-light); }
.nav-randevu-btn {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
}
.nav-randevu-btn:hover { background: var(--gold-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,18,0.82) 0%, rgba(26,26,18,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
  animation: fadeInUp 1s ease;
}
.hero-pre {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-desc { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; align-items: center; gap: 40px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px 48px;
  border-radius: 60px;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--gold-light); font-weight: 700; }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.scroll-down {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--gold);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker { display: inline-block; animation: ticker 30s linear infinite; }
.ticker span { font-size: 0.82rem; letter-spacing: 0.06em; }

/* ===== SERVICES ===== */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-img { position: relative; overflow: hidden; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-badge-gold { background: #8a6e3e; }

.service-body { padding: 24px; }
.service-icon {
  width: 46px; height: 46px;
  background: var(--cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.service-info {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.service-info span { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.service-info span i { color: var(--gold); }

/* ===== ABOUT ===== */
.about-section { background: var(--cream2); }
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: -32px; right: -32px;
  width: 220px; height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--cream2);
  box-shadow: var(--shadow-lg);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute; top: 32px; left: -24px;
  background: var(--gold);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(184,151,90,0.4);
}
.about-badge-float strong { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-float span { font-size: 0.78rem; opacity: 0.85; }

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.about-content h2 em { color: var(--gold); font-style: italic; }
.about-content p { color: var(--text-muted); margin-bottom: 18px; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.feature { display: flex; align-items: flex-start; gap: 14px; }
.feature > i {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.feature div strong { display: block; color: var(--dark); font-size: 0.92rem; margin-bottom: 2px; }
.feature div span { color: var(--text-muted); font-size: 0.83rem; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark); }
.gallery-section .section-header h2 { color: var(--white); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(184,151,90,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--cream); }
.rating-summary { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 12px; }
.rating-stars { color: var(--gold); font-size: 1.1rem; }
.rating-summary strong { font-size: 1.1rem; color: var(--dark); }
.rating-summary span { color: var(--text-muted); font-size: 0.88rem; }

.reviews-slider { display: flex; gap: 24px; overflow-x: hidden; position: relative; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-top img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); }
.review-top strong { display: block; color: var(--dark); margin-bottom: 4px; }
.stars { color: var(--gold); font-size: 0.8rem; }
.review-card p { color: var(--text-muted); font-size: 0.9rem; font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.review-date { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.04em; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-controls button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold);
  background: none; color: var(--gold);
  cursor: pointer; font-size: 0.9rem;
  transition: var(--transition);
}
.slider-controls button:hover { background: var(--gold); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream2); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* ===== CTA ===== */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,18,0.88), rgba(45,74,62,0.85)); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 100px 24px; }
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; line-height: 1.2; margin-bottom: 18px; }
.cta-content h2 em { color: var(--gold-light); font-style: italic; }
.cta-content p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark); }
.contact-section .section-label { color: var(--gold-light); }
.contact-section h2 { color: var(--white); }
.contact-section h2 em { color: var(--gold-light); }
.contact-container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item > i {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(184,151,90,0.15);
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
}
.contact-item div strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 3px; }
.contact-item div span, .contact-item div a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.contact-item div a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.social-links a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
.footer { background: var(--dark2); color: rgba(255,255,255,0.65); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding: 72px 0 48px; }
.footer-brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.8; }
.footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 500; margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.88rem; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: center; gap: 9px; }
.footer-contact i { color: var(--gold); width: 16px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RANDEVU FORM PAGE STYLES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green) 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-heading); color: #fff; font-size: 2.8rem; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 12px; }

.randevu-section { background: var(--cream); padding: 80px 0; }
.randevu-container { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.randevu-form-card { background: #fff; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e0d0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }

.randevu-info-card { background: var(--dark); border-radius: var(--radius-lg); padding: 36px; color: #fff; }
.randevu-info-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 20px; color: var(--gold-light); }
.info-item { display: flex; gap: 12px; margin-bottom: 18px; font-size: 0.88rem; }
.info-item i { color: var(--gold); margin-top: 2px; }
.info-item span { color: rgba(255,255,255,0.7); }

/* ===== ALERT MESSAGES ===== */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== ADMIN PANEL ===== */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark); }
.admin-login-card { background: var(--dark2); padding: 48px; border-radius: var(--radius-lg); width: 100%; max-width: 420px; border: 1px solid rgba(184,151,90,0.2); }
.admin-login-card h2 { font-family: var(--font-heading); color: var(--white); text-align: center; margin-bottom: 32px; font-size: 1.8rem; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background: var(--dark); color: #fff; flex-shrink: 0; }
.admin-sidebar-head { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 24px; color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(184,151,90,0.15); border-right: 3px solid var(--gold); }
.admin-nav a i { width: 18px; color: var(--gold); }
.admin-main { flex: 1; background: #f0ece3; padding: 40px; }
.admin-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 24px; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.stat-card strong { display: block; font-size: 2rem; color: var(--gold); font-family: var(--font-heading); margin-bottom: 4px; }
.stat-card span { font-size: 0.82rem; color: var(--text-muted); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--cream2); padding: 12px 16px; text-align: left; font-size: 0.83rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
td { padding: 14px 16px; border-bottom: 1px solid #f0ece3; font-size: 0.88rem; }
tr:hover td { background: #faf7f2; }
.badge { padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; }
.badge-bekliyor { background: #fff3cd; color: #856404; }
.badge-onaylandi { background: #d4edda; color: #155724; }
.badge-iptal { background: #f8d7da; color: #721c24; }
.badge-tamamlandi { background: #d1ecf1; color: #0c5460; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  #mainNav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark);
    padding: 80px 24px 32px;
    transition: right 0.35s ease;
    z-index: 7999;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  #mainNav.open { right: 0; }
  #mainNav ul { flex-direction: column; gap: 4px; }
  #mainNav ul li a { display: block; padding: 12px 16px; border-radius: 8px; }
  .hamburger { display: flex; z-index: 8001; }

  .hero-content h1 { font-size: 2.4rem; }
  .hero-stats { bottom: 60px; padding: 16px 28px; gap: 24px; flex-wrap: wrap; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .about-container { grid-template-columns: 1fr; }
  .about-img-small { display: none; }
  .about-badge-float { left: 16px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }

  .reviews-slider { overflow-x: auto; gap: 16px; scroll-snap-type: x mandatory; }
  .review-card { min-width: 280px; scroll-snap-align: start; }

  .randevu-container { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .randevu-form-card { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-main { padding: 20px; }
  table { font-size: 0.8rem; }
  td, th { padding: 10px 10px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .admin-stats-grid { grid-template-columns: 1fr; }
}
