/* ==========================================================
   KroFoto — Özel Stiller
   Nayla Teması Override + Ek Bileşenler
   ========================================================== */

:root {
  --kf-gold: #c8a96e;
  --kf-gold-light: #e8c98e;
  --kf-gold-dark: #a8893e;
  --kf-dark: #1a1a1a;
  --kf-light: #fafaf8;
  --kf-gray: #888;
  --kf-border: rgba(0,0,0,0.1);
}

/* ==========================================================
   PAKET KARTLARI
   ========================================================== */
.kf-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.kf-package-card {
  background: var(--mainBackground);
  border: 1px solid var(--kf-border);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.kf-package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--kf-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.kf-package-card:hover::before,
.kf-package-card.featured::before {
  transform: scaleX(1);
}

.kf-package-card.featured {
  border-color: var(--kf-gold);
  box-shadow: 0 20px 60px rgba(200, 169, 110, 0.15);
}

.kf-package-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--kf-gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 14px;
}

.kf-package-name {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.kf-package-tagline {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 24px;
}

.kf-package-base-price {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-bottom: 8px;
}

/* FİYAT HESAPLAMA */
.kf-price-display {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--kf-gold);
  line-height: 1;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.kf-price-breakdown {
  font-size: 11px;
  letter-spacing: 0.5px;
  opacity: 0.5;
  margin-bottom: 24px;
  line-height: 1.8;
}

.kf-price-vat {
  font-size: 11px;
  opacity: 0.4;
  margin-bottom: 16px;
}

/* ÜRÜN ADEDİ KONTROL */
.kf-shot-control {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--kf-border);
  border-bottom: 1px solid var(--kf-border);
}

.kf-shot-label {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.6;
  flex: 1;
}

.kf-shot-input {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kf-shot-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--kf-border);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--mainColor);
}

.kf-shot-btn:hover {
  background: var(--kf-dark);
  color: #fff;
  border-color: var(--kf-dark);
}

.kf-shot-number {
  font-size: 20px;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

/* EK HİZMETLER */
.kf-extras-list {
  margin-bottom: 24px;
}

.kf-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--kf-border);
  cursor: pointer;
}

.kf-extra-item:last-child { border-bottom: none; }

.kf-extra-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--kf-gold);
}

.kf-extra-price {
  margin-left: auto;
  opacity: 0.5;
  font-size: 11px;
}

/* PAKET ÖZELLİKLERİ */
.kf-features-list {
  list-style: none;
  margin-bottom: 28px;
}

.kf-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--kf-border);
}

.kf-features-list li:last-child { border-bottom: none; }

.kf-features-list li .material-icons {
  font-size: 16px;
  color: var(--kf-gold);
}

.kf-features-list li.not-included .material-icons {
  color: #ccc;
}

.kf-features-list li.not-included span:last-child {
  opacity: 0.4;
  text-decoration: line-through;
}

/* SATIN AL BUTONU */
.kf-buy-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--kf-dark);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.kf-buy-btn:hover {
  background: var(--kf-gold);
}

.kf-package-card.featured .kf-buy-btn {
  background: var(--kf-gold);
}

.kf-package-card.featured .kf-buy-btn:hover {
  background: var(--kf-gold-dark);
}

/* ==========================================================
   CHECKOUT MODAL
   ========================================================== */
.kf-checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.kf-checkout-overlay.active {
  opacity: 1;
  visibility: visible;
}

.kf-checkout-modal {
  background: #fff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.kf-checkout-overlay.active .kf-checkout-modal {
  transform: translateY(0);
}

.kf-checkout-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.kf-checkout-close:hover { opacity: 1; }

.kf-checkout-title {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.kf-checkout-summary {
  background: #fafaf8;
  padding: 20px;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 2;
}

.kf-checkout-form .form-group {
  margin-bottom: 16px;
}

.kf-checkout-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-bottom: 6px;
}

