:root {
  --bg: #0f0f11;
  --surface: #17171b;
  --surface-soft: #1f1f25;
  --text: #f5f5f6;
  --muted: #b7bcc8;
  --accent: #d0d6e2;
  --accent-hover: #eef2f8;
  --lux: #d4af37;
  --lux-soft: #f1d273;
  --difference-gold: #c68b2a;
  --border: #2b2b33;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Ortak Yerleşim */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: linear-gradient(180deg, #131317 0%, #101014 100%);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: 0.2px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0));
}

.premium-text {
  color: var(--lux);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 640px;
}

/* Navigasyon */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrapper {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d8dce6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.logo-text {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  background: linear-gradient(90deg, #f6f0d7, var(--lux-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-stars {
  margin-top: 0.14rem;
  font-size: 0.92rem;
  letter-spacing: 0.14rem;
  color: var(--lux-soft);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  color: #dfdfe5;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-links a:hover {
  color: var(--lux-soft);
  border-color: var(--lux);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  padding: 0;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(
      to right,
      rgba(7, 7, 9, 0.92) 0%,
      rgba(7, 7, 9, 0.74) 58%,
      rgba(7, 7, 9, 0.86) 100%
    ),
    radial-gradient(circle at 80% 25%, rgba(212, 175, 55, 0.28), transparent 42%),
    url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
}

.hero-overlay {
  flex: 1;
  display: grid;
  place-items: start center;
}

.hero-content {
  margin-top: clamp(1rem, 4vh, 3rem);
  padding: 2.4rem 1.3rem 2.1rem;
  text-align: center;
  background: rgba(8, 8, 10, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2rem, 4.9vw, 4rem);
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  margin: 1.3rem 0 2rem;
  max-width: 820px;
  color: #f1f1f6;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.4);
}

.hero-location {
  margin: -0.85rem 0 1.45rem;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--lux-soft);
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.hero-actions .btn {
  width: min(320px, 90vw);
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #e4c66e, #c89b2a);
  color: #19150d;
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #f1d67f, #d4af37);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.42);
}

.btn-ghost {
  border: 1px solid rgba(212, 175, 55, 0.65);
  color: #ecf1fa;
  background: rgba(212, 175, 55, 0.1);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.2);
}

.btn-whatsapp::before,
.btn-call::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-whatsapp::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ecf1fa'%3E%3Cpath d='M12.04 2C6.5 2 2 6.38 2 11.79c0 1.9.57 3.66 1.55 5.15L2 22l5.3-1.48a10.18 10.18 0 0 0 4.74 1.17c5.54 0 10.04-4.38 10.04-9.79S17.58 2 12.04 2Zm0 17.96a8.2 8.2 0 0 1-4.2-1.15l-.3-.18-3.14.87.92-3.03-.2-.31a7.66 7.66 0 0 1-1.2-4.07c0-4.28 3.6-7.76 8.12-7.76s8.12 3.48 8.12 7.76-3.6 7.87-8.12 7.87Zm4.45-5.89c-.24-.12-1.42-.69-1.64-.76-.21-.08-.37-.12-.53.11-.16.23-.61.76-.75.92-.14.15-.28.17-.52.06-.24-.12-1.03-.37-1.96-1.2-.73-.64-1.22-1.43-1.37-1.67-.14-.23-.02-.36.1-.48.11-.11.24-.29.36-.43.12-.14.16-.24.24-.4.08-.15.04-.29-.02-.41-.06-.11-.53-1.25-.73-1.71-.19-.46-.39-.39-.53-.4h-.45c-.16 0-.41.06-.62.29-.21.23-.81.79-.81 1.93 0 1.13.83 2.23.95 2.38.12.15 1.63 2.47 3.95 3.46.55.24.98.38 1.31.49.55.17 1.05.15 1.44.09.44-.07 1.42-.58 1.62-1.13.2-.55.2-1.02.14-1.12-.06-.09-.22-.15-.46-.27Z'/%3E%3C/svg%3E");
}

.btn-call::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ecf1fa'%3E%3Cpath d='M6.62 10.79a15.53 15.53 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24c1.12.37 2.33.57 3.59.57a1 1 0 0 1 1 1V21a1 1 0 0 1-1 1C10.4 22 2 13.6 2 3a1 1 0 0 1 1-1h4.49a1 1 0 0 1 1 1c0 1.26.2 2.47.57 3.59a1 1 0 0 1-.25 1l-2.19 2.2Z'/%3E%3C/svg%3E");
}

/* Salonumuz (hakkımızda) */
.about-grid {
  display: block;
  max-width: 42rem;
  margin-inline: auto;
}

