/* 
  Ali Naz Kuaför ve Güzellik Salonu - Premium Web Sitesi Tasarım Stilleri
  Ekran görüntüsü ile birebir örtüşen Açık Tema & Koyu Vurgulu Modern Arayüz tasarımı.
*/

/* GLOBAL RESET VE TAŞMA ENGELLEME (CRITICAL MOBILE OVERFLOW CURE) */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* TEMEL DEĞİŞKENLER VE REPLİKA RENK PALETİ */
:root {
  --primary-color: #c5a880;       /* Ekran görüntüsündeki soft mat altın rengi */
  --primary-glow: #e2d2bd;        /* Parlak altın */
  --primary-dark: #a68962;        /* Koyu altın */
  --dark-bg: #111111;             /* Header, Hero ve Footer koyu arka planı */
  --light-bg: #ffffff;            /* Ana gövde açık arka planı */
  --light-gray-bg: #f9f9f9;       /* Kartlar ve markalar için açık gri arka plan */
  --dark-border: rgba(255,255,255,0.08); /* Koyu alan sınır çizgileri */
  --light-border: #eaeaea;        /* Açık alan sınır çizgileri */
  
  --text-light: #ffffff;          /* Koyu arka plandaki açık metin */
  --text-dark: #1e1e1e;           /* Açık arka plandaki koyu metin */
  --text-grey-dark: #666666;      /* Açık temadaki gövde/açıklama metinleri */
  --text-grey-light: #b0b0b0;     /* Koyu temadaki gövde/açıklama metinleri */
  
  --gold-gradient: linear-gradient(135deg, #e2d2bd 0%, #c5a880 50%, #a68962 100%);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.08);
  --box-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0; /* padding reset to avoid grid leaks */
}

.text-center {
  text-align: center;
}

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

/* BUTONLAR (BUTTONS) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

/* Hero üzerindeki Randevu Al butonu */
.btn-solid-hero {
  background: var(--gold-gradient);
  color: #111111;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
  font-size: 11px;
  padding: 14px 35px;
}

.btn-solid-hero:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Hero üzerindeki Hizmetlerimiz butonu */
.btn-outline-hero {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.7);
  font-size: 11px;
  padding: 14px 35px;
}

.btn-outline-hero:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Header üzerindeki Randevu Al butonu */
.btn-randevu-nav {
  background: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 10px 22px;
  font-size: 11px;
}

.btn-randevu-nav:hover {
  background: var(--gold-gradient);
  color: #111111;
  border-color: transparent;
}

/* Galeri üzerindeki Tüm Galeri butonu */
.btn-outline-gallery {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-color);
  padding: 10px 25px;
  font-size: 11px;
}

.btn-outline-gallery:hover {
  background: var(--gold-gradient);
  color: #111111;
  border-color: transparent;
}

/* Kampanya üzerindeki Randevu Al butonu */
.btn-promo {
  background: var(--gold-gradient);
  color: #111111;
  border: none;
  padding: 14px 38px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

.btn-promo:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}

.btn-arrow {
  margin-left: 8px;
  font-size: 9px;
}

/* ALTIN LİNKLER */
.gold-link {
  color: var(--primary-dark);
  font-weight: 600;
  border-bottom: 1.5px solid var(--primary-color);
}

.gold-link:hover {
  color: var(--primary-color);
}