.kf-checkout-form input,
.kf-checkout-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
  color: var(--mainColor);
}

.kf-checkout-form input:focus,
.kf-checkout-form textarea:focus {
  border-color: var(--kf-gold);
}

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

/* PayTR iFrame */
.kf-paytr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.kf-paytr-overlay.active { opacity: 1; visibility: visible; }

.kf-paytr-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #fff;
}

.kf-paytr-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.8;
}

#kf-paytr-iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

/* ==========================================================
   SAYAÇLAR (COUNTERS)
   ========================================================== */
.kf-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.kf-counter-item {
  padding: 60px 40px;
  border-right: 1px solid var(--kf-border);
  text-align: center;
}

.kf-counter-item:last-child { border-right: none; }

.kf-counter-number {
  font-size: 4rem;
  font-weight: 600;
  color: var(--kf-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.kf-counter-plus {
  color: var(--kf-gold);
}

.kf-counter-label {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.5;
}

/* ==========================================================
   TESTİMONIALS
   ========================================================== */
.kf-testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.kf-testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kf-testimonial-slide {
  min-width: 100%;
  padding: 60px 80px;
}

.kf-testimonial-quote {
  font-size: 2rem;
  color: var(--kf-gold);
  margin-bottom: 24px;
  font-family: Georgia, serif;
}

.kf-testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.kf-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kf-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.kf-testimonial-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.kf-testimonial-company {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 1px;
}

.kf-testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.kf-testimonial-dot {
  width: 8px; height: 8px;
  background: var(--kf-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.kf-testimonial-dot.active {
  background: var(--kf-gold);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================
   ALTUN AKSANLAR
   ========================================================== */
.kf-gold-text { color: var(--kf-gold); }
.kf-gold-border { border-color: var(--kf-gold); }

.kf-section-label {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

/* ==========================================================
   İLETİŞİM FORMU
   ========================================================== */
.kf-contact-form {
  display: grid;
  gap: 16px;
}

.kf-contact-form input,
.kf-contact-form textarea,
.kf-contact-form select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--kf-border);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  color: var(--mainColor);
}

.kf-contact-form input:focus,
.kf-contact-form textarea:focus {
  border-bottom-color: var(--kf-gold);
}

.kf-contact-form textarea { resize: vertical; min-height: 120px; }

.kf-alert {
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.kf-alert-success { background: rgba(200,169,110,0.1); border-left: 3px solid var(--kf-gold); }
.kf-alert-error { background: rgba(220,53,69,0.1); border-left: 3px solid #dc3545; }

/* ==========================================================
   BÜLTEN FORMU
   ========================================================== */
.kf-newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--kf-border);
}

.kf-newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  color: var(--mainColor);
}

.kf-newsletter-btn {
  padding: 16px 28px;
  background: var(--kf-dark);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.kf-newsletter-btn:hover { background: var(--kf-gold); }

/* ==========================================================
   VİDEO PLACEHOLDER
   ========================================================== */
.kf-video-placeholder {
  width: 100%;
  height: 100vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  border: 2px dashed rgba(255,255,255,0.1);
}

.kf-video-placeholder .material-icons {
  font-size: 80px;
  color: rgba(255,255,255,0.2);
}

.kf-video-play-btn {
  width: 80px; height: 80px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.kf-video-play-btn:hover {
  border-color: var(--kf-gold);
  background: rgba(200,169,110,0.2);
}

/* ==========================================================
   HİZMET KARTLARI
   ========================================================== */
.kf-service-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--kf-border);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: start;
  cursor: default;
  transition: all 0.3s;
}

.kf-service-item:hover .kf-service-icon {
  color: var(--kf-gold);
}

.kf-service-number {
  font-size: 12px;
  opacity: 0.3;
  letter-spacing: 1px;
  padding-top: 4px;
}

.kf-service-icon {
  font-size: 32px;
  transition: color 0.3s;
}

.kf-service-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.kf-service-desc {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.6;
}

.kf-service-price {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.5;
  white-space: nowrap;
}

/* ==========================================================
   REFERANS GALERİ
   ========================================================== */
.kf-references-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}

.kf-reference-logo {
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s;
  max-height: 40px;
  width: 100%;
  object-fit: contain;
}

.kf-reference-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ==========================================================
   RESPONSİVE
   ========================================================== */
@media (max-width: 1024px) {
  .kf-packages-grid { grid-template-columns: 1fr 1fr; }
  .kf-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .kf-references-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .kf-packages-grid { grid-template-columns: 1fr; }
  .kf-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .kf-counter-item { padding: 40px 20px; }
  .kf-counter-number { font-size: 2.5rem; }
  .kf-references-grid { grid-template-columns: repeat(2, 1fr); }
  .kf-testimonial-slide { padding: 40px 20px; }
  .kf-testimonial-text { font-size: 16px; }
  .kf-checkout-modal { padding: 28px 20px; }
  .kf-form-row { grid-template-columns: 1fr; }
  .kf-service-item { grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================
   WHATSAPP CANLI DESTEK & YANDAN AÇILAN SOHBET WIDGET
   ========================================================== */
.kf-wa-widget {
  position: fixed;
  right: 28px;
  bottom: 85px;
  z-index: 9999;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Tetikleyici Buton (Yalnızca İkon — Dairesel WhatsApp FAB) */
.kf-wa-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  position: relative;
}

.kf-wa-trigger:hover {
  background: #20ba59 !important;
  transform: translateY(-2px) scale(1.06) !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6) !important;
}

.kf-wa-trigger-label {
  display: none !important;
}

.kf-wa-trigger-icon {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.kf-wa-icon-wa {
  width: 32px !important;
  height: 32px !important;
  fill: #ffffff !important;
  transition: transform 0.3s ease !important;
}

.kf-wa-icon-close {
  display: none !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.kf-wa-trigger.active {
  background: #1a1a1a !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
}

.kf-wa-trigger.active .kf-wa-trigger-icon {
  background: transparent !important;
}

.kf-wa-trigger.active .kf-wa-icon-wa {
  display: none !important;
}

.kf-wa-trigger.active .kf-wa-icon-close {
  display: block !important;
}

/* Yandan Açılan Sohbet Penceresi */
.kf-wa-chat {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 360px;
  max-width: calc(100vw - 36px);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kf-wa-chat.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Chat Header */
.kf-wa-header {
  background: #111111;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kf-wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kf-wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #c8a96e;
}

.kf-wa-avatar .material-icons {
  font-size: 20px;
}

.kf-wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #111111;
}

.kf-wa-header h4 {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.kf-wa-header p {
  margin: 3px 0 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.kf-wa-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: kfWaPulse 2s infinite;
}

@keyframes kfWaPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.kf-wa-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.kf-wa-close-btn:hover {
  color: #ffffff;
}

/* Chat Body */
.kf-wa-body {
  background: #f4f3ef;
  padding: 20px;
  max-height: 280px;
  overflow-y: auto;
}

.kf-wa-msg-bubble {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 12px 12px 12px 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
  position: relative;
}

.kf-wa-msg-author {
  font-size: 11px;
  font-weight: 600;
  color: #c8a96e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.kf-wa-msg-text {
  font-size: 13px;
  line-height: 1.5;
  color: #1a1a1a;
}

.kf-wa-msg-time {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  text-align: right;
  margin-top: 6px;
}

/* Quick Chips */
.kf-wa-quick-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kf-wa-quick-chips button {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #2b2b2b;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kf-wa-quick-chips button:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateX(3px);
}

/* Chat Footer / Input */
.kf-wa-footer {
  background: #ffffff;
  padding: 14px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.kf-wa-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f0ed;
  border-radius: 24px;
  padding: 5px 5px 5px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s;
}

.kf-wa-input-row:focus-within {
  border-color: #25D366;
  background: #ffffff;
}

.kf-wa-input-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  color: #1a1a1a;
}

.kf-wa-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.kf-wa-send-btn:hover {
  background: #20ba59;
  transform: scale(1.05);
}

.kf-wa-secure-badge {
  text-align: center;
  margin-top: 8px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .kf-wa-widget {
    right: 18px;
    bottom: 75px;
  }
  .kf-wa-trigger-label {
    display: none;
  }
  .kf-wa-trigger {
    padding: 4px;
    border-radius: 50%;
  }
  .kf-wa-chat {
    right: 0;
    bottom: 58px;
    width: calc(100vw - 36px);
  }
}


/* ==========================================================
   HEADER FIX & HIGH CONTRAST
   Her sayfada ve fotoğrafların üstünde %100 görünürlük ve zarafet
   ========================================================== */
#header.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  padding: 14px 0 !important;
  background: #000000 !important; /* Net Siyah Zemin */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.3s ease !important;
}

#header.site-header .header-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
}

.kf-header-logo-col {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kf-header-nav-col {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Logo Görselleri */
.kf-header-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  transition: opacity 0.25s ease !important;
}

.kf-header-logo-link:hover {
  opacity: 0.85 !important;
}

.kf-header-logo-img {
  height: 25px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block !important;
  object-fit: contain !important;
}

.kf-footer-logo-link {
  display: inline-block !important;
  text-decoration: none !important;
  transition: opacity 0.25s ease !important;
}

.kf-footer-logo-link:hover {
  opacity: 0.85 !important;
}

.kf-footer-logo-img {
  height: 26px !important;
  width: auto !important;
  max-width: 200px !important;
  display: inline-block !important;
  object-fit: contain !important;
}

#header.site-header .site-logo a {
  color: #ffffff !important;
  font-weight: 600 !important;
  letter-spacing: 2.5px !important;
  font-size: 15px !important;
  white-space: nowrap !important;
}

/* Masaüstü Menü Çubuğu: Tek Sıra Kesin Garanti */
#site-navigation.classic {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  flex-shrink: 1 !important;
}

#site-navigation.classic ul.main-menu {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 2px !important;
}

#site-navigation.classic ul.main-menu > li {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* Ghost/Çift yazı sorununu ve span::after gölgesini tamamen kaldır */
#site-navigation.classic ul.menu > li > a > span::after,
#site-navigation.classic ul.main-menu > li > a > span::after,
#site-navigation.classic .hov_span::after,
#header.site-header .main-menu > li > a > span::after,
#header.site-header .hov_span::after {
  content: none !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

#site-navigation.classic ul.menu > li > a > span,
#site-navigation.classic ul.main-menu > li > a > span,
#site-navigation.classic .hov_span,
#header.site-header .main-menu > li > a > span,
#header.site-header .hov_span {
  transform: none !important;
  transition: none !important;
  position: static !important;
  display: inline !important;
}