.about-grid h2 {
  margin-top: 0;
}

.about-grid p {
  margin: 0 0 1rem;
  color: #d2d2db;
}

/* Farkımız (neden biz) */
.difference-section {
  padding: 4.5rem 0 5.25rem;
  background: #000000;
  border-bottom: 1px solid #1a1a1a;
}

.difference-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.difference-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.difference-kicker {
  margin: 0 0 0.65rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--difference-gold);
}

.difference-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 5.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.difference-tagline {
  margin: 0;
  font-size: 0.98rem;
  color: #9a9aa8;
  line-height: 1.55;
}

.difference-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.difference-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.2rem;
  background: #141418;
  border: 1px solid #25252c;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.difference-icon {
  flex-shrink: 0;
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0c0c0f;
  border: 1px solid #2a2a32;
  color: var(--difference-gold);
}

.difference-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.difference-card-text {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: #f2f2f6;
  line-height: 1.45;
  text-align: left;
}

/* Hizmetler */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.75rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.95), rgba(212, 175, 55, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(212, 175, 55, 0.18);
}

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

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #2b2b33;
}

.service-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1.03rem;
  text-align: center;
}

.price {
  display: inline-block;
  margin-top: 1rem;
  color: var(--lux-soft);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Özellikler */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-item {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.5);
  background: #262630;
}

.feature-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Galeri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  background: linear-gradient(135deg, #121218 0%, #0e0e14 100%);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item.image-error {
  border-color: rgba(212, 175, 55, 0.35);
}

.service-card.image-error {
  border-color: rgba(212, 175, 55, 0.35);
}

.service-card.image-error::after {
  content: "Gorsel yuklenemedi";
  display: block;
  margin-top: 0.6rem;
  color: #c7c7d1;
  font-size: 0.88rem;
  text-align: center;
}

.gallery-item.image-error::after {
  content: "Gorsel yuklenemedi";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem;
  color: #c7c7d1;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.5);
}

/* İletişim */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
}

.contact-grid h2 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}

.contact-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #26262d;
  color: #d2d2db;
}

.contact-map-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lux-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.contact-map-link:hover {
  color: #f7df97;
  border-bottom-color: rgba(247, 223, 151, 0.7);
}

/* Footer */
.site-footer {
  background: #0b0b0e;
  border-top: 1px solid var(--border);
  padding: 1.7rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--lux-soft);
  letter-spacing: 1px;
  font-weight: 700;
}

.footer-content p {
  margin: 0;
  color: #b5b5bf;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.footer-links a {
  color: #d5d5de;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lux-soft);
}

/* Sabit WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--lux-soft);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Responsive Düzen */
@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    backdrop-filter: none;
    background: #0a0a0c;
  }

  .nav-wrapper {
    min-height: 66px;
    padding: 0.55rem 0;
  }

  .logo img {
    width: 46px;
    height: 46px;
  }

  .logo-text {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }

  .logo-stars {
    font-size: 0.76rem;
    letter-spacing: 0.08rem;
    margin-top: 0.08rem;
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 66px 0 0;
    background: rgba(5, 5, 7, 0.62);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    margin: 0.65rem 0.9rem 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #111116;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0.2rem 0;
  }

  .mobile-nav-links li + li {
    border-top: 1px solid #26262d;
  }

  .mobile-nav-links a {
    display: block;
    padding: 0.9rem 1rem;
    color: #ececf3;
    font-weight: 600;
    font-size: 0.96rem;
  }

  .mobile-instagram-item {
    border-top: 1px solid #26262d;
  }

  .mobile-nav-links .mobile-instagram-link {
    background: linear-gradient(90deg, #fff6cf 0%, #f4dc8d 48%, #e7c65f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.22);
    transition: filter 0.18s ease, opacity 0.18s ease, text-shadow 0.18s ease;
  }

  .mobile-nav-links .mobile-instagram-link:hover,
  .mobile-nav-links .mobile-instagram-link:focus-visible {
    opacity: 1;
    filter: brightness(1.12);
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.32);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-top: 1.1rem;
    padding: 1.8rem 1rem 1.7rem;
  }

  .hero-subtitle {
    line-height: 1.6;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .service-card {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
  }

  .service-image {
    aspect-ratio: 16 / 10;
    min-height: 220px;
    max-height: 280px;
  }

  .gallery-item:hover,
  .service-card:hover,
  .btn:hover,
  .whatsapp-float:hover {
    transform: none;
  }

  .section {
    padding: 4.3rem 0;
  }

  .difference-section {
    padding: 3.75rem 0 4.5rem;
  }
}
