/* ==========================================================================
   ZBT DUŞAKABİN - KURUMSAL STİL SİSTEMİ (MAIN.CSS)
   Açık Tema | Beyaz - Siyah - Zarif Gold Paleti | %100 Kusursuz Mobil Uyum
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Renk Paleti - Açık Tema & Asil Gold Detaylar */
  --bg-main: #ffffff;
  --bg-subtle: #f9fafb;
  --bg-card: #ffffff;
  --bg-card-hover: #fafbfc;
  --bg-gold-tint: rgba(197, 160, 89, 0.08);

  --text-dark: #121417;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #ffffff;

  --gold-primary: #c5a059;
  --gold-light: #dfba73;
  --gold-dark: #9f7d37;
  --gold-gradient: linear-gradient(135deg, #dfba73 0%, #c5a059 50%, #9f7d37 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(223, 186, 115, 0.16) 0%, rgba(197, 160, 89, 0.06) 100%);

  --black-primary: #121417;
  --black-secondary: #1c2026;

  --border-color: #e5e7eb;
  --border-gold: rgba(197, 160, 89, 0.35);
  --border-gold-solid: #c5a059;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 14px 35px rgba(0, 0, 0, 0.08);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1220px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-color: var(--bg-main);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Sections */
.section {
  padding: 75px 0;
  position: relative;
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid #f1f3f5;
  border-bottom: 1px solid #f1f3f5;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--gold-primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Top Bar */
.top-bar {
  background-color: #0f1115;
  color: #9ca3af;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c2c7d0;
  transition: var(--transition);
}

.top-item:hover {
  color: var(--gold-light);
}

.top-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Status Badge */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
}

.status-pill.status-open {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.status-pill.status-closed {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 6px currentColor;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* Header & Navbar */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 46px;
  width: auto;
  max-width: 500px;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #121417;
  border: 1px solid var(--gold-light);
  box-shadow: 0 3px 12px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.4);
  background: linear-gradient(135deg, #ebc87d 0%, #cfa861 100%);
}

.btn-dark {
  background: var(--black-primary);
  color: #ffffff;
  border: 1px solid var(--black-secondary);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  background: var(--bg-gold-tint);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
  color: #ffffff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.98rem;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  height: 2.2px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
/* Hero Video Vitrini (Yazısız, %100 Net & Efektli Sinematik Alan) */
.hero-video-section {
  position: relative;
  width: 100%;
  background-color: #07090c;
  overflow: hidden;
  border-top: 1px solid rgba(223, 186, 115, 0.35);
  border-bottom: 2px solid rgba(223, 186, 115, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Üstten Işıma Efekti (Ambient Glow) */
.video-ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 90px;
  background: radial-gradient(ellipse at 50% 0%, rgba(223, 186, 115, 0.28) 0%, transparent 75%);
  pointer-events: none;
  z-index: 3;
  filter: blur(15px);
}

/* Sinematik Çevre Karartma Efekti (Vignette) - Kenarlara derinlik verir, videoyu net tutar */
.video-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 720px;
  max-height: 85vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #07090c;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  /* %100 net, sıfır karartma */
  filter: contrast(1.04) saturate(1.05);
  /* Canlı ve zengin renkler */
}

/* 0:11 Saniye İlerleme Çubuğu */
.hero-video-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 12;
  overflow: hidden;
}

.hero-video-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c5a059 0%, #f5e298 50%, #dfba73 100%);
  box-shadow: 0 0 12px rgba(223, 186, 115, 0.85);
  transition: width 0.15s linear;
}

/* 2. Hero Tanıtım & Hızlı Teklif Alanı (Beyaz & Gold Açık Tema) */
.hero-intro-section {
  padding: 65px 0 55px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.hero-intro-content {
  max-width: 840px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.22;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--gold-primary);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 30 Yıl Tecrübe Banner */
.experience-banner {
  margin-top: 0;
  padding: 40px 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #ffffff;
  padding: 26px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold-primary);
}

.exp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px;
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-gold-tint);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.exp-info h3 span {
  color: var(--gold-primary);
}

.exp-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Hizmetlerimiz Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold-solid);
}

.service-img-box {
  position: relative;
  height: 205px;
  overflow: hidden;
  background-color: #f1f3f5;
}

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

.service-card:hover .service-img-box img {
  transform: scale(1.05);
}

.service-icon-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-gold);
}

.service-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f3f5;
  padding-top: 15px;
}

.service-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

.service-card:hover .service-link {
  color: var(--gold-dark);
}

/* About / Biz Kimiz */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  width: 100%;
}