#site-navigation.classic ul.main-menu > li > a:hover > span,
#header.site-header .main-menu > li > a:hover > span,
#header.site-header .main-menu > li > a:hover .hov_span {
  transform: none !important;
}

#header.site-header .main-menu > li > a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: color 0.2s ease, background 0.2s ease !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  overflow: hidden !important;
  position: relative !important;
}

#header.site-header .main-menu > li > a:hover {
  color: #c8a96e !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

#header.site-header .main-menu > li.current-menu-item > a,
#header.site-header .main-menu > li > a.active {
  color: #c8a96e !important;
}

#header.site-header .nayla-button.outline a {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  padding: 8px 18px !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  white-space: nowrap !important;
}

#header.site-header .nayla-button.outline a:hover {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border-color: #ffffff !important;
}

#header.site-header .toggle-line {
  background: #ffffff !important;
}

/* Orta Boy / Laptop Ekranları (901px - 1280px) */
@media (min-width: 901px) and (max-width: 1280px) {
  #header.site-header {
    padding: 11px 0 !important;
  }
  .kf-header-nav-col {
    gap: 8px !important;
  }
  #site-navigation.classic ul.main-menu {
    gap: 0 !important;
  }
  #header.site-header .main-menu > li > a {
    font-size: 11px !important;
    letter-spacing: 0.3px !important;
    padding: 6px 7px !important;
  }
}