/* BÖLÜM BAŞLIKLARI (SECTION HEADERS) */
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--primary-color);
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* Light Tema Bölüm Başlıkları */
.about-section-title, 
.gallery-section-title,
.pricing-section-title,
.instagram-section-title,
.contact-section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-grey-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ÜST BİLGİ ÇUBUĞU (TOP BAR) */
.top-bar {
  background-color: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
  font-size: 11.5px;
  color: var(--text-grey-light);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left strong {
  color: #ffffff;
}

.top-bar-divider {
  color: rgba(255,255,255,0.15);
}

.gold-icon {
  color: var(--primary-color);
}

.top-bar-right {
  display: flex;
  gap: 18px;
}

.social-link {
  font-size: 13px;
  color: var(--text-grey-light);
}

.social-link:hover {
  color: var(--primary-color);
}

/* NAVİGASYON HEADER */
.main-header {
  background-color: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-wrapper {
  display: block;
  max-width: 250px;
  height: 46px;
}

.logo-img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #e5e5e5;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 8px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #181818;
  border: 1px solid rgba(255,255,255,0.06);
  list-style: none;
  min-width: 210px;
  border-radius: 2px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 11px;
  color: var(--text-grey-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-menu li a:hover {
  color: var(--primary-color);
  background-color: rgba(255,255,255,0.02);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 85px 0;
  background-color: #111111;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 580px;
}

.hero-accent-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--primary-color);
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-visual {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/* HİZMET KARTLARI (HIGHLIGHT CARDS BÖLÜMÜ) */
.highlights-section {
  background-color: var(--light-gray-bg);
  padding: 80px 0 50px 0;
  position: relative;
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.highlight-card {
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 40px 22px 30px 22px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--box-shadow-card);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-premium);
  border-color: var(--primary-color);
}

.card-icon-wrapper {
  margin-bottom: 20px;
}

.card-icon-svg {
  width: 44px;
  height: 44px;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}

.card-desc {
  font-size: 12px;
  color: var(--text-grey-dark);
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.6;
}

.card-link {
  font-size: 16px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.highlight-card:hover .card-link {
  transform: translateX(4px);
}

/* KAMPANYA BANNER (PROMO BANNER) */
.promo-banner {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(197, 168, 128, 0.15), transparent 65%);
  pointer-events: none;
}

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

.promo-content {
  max-width: 650px;
}

.promo-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.25;
}

.promo-right {
  display: flex;
  justify-content: center;
}

.promo-time-badge {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.15);
}

.time-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.time-sub {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* HAKKIMIZDA BÖLÜMÜ (ABOUT) */
.about-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.about-media-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
}

.about-img {
  width: 100%;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.play-btn-circle {
  background: var(--gold-gradient);
  color: #111111;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
  transition: var(--transition-smooth);
}

.play-btn-circle:hover {
  transform: scale(1.08);
}

.play-icon {
  margin-left: 3px;
}

.play-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: #ffffff;
  margin-top: 10px;
}

.about-content {
  max-width: 550px;
}