.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--black-primary);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-num {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: var(--gold-light);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold-primary);
  padding-left: 15px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-body-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-feat-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Galeri & Lightbox */
.gallery-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black-primary);
  color: #ffffff;
  border-color: var(--black-primary);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #121417;
  border-color: var(--gold-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #f3f4f6;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold-solid);
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(18, 20, 23, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  color: #ffffff;
  opacity: 0.95;
}

.gallery-category-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.gallery-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.gallery-sub {
  font-size: 0.78rem;
  color: #d1d5db;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  max-width: 960px;
  max-height: 75vh;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  text-align: center;
  color: #ffffff;
  max-width: 750px;
}

.lightbox-caption h4 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.lightbox-caption p {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f3f5;
  padding-top: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.author-info h4 {
  font-size: 0.96rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

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

/* Working Hours */
.hours-wrapper {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.hours-info-box {
  padding: 38px 32px;
  background: var(--bg-subtle);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-info-box h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.live-status-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-top: 18px;
  box-shadow: var(--shadow-sm);
}

.hours-table-box {
  padding: 32px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #f0f2f5;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 11px 8px;
  font-size: 0.92rem;
}

.hours-table .day-name {
  font-weight: 700;
  color: var(--text-dark);
}

.hours-table .day-time {
  text-align: right;
  font-weight: 600;
  color: var(--text-body);
}

.hours-table tr.today-row {
  background-color: var(--bg-gold-tint);
  border-left: 3px solid var(--gold-primary);
}

.hours-table tr.today-row td {
  color: var(--gold-dark);
}

.badge-closed {
  color: #ef4444;
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-gold-tint);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-card-body p,
.contact-card-body a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-wrapper {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.main-footer {
  background-color: #0d0f13;
  color: #94a3b8;
  padding-top: 60px;
  border-top: 3px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 35px;
  padding-bottom: 45px;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #94a3b8;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--gold-light);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact-list svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  background-color: #08090c;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #64748b;
}

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

/* ============================================================
   Floating WhatsApp Butonu — Gerçek WA Stili
   ============================================================ */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Konuşma Balonu */
.wa-float-tooltip {
  background: #ffffff;
  border-radius: 12px 12px 0 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  padding: 14px 16px;
  max-width: 230px;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  border: 1px solid #e5e7eb;
}

.wa-float-wrap:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-float-tooltip-inner strong {
  display: block;
  font-size: 0.88rem;
  color: #111;
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.wa-float-tooltip-inner p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.wa-float-tooltip-arrow {
  position: absolute;
  bottom: -8px;
  right: 18px;
  width: 16px;
  height: 8px;
  overflow: hidden;
}

.wa-float-tooltip-arrow::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

/* Ana Buton */
.wa-float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* Ripple Ping Animasyonu */
.wa-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waRipple 2.5s ease-out infinite;
}

.wa-ripple-2 {
  animation-delay: 1.1s;
}

@keyframes waRipple {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%  { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}

/* ==========================================================================
   ALT SAYFA RESPONSIVE SINIFLARI
   ========================================================================== */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card-box {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-gold-tint);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card-box h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.feature-card-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Hizmetler Detay Kartları */
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 35px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.service-detail-item.row-reverse {
  grid-template-columns: 1.15fr 1fr;
}

.service-detail-item.row-reverse .service-detail-img {
  order: 2;
}

.service-detail-item.row-reverse .service-detail-content {
  order: 1;
}

.service-detail-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.82rem;
}

.service-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-gold-tint);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.service-detail-content h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.service-detail-short {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-detail-body {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* İletişim Formu */
.contact-form-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-sm);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 16px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBİL)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-video-wrapper {
    height: 580px;
    min-height: 500px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .hours-wrapper {
    grid-template-columns: 1fr;
  }

  .hours-info-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-item,
  .service-detail-item.row-reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-item.row-reverse .service-detail-img {
    order: 1;
  }

  .service-detail-item.row-reverse .service-detail-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Üst Bar */
  .top-bar {
    display: none;
  }

  /* Header & Navbar */
  .navbar {
    height: 60px;
    padding: 0;
  }

  .brand-logo {
    flex-shrink: 0 !important;
    display: flex;
    align-items: center;
  }

  .header-logo-img {
    height: 56px !important;
    width: auto !important;
    max-width: 230px !important;
    display: block !important;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Mobilde header navbar WhatsApp butonu gizlenir; logo ve hamburger menüye ferah alan açılır */
  .nav-actions .nav-wa-btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    width: 22px;
    height: 16px;
  }

  .mobile-toggle span {
    height: 2px;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px 18px;
    gap: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--gold-primary);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1rem;
    padding: 6px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid #f3f4f6;
  }

  /* Sayfa ve Başlık Ölçekleri */
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .section-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* Hero Video Vitrini (Mobilde Uzun, Geniş & Ferah) */
  .hero-video-wrapper {
    height: 500px;
    max-height: 78vh;
    min-height: 440px;
  }

  /* Hero Intro (Videoyu Kapatmayan Ayrılmış Alan) */
  .hero-intro-section {
    padding: 32px 0 24px 0;
  }

  .hero-intro-content {
    padding: 0;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
    justify-content: center;
  }

  /* 30 Yıl Tecrübe Banner */
  .experience-banner {
    padding: 20px 0;
    margin-top: 0;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
  }

  .exp-card {
    padding: 8px 6px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    background: #fafbfc;
    border-radius: 6px;
    border: 1px solid #edf0f3;
  }

  .exp-icon {
    width: 34px;
    height: 34px;
  }

  .exp-icon svg {
    width: 18px;
    height: 18px;
  }

  .exp-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1px;
  }

  .exp-info p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  /* About / Biz Kimiz */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-image-wrapper {
    margin-bottom: 8px;
  }

  .about-floating-badge {
    position: static;
    margin-top: 10px;
    padding: 12px 16px;
    gap: 10px;
    border-radius: var(--radius-sm);
  }

  .about-badge-num {
    font-size: 1.85rem;
  }

  .about-badge-text {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .about-highlight {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 10px;
    margin-bottom: 14px;
  }

  .about-body-text {
    display: block !important;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .about-feat-item {
    font-size: 0.84rem;
  }

  /* Hizmetlerimiz */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    border-radius: var(--radius-sm);
  }

  .service-img-box {
    height: 170px;
  }

  .service-body {
    padding: 16px;
  }

  .service-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .service-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  /* Galeri Grid (Mobilde 2 sütunlu şık görünüm) */
  .gallery-filter {
    gap: 6px;
    margin-bottom: 18px;
  }

  .filter-btn {
    padding: 5px 12px;
    font-size: 0.78rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item img {
    height: 140px;
  }

  .gallery-overlay {
    padding: 8px;
  }

  .gallery-category-tag {
    font-size: 0.62rem;
  }

  .gallery-title {
    font-size: 0.82rem;
    margin-bottom: 0;
  }

  .gallery-sub {
    display: none;
  }

  /* Müşteri Yorumları */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    padding: 16px;
    border-radius: var(--radius-sm);
  }

  .review-text {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .review-author {
    padding-top: 10px;
    gap: 10px;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.74rem;
  }

  /* Çalışma Saatleri */
  .hours-info-box {
    padding: 20px 16px;
  }

  .hours-info-box h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .live-status-card {
    padding: 8px 12px;
    margin-top: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hours-table-box {
    padding: 16px 12px;
  }

  .hours-table td {
    padding: 8px 4px;
    font-size: 0.84rem;
  }

  /* İletişim & Harita */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-card-item {
    padding: 14px 12px;
    gap: 10px;
    border-radius: var(--radius-sm);
  }

  .contact-card-icon {
    width: 36px;
    height: 36px;
  }

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

  .contact-card-body h4 {
    font-size: 0.92rem;
  }

  .contact-card-body p,
  .contact-card-body a {
    font-size: 0.82rem;
  }

  .map-wrapper {
    min-height: 250px;
    height: 250px;
    border-radius: var(--radius-sm);
  }

  /* Footer */
  .main-footer {
    padding-top: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 25px;
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer-about p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .footer-links a,
  .footer-contact-list li {
    font-size: 0.85rem;
  }

  /* Yüzen WhatsApp Butonu */
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
  }

  .floating-whatsapp .whatsapp-bubble {
    display: none;
  }

  .whatsapp-btn-circle {
    width: 48px;
    height: 48px;
  }

  .whatsapp-btn-circle svg {
    width: 24px;
    height: 24px;
  }

  /* Alt Sayfalar */
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card-box {
    padding: 18px 16px;
  }

  .service-detail-item,
  .service-detail-item.row-reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .service-detail-img {
    height: 190px;
    order: 1 !important;
  }

  .service-detail-content {
    order: 2 !important;
  }

  .service-detail-content h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .service-detail-actions .btn {
    width: 100%;
  }

  .contact-form-box {
    padding: 20px 16px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 380px) {
  .hero-video-wrapper {
    height: 420px;
    min-height: 380px;
  }

  .header-logo-img {
    height: 42px !important;
    max-width: 175px !important;
  }

  .nav-actions {
    gap: 8px;
  }

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

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