/* Sayfa geçişlerinde ekran kapama olmaması için */
.nayla-page-transition.opacity {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
}

/* ==========================================================
   NAYLA INFINITE TABS (MÜŞTERİ YORUMLARI) KONTRAST FIX
   ========================================================== */
.nayla-infinite-tabs .tab-title {
  color: #1a1a1a !important;
  opacity: 0.35 !important;
  font-weight: 500 !important;
  transition: opacity 0.3s ease, color 0.3s ease !important;
}

.nayla-infinite-tabs .tab-title.active {
  color: #1a1a1a !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.nayla-infinite-tabs .tab-content {
  color: #1a1a1a !important;
}

.nayla-infinite-tabs .tab-content p,
.nayla-infinite-tabs .tab-content h4,
.nayla-infinite-tabs .tab-content .text-h4 {
  color: #1a1a1a !important;
}

.nayla-infinite-tabs .tab-contents-wrap::before {
  background: rgba(0, 0, 0, 0.12) !important;
}

/* ==========================================================
   NAYLA ACCORDION (HAKKIMIZDA & HİZMETLER) KONTRAST FIX
   ========================================================== */
.nayla-accordion .accordion-title {
  color: #1a1a1a !important;
  font-weight: 600 !important;
}

.nayla-accordion .accordion-title span {
  color: #1a1a1a !important;
}

