/* ============================================
   NEVA GÜZELLİK — Custom Styles
   ============================================ */

:root {
  --cream: #F5F0EB;
  --gold: #C9A96E;
  --dark: #2C2C2C;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* Buttons */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 9999px;
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: white; }

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }

/* Section Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Gold link */
.link-gold {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.link-gold:hover { gap: 8px; }

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a.active { color: var(--gold); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid #f3f4f6;
  padding: 1rem 0 1.5rem;
}
.mobile-menu a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: #faf9f8; }
.mobile-menu .btn-gold { margin-top: 0.75rem; display: inline-block; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  color: white;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.25rem;
  max-width: 500px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Trust badges */
.trust-bar {
  background: white;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-item .check { color: var(--gold); font-size: 1.1rem; }

/* Page hero (small) */
.page-hero {
  background: var(--cream);
  padding: 6rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid #e8e0d6;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #9ca3af;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* Sections */
.section { padding: 5rem 1.5rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  padding: 2rem 1.75rem;
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .overlay {
  background: rgba(201,169,110,0.25);
}
.gallery-item.hidden { display: none; }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#lightbox.hidden { display: none; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* Filter buttons */
.filter-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 8px 24px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid #e5e7eb;
  background: white;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

/* Testimonial cards */
.testimonial-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
  padding: 2rem;
}
.stars { color: #fbbf24; font-size: 1.125rem; margin-bottom: 0.75rem; }
.quote-mark { font-size: 3rem; color: var(--gold); line-height: 0.5; margin-bottom: 1rem; }

/* WhatsApp CTA band */
.wa-band {
  background: linear-gradient(135deg, #f5f0eb 0%, #ede8e2 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid #e0d8cd;
  border-bottom: 1px solid #e0d8cd;
}

/* Why us */
.why-item {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: #fdf6ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

/* Team cards */
.team-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}
.team-card .card-body { padding: 1.5rem; }

/* Certificates */
.cert-badge {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: #9ca3af; }
textarea.form-control { resize: vertical; min-height: 110px; }

/* Price table */
.price-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 0.75rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f3f4f6;
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-name { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--dark); }
.price-duration { font-size: 0.8rem; color: #9ca3af; font-family: 'Inter', sans-serif; }
.price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.95rem;
}

/* Success message */
.success-msg {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: 10px;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: white; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: #9ca3af; text-decoration: none; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none;
  transition: background 0.2s;
}
.social-icon:hover { background: var(--gold); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }
.hours-row span:first-child { color: #9ca3af; }
.hours-open { color: var(--gold); font-weight: 500; }
.hours-closed { color: #ef4444; font-weight: 500; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.875rem; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.875rem; color: #9ca3af; text-decoration: none; font-family: 'Inter', sans-serif; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #6b7280; font-family: 'Inter', sans-serif; }

/* Grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.75rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.75rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Service detail card */
.service-detail-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  border-left: 4px solid var(--gold);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .service-detail-card { grid-template-columns: 1fr auto; } }
.service-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.service-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: #6b7280; font-family: 'Inter', sans-serif; }
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.badge-gold { background: #fdf3e3; color: var(--gold); }
.badge-green { background: #d1fae5; color: #065f46; }

/* Contact page */
.contact-info-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 2rem;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #f3f4f6; }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon-wrap {
  width: 42px; height: 42px;
  background: #fdf6ec;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* Mission/Vision */
.mv-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--gold);
}

/* Smooth fade in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .section { padding: 3.5rem 1rem; }
  .page-hero { padding: 5rem 1rem 2.5rem; }
}