.about-text {
  font-size: 14.5px;
  color: var(--text-grey-dark);
  margin-bottom: 40px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 25px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-icon-wrapper {
  color: var(--primary-color);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.feature-text p {
  font-size: 12px;
  color: var(--text-grey-dark);
  line-height: 1.5;
}

/* GALERİ BÖLÜMÜ (GALLERY) */
.gallery-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.text-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 45px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-category {
  font-size: 9px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

/* MARKALAR BÖLÜMÜ (BRANDS) */
.brands-section {
  background-color: var(--light-gray-bg);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  padding: 50px 0;
}

.brands-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-item {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 2.5px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: center;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.brand-item span {
  font-size: 8px;
  letter-spacing: 3px;
  margin-top: 4px;
  font-weight: 400;
}

.brand-item:hover {
  color: var(--primary-dark);
  opacity: 1;
}

/* FİYAT LİSTESİ BÖLÜMÜ */
.pricing-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--light-border);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: transparent;
  color: var(--text-grey-dark);
  border: 1px solid var(--light-border);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold-gradient);
  color: #111111;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.pricing-content-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 45px;
}

.pricing-item {
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 15px;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.item-price {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
}

.item-desc {
  font-size: 12px;
  color: var(--text-grey-dark);
}

.pricing-note {
  margin-top: 50px;
  font-size: 13px;
  color: var(--text-grey-dark);
}

/* INSTAGRAM SLIDER BÖLÜMÜ */
.instagram-section {
  padding: 100px 0;
  background-color: var(--light-gray-bg);
  border-bottom: 1px solid var(--light-border);
}

.instagram-feed-container {
  margin-top: 45px;
  position: relative;
}

.instagram-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.instagram-slides {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.instagram-post-card {
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  min-width: 275px;
  max-width: 290px;
  flex: 0 0 calc(25% - 15px);
  overflow: hidden;
  box-shadow: var(--box-shadow-card);
}

.post-header {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--light-border);
  position: relative;
}

.post-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  margin-right: 10px;
}

.post-user-info {
  display: flex;
  flex-direction: column;
}

.post-username {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.post-location {
  font-size: 9.5px;
  color: var(--text-grey-dark);
}

.post-insta-badge {
  position: absolute;
  right: 12px;
  font-size: 15px;
  color: var(--primary-color);
}

.post-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-post-card:hover .post-img {
  transform: scale(1.03);
}

.post-footer {
  padding: 12px;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.actions-left {
  display: flex;
  gap: 12px;
}

.actions-left i:hover {
  color: var(--primary-color);
  cursor: pointer;
}

.post-likes {
  font-size: 11.5px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.post-caption {
  font-size: 11px;
  line-height: 1.45;
  color: #555555;
}

.post-caption strong {
  margin-right: 5px;
  color: var(--text-dark);
}

/* Insta Navigation Butonları */
.insta-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border: 1px solid var(--light-border);
  color: var(--text-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.insta-nav-btn:hover {
  background-color: var(--primary-color);
  color: #111111;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.35);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* İLETİŞİM BÖLÜMÜ (CONTACT) */
.contact-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
}

.contact-info-form {
  max-width: 650px;
}

.contact-desc {
  font-size: 13.5px;
  color: var(--text-grey-dark);
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #fafafa;
  border: 1px solid var(--light-border);
  border-radius: 2px;
  padding: 11px 14px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #ffffff;
}

/* İletişim Kartı Detayları */
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card {
  background-color: #fafafa;
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: var(--box-shadow-card);
}

.detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.detail-icon {
  background: var(--gold-gradient);
  color: #111111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.detail-text h3 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.detail-text p {
  font-size: 12.5px;
  color: var(--text-grey-dark);
}

.detail-text a:hover {
  color: var(--primary-dark);
}

/* FOOTER VE HARİTA (FOOTER) */
.footer-section {
  background-color: #111111;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0 0;
  color: #dddddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.col-about {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  height: 46px;
  width: auto;
  align-self: flex-start;
}

.footer-about-text {
  font-size: 12px;
  color: var(--text-grey-light);
  line-height: 1.6;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons .social-link {
  background-color: #181818;
  border: 1px solid rgba(255,255,255,0.05);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-grey-light);
}

.footer-social-icons .social-link:hover {
  background: var(--gold-gradient);
  color: #111111;
  border-color: transparent;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-transform: uppercase;
}

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

.footer-links li a {
  font-size: 12.5px;
  color: var(--text-grey-light);
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.col-map {
  display: flex;
  flex-direction: column;
}

.map-embed-wrapper {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background-color: #181818;
  height: 180px;
}

/* Footer Alt Bilgileri */
.footer-bottom {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.02);
  padding: 30px 0;
  font-size: 11.5px;
  color: var(--text-grey-light);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.developer-credit {
  font-size: 11px;
}

/* YÜZEN WHATSAPP WIDGET (FLOATING WHATSAPP) */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.whatsapp-circle-btn {
  background-color: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  animation: pulseGreen 2s infinite;
}

.whatsapp-circle-btn:hover {
  transform: scale(1.08) rotate(5deg);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #181818;
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ANIMASYON pulseGreen */
@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* RESPONSIVE TASARIM AYARLARI (MEDIA QUERIES) */

@media (max-width: 1200px) {
  .highlights-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .highlights-section {
    padding-bottom: 40px;
  }
  .instagram-post-card {
    flex: 0 0 calc(33.333% - 14px);
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    display: block;
    height: 350px;
    width: 100%;
    max-width: 450px;
    margin: 30px auto 0 auto;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content {
    max-width: 100%;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .instagram-post-card {
    flex: 0 0 calc(50% - 10px);
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* MOVE MOBILE MENU TRIGGER TO 991PX FOR TABLET SUPPORT */
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #111111;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 35px;
    transition: all 0.4s ease;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 25px;
  }
  .nav-link {
    font-size: 15px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: rgba(255,255,255,0.02);
    text-align: center;
    margin-top: 10px;
    width: 100%;
    display: none;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .logo-wrapper {
    max-width: 190px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-bar-divider {
    display: none;
  }
  .top-bar-left {
    flex-direction: column;
    gap: 5px;
  }
  .hero-title {
    font-size: 46px;
  }
  .highlights-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .promo-title {
    font-size: 30px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-post-card {
    flex: 0 0 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .highlights-container {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 36px;
  }
  .pricing-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .tab-btn {
    border-radius: 4px;
    text-align: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

/* DETAY SAYFALARI EK STİLLERİ (INNER PAGES EXTRA STYLES) */
.page-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--text-light);
  background-color: var(--dark-bg);
}
.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.25;
}
.page-banner-container {
  position: relative;
  z-index: 2;
}
.page-banner-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.breadcrumbs {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-grey-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.breadcrumbs a {
  color: var(--text-grey-light);
}
.breadcrumbs a:hover {
  color: var(--primary-color);
}
.breadcrumbs i {
  font-size: 8px;
  color: var(--primary-color);
}
.breadcrumbs .active {
  color: var(--primary-color);
}

.detail-content-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}
.detail-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.detail-main-text {
  color: var(--text-dark);
}
.detail-featured-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 35px;
  box-shadow: var(--box-shadow-premium);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.detail-main-text h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.detail-main-text p {
  font-size: 14.5px;
  color: var(--text-grey-dark);
  margin-bottom: 25px;
  line-height: 1.75;
}
.detail-main-text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 35px;
}
.detail-features-list {
  list-style: none;
  margin-bottom: 35px;
}
.detail-features-list li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  color: var(--text-grey-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}
.detail-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}
.action-box-cta {
  background-color: var(--light-gray-bg);
  border-left: 4px solid var(--primary-color);
  padding: 30px;
  margin-top: 40px;
  border-radius: 0 4px 4px 0;
}
.action-box-cta h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.action-box-cta p {
  font-size: 13.5px;
  margin-bottom: 20px;
  color: var(--text-grey-dark);
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-card {
  background-color: var(--light-gray-bg);
  border: 1px solid var(--light-border);
  padding: 30px;
  border-radius: 4px;
}
.sidebar-card h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border-bottom: 1.5px solid var(--primary-color);
  padding-bottom: 10px;
  color: var(--text-dark);
}
.contact-sidebar-card {
  background: var(--dark-bg);
  color: var(--text-light);
  border: none;
  text-align: center;
}
.contact-sidebar-card h3 {
  color: var(--primary-color);
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
}
.contact-sidebar-card p {
  font-size: 13px;
  color: var(--text-grey-light);
  margin-bottom: 25px;
}
.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}
.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.25);
  color: #ffffff;
}
.sidebar-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
}
.sidebar-phone-link:hover {
  color: #ffffff;
}

.sidebar-services-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-services-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-grey-dark);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.sidebar-services-links li a i {
  font-size: 10px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
.sidebar-services-links li a:hover i {
  transform: translateX(4px);
}
.sidebar-services-links li a:hover,
.sidebar-services-links li a.active {
  color: var(--primary-dark);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-grey-dark);
}
.hours-list li.closed {
  color: #c93b3b;
  font-weight: bold;
}