.nayla-accordion .accordion-toggle {
  color: #1a1a1a !important;
  opacity: 0.6 !important;
}

.nayla-accordion .accordion-content {
  color: #1a1a1a !important;
}

.nayla-accordion .accordion-content p,
.nayla-accordion .accordion-content .text-h6 {
  color: #444444 !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.nayla-accordion .accordion-title::after {
  background: rgba(0, 0, 0, 0.12) !important;
}

/* ==========================================================
   NAYLA FORM FLOATING LABEL & PLACEHOLDER FIX
   Label ile placeholder çakışmasını engelleme
   ========================================================== */
.nayla-form > form > div > input::placeholder,
.nayla-form > form > div > textarea::placeholder {
  opacity: 0 !important;
  color: rgba(0, 0, 0, 0.35) !important;
  transition: opacity 0.25s ease !important;
}

.nayla-form > form > div.active > input::placeholder,
.nayla-form > form > div.active > textarea::placeholder {
  opacity: 0.6 !important;
}

.nayla-form > form > div > label {
  color: var(--mainColor) !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
}

.nayla-form > form > div.active > label {
  opacity: 0.65 !important;
}

/* ==========================================================
   FİYAT HESAPLA BUTONU (HEADER CTA)
   Siyah zemin, beyaz yazı, sağda bağımsız şık buton
   ========================================================== */
.kf-header-cta {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  flex-shrink: 0 !important;
}

.kf-btn-calc-header {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 8px 16px !important;
  border-radius: 30px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
  white-space: nowrap !important;
}

.kf-btn-calc-header:hover {
  background: #c8a96e !important;
  color: #1a1a1a !important;
  border-color: #c8a96e !important;
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 6px 18px rgba(200, 169, 110, 0.35) !important;
}

/* ==========================================================
   GLOBAL DİKEY BOŞLUK (VERTICAL SPACING) OPTİMİZASYONU
   Tüm sayfalarda gereksiz devasa beyaz boşlukları ortadan kaldırır
   ========================================================== */
.section {
  width: 100% !important;
  margin-bottom: 25px !important;
  padding-top: 50px !important;
  padding-bottom: 20px !important;
}

.section.fullscreen {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.section.no-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.wrapper {
  margin-bottom: 25px !important;
}

.wrapper-full {
  margin-bottom: 25px !important;
}

.wrapper.no-margin,
.wrapper-full.no-margin {
  margin-bottom: 0 !important;
}

.wrapper:last-child,
.wrapper-full:last-child {
  margin-bottom: 0 !important;
}

/* Sayfa üstü ilk hero/başlık bölümleri: fixed header için pay */
.page-content > .section:first-child,
main#primary > .page-content > .section:first-child,
#content > .section:first-child {
  padding-top: 105px !important;
  padding-bottom: 25px !important;
  margin-bottom: 15px !important;
}

/* Birbirini izleyen bölümler arası sıfır margin çakışması */
.section + .section {
  margin-top: 0 !important;
}

/* Divider (ayraç çizgileri) */
.nayla-divider {
  margin: 18px 0 !important;
}

/* Devasa manuel empty-space bloklarını frenleme */
.empty-space {
  max-height: 28px !important;
}

/* Footer üstü payı */
#footer.site-footer {
  margin-top: 25px !important;
  padding-top: 25px !important;
}

/* ==========================================================
   DAĞINIK VE KÜÇÜK HİZMET BULUTU (SCATTERED DYNAMIC LIST)
   Alt alta devasa liste yerine, asimetrik, modern ve kompakt etiketler
   ========================================================== */
.kf-scattered-cloud {
  display: block;
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.kf-scattered-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.kf-tag-item {
  display: inline-block !important;
  width: auto !important;
  float: none !important;
  padding-bottom: 0 !important;
  position: relative !important;
  transition: transform 0.25s ease, opacity 0.25s ease !important;
}

/* Dağınık asimetrik girintiler (desktop) */
@media (min-width: 992px) {
  .kf-offset-1 { margin-left: 0; margin-right: 30px; }
  .kf-offset-2 { margin-left: 40px; margin-right: 20px; }
  .kf-offset-3 { margin-left: 100px; margin-right: 40px; }
  .kf-offset-4 { margin-left: 15px; margin-right: 35px; }
  .kf-offset-5 { margin-left: 70px; margin-right: 25px; }
  .kf-offset-6 { margin-left: 30px; }
}

.kf-tag-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 10px 22px !important;
  border-radius: 40px !important;
  border: 1px solid rgba(26, 26, 26, 0.16) !important;
  background: rgba(255, 255, 255, 0.75) !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  cursor: pointer !important;
}

.kf-tag-bullet {
  font-size: 7px !important;
  color: #c8a96e !important;
  transition: transform 0.25s ease !important;
}

.kf-tag-title {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  letter-spacing: 0.2px !important;
}

.kf-tag-count {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #777777 !important;
  letter-spacing: 0.8px !important;
  background: rgba(0, 0, 0, 0.05) !important;
  padding: 2px 7px !important;
  border-radius: 10px !important;
  transition: all 0.25s ease !important;
}

/* Hover Etkisi */
.kf-tag-item:hover .kf-tag-link,
.nayla-dynamic-list.hovered li.current .kf-tag-link {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.kf-tag-item:hover .kf-tag-title,
.nayla-dynamic-list.hovered li.current .kf-tag-title {
  color: #ffffff !important;
}

.kf-tag-item:hover .kf-tag-bullet,
.nayla-dynamic-list.hovered li.current .kf-tag-bullet {
  color: #c8a96e !important;
  transform: scale(1.4) !important;
}

.kf-tag-item:hover .kf-tag-count,
.nayla-dynamic-list.hovered li.current .kf-tag-count {
  color: #c8a96e !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

/* Nayla floating preview image boyutu */
.kf-scattered-cloud .list-image {
  width: 280px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35) !important;
}

.kf-scattered-cloud .list-image img {
  border-radius: 10px !important;
}

/* Karartma modu uyumu */
.nayla-dynamic-list.hovered li:not(.current) {
  opacity: 0.35 !important;
}

/* ==========================================================
   NAYLA ACCORDION TOGGLE & INTERACTION CUE FIX
   Aşağı açılır olduğunu belirginleştirme (+ / - butonlar)
   ========================================================== */
.nayla-accordion .accordion-title {
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 24px 0 !important;
  transition: all 0.25s ease !important;
}

.nayla-accordion .accordion-title:hover {
  opacity: 0.85 !important;
  padding-left: 6px !important;
}

.nayla-accordion .accordion-toggle {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #f0f0ed !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  color: #1a1a1a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  flex-shrink: 0 !important;
  margin-left: 16px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}

.nayla-accordion .accordion-item:hover .accordion-toggle {
  background: #1a1a1a !important;
  color: #ffffff !important;
  border-color: #1a1a1a !important;
  transform: scale(1.08) !important;
}

.nayla-accordion .accordion-item.active .accordion-toggle {
  background: #1a1a1a !important;
  color: #ffffff !important;
  border-color: #1a1a1a !important;
  transform: rotate(45deg) scale(1.08) !important;
}

.kf-price-badge {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  background: rgba(0, 0, 0, 0.05) !important;
  padding: 5px 14px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  margin-right: 12px !important;
  margin-left: auto !important;
  white-space: nowrap !important;
}

/* ==========================================================
   LÜKS REFERANS & MARKA GALERİSİ STILLERİ
   ========================================================== */
.kf-ref-brand-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 0 15px;
  white-space: nowrap;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.kf-ref-brand-pill:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.kf-ref-brand-pill .kf-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: #1a1a1a;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.kf-ref-brand-pill .kf-brand-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #888;
  text-transform: uppercase;
  margin-top: 3px;
  transition: color 0.3s ease;
}

.kf-ref-brand-pill:hover .kf-brand-name {
  color: #ffffff;
}

.kf-ref-brand-pill:hover .kf-brand-sub {
  color: #c8a96e;
}

/* Portfolyo Filtre Butonları */
.kf-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.kf-filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.25s ease;
}

.kf-filter-btn:hover,
.kf-filter-btn.active {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

/* Proje Kartı İçerik Detayları */
.kf-proj-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.kf-proj-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  color: #555;
}

.kf-proj-spec {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #888;
  font-weight: 500;
}

.kf-proj-result {
  font-size: 11.5px;
  color: #27ae60;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

/* Stat Kutusu */
.kf-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  margin-bottom: 40px;
}

.kf-stat-item {
  padding: 10px 16px;
}

.kf-stat-val {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
  font-feature-settings: "tnum";
}

.kf-stat-lbl {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Vaka Analizi Kartları */
.kf-case-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.kf-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .kf-stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ==========================================================
   LÜKS BÜLTEN & ABONE OL BUTONU
   ========================================================== */
.kf-newsletter-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 60px;
  padding: 6px 6px 6px 22px;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  width: 100%;
}

.kf-newsletter-card:focus-within {
  border-color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.kf-newsletter-card .kf-nl-icon {
  color: #888;
  font-size: 21px;
  margin-right: 12px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.kf-newsletter-card:focus-within .kf-nl-icon {
  color: #c8a96e;
}

.kf-newsletter-card input[type="email"] {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 12px 6px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14.5px !important;
  color: #1a1a1a !important;
  flex: 1;
  box-shadow: none !important;
  margin: 0 !important;
  min-width: 0;
}

.kf-newsletter-card input[type="email"]::placeholder {
  color: #999;
  font-size: 13.5px;
}

.kf-newsletter-btn {
  background: #1a1a1a !important;
  color: #ffffff !important;
  border: none !important;
  outline: none !important;
  padding: 14px 30px !important;
  border-radius: 40px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  position: relative;
  overflow: hidden;
}

.kf-newsletter-btn .kf-btn-icon {
  font-size: 18px !important;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.kf-newsletter-btn:hover {
  background: #c8a96e !important;
  color: #1a1a1a !important;
  transform: scale(1.03) !important;
  box-shadow: 0 6px 24px rgba(200, 169, 110, 0.45) !important;
}

.kf-newsletter-btn:hover .kf-btn-icon {
  transform: translateX(4px) !important;
}

.kf-newsletter-btn:active {
  transform: scale(0.97) !important;
}

.kf-newsletter-note {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kf-newsletter-note .material-icons {
  font-size: 15px;
  color: #27ae60;
}

@keyframes kfSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 650px) {
  .kf-newsletter-card {
    border-radius: 20px;
    flex-direction: column;
    padding: 14px;
    align-items: stretch;
  }
  .kf-newsletter-card .kf-nl-icon {
    display: none;
  }
  .kf-newsletter-card input[type="email"] {
    width: 100% !important;
    padding: 8px 0 !important;
    text-align: center;
  }
  .kf-newsletter-btn {
    width: 100% !important;
    margin-top: 10px;
    padding: 13px 20px !important;
  }
}

/* ==========================================================
   FOOTER — JET BLACK ZEMİN & KONTRASTLI BEYAZ/ALTIN TİPOGRAFİ
   ========================================================== */
#footer,
#footer.site-footer,
.site-footer {
  background: #000000 !important; /* Net Siyah Zemin */
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding-top: 10px !important;
  padding-bottom: 50px !important;
  margin-top: 30px !important;
}

#footer .footer-wrapper,
#footer .wrapper,
#footer .wrapper-full {
  color: #ffffff !important;
}

/* Footer Başlıkları & Paragrafları */
#footer h4,
#footer .text-h4 {
  color: #ffffff !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

#footer p {
  color: rgba(255, 255, 255, 0.78) !important;
}

#footer p strong,
#footer strong {
  color: #ffffff !important;
}

/* Bülten Giriş Kartı (Siyah Zemin Üzerinde Koyu Antrasit Kapsül) */
#footer .kf-newsletter-card {
  background: #141414 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

#footer .kf-newsletter-card:focus-within {
  border-color: #c8a96e !important;
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.25) !important;
}

#footer .kf-newsletter-card .kf-nl-icon {
  color: rgba(255, 255, 255, 0.5) !important;
}

#footer .kf-newsletter-card:focus-within .kf-nl-icon {
  color: #c8a96e !important;
}

#footer .kf-newsletter-card input[type="email"] {
  color: #ffffff !important;
}

#footer .kf-newsletter-card input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Bülten Butonu: Siyah Üzerinde Parlak Beyaz / Gold Kontrast */
#footer .kf-newsletter-btn {
  background: #ffffff !important;
  color: #000000 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

#footer .kf-newsletter-btn .kf-btn-icon {
  color: #000000 !important;
}

#footer .kf-newsletter-btn:hover {
  background: #c8a96e !important;
  color: #000000 !important;
  box-shadow: 0 6px 22px rgba(200, 169, 110, 0.45) !important;
}

#footer .kf-newsletter-note {
  color: rgba(255, 255, 255, 0.55) !important;
}

#footer .kf-newsletter-note .material-icons {
  color: #2ecc71 !important;
}

/* Footer Alt Bölümü (Footer Bottom): Linkler, Telif, İletişim */
#footer .footer-bottom-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding-top: 40px !important;
  margin-top: 25px !important;
}

#footer a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.2s ease !important;
}

#footer a:hover {
  color: #c8a96e !important;
}

#footer .menu.vertical li {
  margin-bottom: 12px !important;
}

#footer .menu.vertical li a {
  font-size: 12px !important;
  letter-spacing: 1.2px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

#footer .menu.vertical li a:hover {
  color: #c8a96e !important;
  padding-left: 4px !important;
}

