@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 0;
	background-image: url('');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
}

/* ══════════════════════════════
   TEMA DEĞİŞKENLERİ
   ══════════════════════════════ */

:root {
  --radius: 12px;
  --primary: #1a1a2e;
  --primary-text: #ffffff;

  /* AYDINLIK TEMA (varsayılan) */
  --bg-page:          #f0efe9;
  --bg-screen:        #f5f4f0;
  --bg-card:          #ffffff;
  --bg-input:         #f8f7f4;
  --bg-badge:         #f7fafc;

  --text-main:        #1a1a2e;
  --text-body:        #555555;
  --text-muted:       #718096;
  --text-label:       #bbbbbb;
  --text-placeholder: #cccccc;

  --border:           #e0e0e0;
  --border-card:      rgba(0,0,0,0.06);
  --divider:          #d8d5ce;

  --shadow-sm:        0 2px 4px rgba(0,0,0,0.05);
  --shadow:           0 4px 12px rgba(0,0,0,0.10);
  --shadow-card:      0 2px 12px rgba(0,0,0,0.06);

  --about-bg-text:    rgba(26,26,46,0.045);
  --about-border:     rgba(26,26,46,0.12);

  --footer-bg:        #f5f4f0;
  --footer-text:      #b0b0b0;

  --vm-mission-bg:    #ffffff;
  --vm-mission-icon:  rgba(26,26,46,0.07);
  --vm-mission-lbl:   #aaaaaa;
  --vm-mission-text:  #555555;
  --vm-mission-bdr:   rgba(0,0,0,0.08);

  --stat-light-bg:    #ffffff;
  --stat-light-bdr:   rgba(0,0,0,0.08);
  --stat-light-icon:  var(--primary);
  --stat-light-num:   var(--primary);
  --stat-light-lbl:   #aaaaaa;

  --pricing-bg:       #ffffff;
  --pricing-bdr:      rgba(0,0,0,0.06);
  --pricing-plan-name:#bbbbbb;
  --pricing-plan-title:var(--primary);
  --pricing-feature:  #555555;
  --pricing-note:     #bbbbbb;
  --price-currency:   var(--primary);
  --price-amount:     var(--primary);
  --price-period:     #bbbbbb;
  --divider-line-clr: rgba(0,0,0,0.06);

  --contact-wp-bg:    #e8f7ee;
  --contact-wp-text:  #1a3d2b;
  --contact-ig-bg:    #fdf0f8;
  --contact-ig-text:  #4a1535;

  --working-bg:       #f7fafc;
  --working-border:   #edf2f7;
  --working-text:     #1a202c;

  --map-label-bg:     rgba(255,255,255,0.9);
  --map-label-text:   #1a202c;

  --cb-input-bg:      #f8f7f4;
  --cb-input-focus:   #ffffff;
  --cb-fail-bg:       #fff5f5;

  --screen-grad1:     rgba(255,200,100,0.10);
  --screen-grad2:     rgba(100,160,255,0.07);

  --toggle-bg:        #ffffff;
  --toggle-bdr:       rgba(0,0,0,0.06);
  --toggle-inactive:  #999999;

  --theme-icon: "☀️";
}

/* ── KARANLIK TEMA ── */
[data-theme="dark"] {
  --bg-page:          #0d0d0d;
  --bg-screen:        #111111;
  --bg-card:          #1a1a1a;
  --bg-input:         #222222;
  --bg-badge:         #1e1e1e;

  --text-main:        #f0f0f0;
  --text-body:        #aaaaaa;
  --text-muted:       #888888;
  --text-label:       #555555;
  --text-placeholder: #444444;

  --border:           #2a2a2a;
  --border-card:      rgba(255,255,255,0.07);
  --divider:          #2a2a2a;

  --shadow-sm:        0 2px 4px rgba(0,0,0,0.3);
  --shadow:           0 4px 12px rgba(0,0,0,0.4);
  --shadow-card:      0 2px 12px rgba(0,0,0,0.3);

  --about-bg-text:    rgba(255,255,255,0.04);
  --about-border:     rgba(255,255,255,0.12);

  --footer-bg:        #111111;
  --footer-text:      #555555;

  --vm-mission-bg:    #1f1f1f;
  --vm-mission-icon:  rgba(255,255,255,0.08);
  --vm-mission-lbl:   #555555;
  --vm-mission-text:  #999999;
  --vm-mission-bdr:   rgba(255,255,255,0.07);

  --stat-light-bg:    #1f1f1f;
  --stat-light-bdr:   rgba(255,255,255,0.07);
  --stat-light-icon:  #f0f0f0;
  --stat-light-num:   #f0f0f0;
  --stat-light-lbl:   #555555;

  --pricing-bg:       #1a1a1a;
  --pricing-bdr:      rgba(255,255,255,0.07);
  --pricing-plan-name:#555555;
  --pricing-plan-title:#f0f0f0;
  --pricing-feature:  #999999;
  --pricing-note:     #555555;
  --price-currency:   #f0f0f0;
  --price-amount:     #f0f0f0;
  --price-period:     #555555;
  --divider-line-clr: rgba(255,255,255,0.08);

  --contact-wp-bg:    #0d2618;
  --contact-wp-text:  #7ee8a8;
  --contact-ig-bg:    #1a0a14;
  --contact-ig-text:  #e8a0cc;

  --working-bg:       #1a1a1a;
  --working-border:   #2a2a2a;
  --working-text:     #e0e0e0;

  --map-label-bg:     rgba(20,20,20,0.9);
  --map-label-text:   #e0e0e0;

  --cb-input-bg:      #222222;
  --cb-input-focus:   #1a1a1a;
  --cb-fail-bg:       #2a0a0a;

  --screen-grad1:     rgba(255,160,50,0.06);
  --screen-grad2:     rgba(80,120,255,0.05);

  --toggle-bg:        #1a1a1a;
  --toggle-bdr:       rgba(255,255,255,0.08);
  --toggle-inactive:  #555555;

  --primary:         #e0e0e0;
  --primary-text:    #111111;
}

/* ── SCREEN ── */
.screen {
  width: 100%;
  max-width: 390px;
  min-height: 100vh;
  background: var(--bg-screen);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .screen {
    max-width: 920px;
    margin: 0 auto;
  }
}

.screen::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

html {
  /* Tıklanan öğeyi ekranın %50'lik (orta) kısmına hizalamaya çalışır */
  scroll-padding-top: 20vh; 
  scroll-behavior: smooth; /* Yumuşak geçiş ekler */
}

.kart {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 20px 16px 18px;
  border: 0.5px solid var(--border-card);
  position: relative;
  overflow: hidden;
  padding-bottom: 8px;
  padding-top: 8px;
}

.sliderkart {
  border-radius: 18px;
  border: 0.5px solid var(--border-card);
  position: relative;
  overflow: hidden;
}


/* ── CARD INNER ── */
.card-inner {
  padding: 14px 8px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
  gap: 9px;
  overflow: hidden;
}

/* ── HEADER ── */
.header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.18);
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.logo-letter {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}

.header-text {
  flex: 1;
}

.company-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.company-sector {
  font-size: 10px;
  font-weight: 500;
  color: #888;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divider), transparent);
}



/* ── CTA BUTTON ── */
.cta-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  border: none;
  border-radius: 14px;
  color: var(--primary-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.22);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.cta-btn:active {
  opacity: 0.85;
}

.cta-btn i { font-size: 17px; }

/* ── FOOTER ── */
.footer {
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px 20px 20px;
  text-align: center;
  background: var(--footer-bg);
  border-top: 0.5px solid var(--border-card);
}

.footer-text {
  font-size: 9px;
  font-weight: 400;
  color: var(--footer-text);
  letter-spacing: 0.3px;
}

.footer-link {
  font-size: 9px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 46, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #3a3a6e;
}

/* ── GALERİ ── */
.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 2px;
}

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

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #e0e0e0;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-item:active {
  transform: scale(0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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


/* Slider'ın düzgün görünmesi için temel CSS */
  .main-slider-container {
  border-radius: 18px;
  border: 0.5px solid var(--border-card);
  position: relative;
  overflow: hidden;
  }
  .swiper {
    width: 100%;
    height: auto;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition-timing-function: linear; /* Geçişin yumuşak olması için */
  }
	.slider-card {
	  width: 100%;
	  /* Oranı 2:1 yapmak için aspect-ratio kullanıyoruz */
	  aspect-ratio: 2 / 1; 
	  border-radius: 15px;
	  overflow: hidden; /* Taşmaları engellemek için */
	  display: block;
	}

	.slider-card img {
	  width: 100%;
	  height: 100%;
	  /* Görselin bozulmadan (aspect ratio korunarak) alanı kaplamasını sağlar */
	  object-fit: cover; 
	  /* Görselin merkezlenmesini sağlar */
	  object-position: center; 
	  display: block;
	}
 
 
/* ── HAKKIMIZDA — YENİ TASARIM ── */
.about-wrap {
  padding: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
.about-bg-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--about-bg-text);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
  padding-right: 2px;
}

.buyukbaslik {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  user-select: none;
}
 
.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
 
.about-title span {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0 6px 2px;
  border-radius: 5px;
}
 
.about-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  border-left: 2px solid var(--about-border);
  padding-left: 12px;
}
 
/* ══════════════════════════════════════
   VİZYON & MİSYON — style.css'e ekleyin
   ══════════════════════════════════════ */

.vm-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.vm-card {
  border-radius: 14px;
  padding: 14px 14px 14px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

/* Vizyon — koyu */
.vm-vision {
  background: #2a2a2a;
}

/* Misyon — açık */
.vm-mission {
  background: var(--vm-mission-bg);
  border: 0.5px solid var(--vm-mission-bdr);
  box-shadow: var(--shadow-sm);
}

/* Dekor köşe daire */
.vm-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  pointer-events: none;
}

.vm-vision::after {
  background: rgba(255, 255, 255, 0.04);
}

.vm-mission::after {
  background: rgba(26, 26, 46, 0.04);
}

/* İkon kutusu */
.vm-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.vm-vision .vm-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}

.vm-mission .vm-icon-wrap {
  background: var(--vm-mission-icon);
}

.vm-icon-wrap i {
  font-size: 18px;
}

.vm-vision .vm-icon-wrap i {
  color: rgba(255, 255, 255, 0.8);
}

.vm-mission .vm-icon-wrap i {
  color: #1a1a2e;
}

/* İçerik */
.vm-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vm-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vm-vision .vm-label {
  color: rgba(255, 255, 255, 0.5);
}

.vm-mission .vm-label {
  color: var(--vm-mission-lbl);
}

.vm-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
}

.vm-vision .vm-text {
  color: rgba(255, 255, 255, 0.8);
}

.vm-mission .vm-text {
  color: var(--vm-mission-text);
}
 
 
/* İstatistik kartları */
.stats-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 8px;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
 
.stats-scroll::-webkit-scrollbar {
  display: none;
}
 
.stat-card-about {
  flex-shrink: 0;
  width: 88px;
  background: var(--primary);
  border-radius: 14px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
 
.stat-card-about.light {
  background: var(--stat-light-bg);
  border: 0.5px solid var(--stat-light-bdr);
  box-shadow: var(--shadow-sm);
}
 
.stat-card-icon {
  font-size: 18px;
  margin-bottom: 4px;
}
 
.stat-card-about:not(.light) .stat-card-icon { color: rgba(255, 255, 255, 0.5); }
.stat-card-about.light .stat-card-icon { color: var(--stat-light-icon); }
 
.stat-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
 
.stat-card-about:not(.light) .stat-card-num { color: #fff; }
.stat-card-about.light .stat-card-num { color: var(--stat-light-num); }
 
.stat-card-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
 
.stat-card-about:not(.light) .stat-card-lbl { color: rgba(255, 255, 255, 0.45); }
.stat-card-about.light .stat-card-lbl { color: var(--stat-light-lbl); }
 
 
 /* ══════════════════════════════════════════════
   BİZ SİZİ ARAYALİM — form-style.css
   Bu içeriği style.css dosyanızın sonuna ekleyin
   ══════════════════════════════════════════════ */

/* ── CALLBACK WRAP ── */
.callback-wrap {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 20px 16px 18px;
  border: 0.5px solid var(--border-card);
  position: relative;
  overflow: hidden;
  padding-bottom: 8px;
  padding-top: 8px;
  margin-bottom: 18px;
}

/* ── BAŞLIK ── */
.callback-header {
  margin-bottom: 16px;
  position: relative;
}

.callback-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  color: #999;
  line-height: 1.5;
}

/* ── FORM ALANLARI ── */
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cb-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cb-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-left: 2px;
}

.cb-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cb-icon {
  position: absolute;
  left: 12px;
  font-size: 16px;
  color: #bbb;
  pointer-events: none;
  transition: color 0.2s ease;
}

.cb-input {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  width: 100%;
  padding: 11px 12px 11px 6px;
  background: var(--cb-input-bg);
  border: 1.5px solid transparent;
  border-radius: 11px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cb-input::placeholder {
  color: #ccc;
  font-weight: 400;
}

.cb-input:focus {
  background: var(--cb-input-focus);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.07);
}

.cb-input:focus + .cb-icon,
.cb-input-wrap:focus-within .cb-icon {
  color: var(--primary);
}

/* Hata durumu */
.cb-field.error .cb-input {
  border-color: #e53935;
  background: #fff8f8;
}

.cb-field.error .cb-icon {
  color: #e53935;
}

.cb-error {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #e53935;
  padding-left: 4px;
  display: none;
}

.cb-field.error .cb-error {
  display: block;
}

/* ── GÖNDER BUTONU ── */
.cb-submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-text);
  background: var(--primary);
  border: none;
  border-radius: 13px;
  padding: 14px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.22);
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.cb-submit:active {
  opacity: 0.85;
  transform: scale(0.98);
}

.cb-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cb-submit i { font-size: 17px; }

/* Loading spinner */
@keyframes cb-spin {
  to { transform: rotate(360deg); }
}

.cb-spin {
  animation: cb-spin 0.8s linear infinite;
  display: inline-block;
}

/* ── BAŞARI MESAJI ── */
.cb-success {
  text-align: center;
  padding: 20px 10px 8px;
  animation: cb-fadein 0.4s ease;
}

@keyframes cb-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cb-success-icon {
  font-size: 44px;
  color: #34a853;
  margin-bottom: 10px;
  line-height: 1;
}

.cb-success-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.cb-success-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999;
}

/* ── HATA MESAJI ── */
.cb-fail {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #e53935;
  background: var(--cb-fail-bg);
  border: 0.5px solid rgba(229, 57, 53, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  animation: cb-fadein 0.3s ease;
}

.cb-fail i { font-size: 16px; }


/* 
   PREMIUM ILETISIM KARTI - FULL CSS 
   Modern, Mobil Öncelikli ve Bağımsız Yapı
*/

.premium-card {
    max-width: 100%;
    margin: 8px 0 8px 0;
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
}

/* Harita Alanı - Sabit 200px */
.map-box {
    height: 120px;
    width: 100%;
    position: relative;
    overflow: hidden; /* Dışarı taşan iframe'i gizler */
    border-radius: 12px;
    border: 2px solid var(--primary);
	margin-bottom: 12px
}

.map-box iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.map-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--map-label-bg);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--map-label-text);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

/* ══════════════════════════════
   İLETİŞİM BUTONLARI
   ══════════════════════════════ */

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.contact-btn {
  display: flex;
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  height: 45px;
}

.contact-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.btn-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 22px;
  height: 22px;
}

.btn-body {
  flex: 1;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}

.btn-value {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.btn-arrow {
  width: 44px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.4;
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
}

/* Telefon — lacivert */
.btn-phone { background: #597dc0; color: #fff; }
.btn-phone .btn-icon { background: rgba(255,255,255,0.1); }

/* WhatsApp — yeşil */
.btn-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff }
.btn-whatsapp .btn-icon { background: linear-gradient(180deg, #25D366 0%, #128C7E 100%); }

/* Instagram — mor-pembe */
.btn-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.btn-instagram .btn-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* E-Posta — lacivert */
.btn-mail { background: #25d366; color: #fff; }
.btn-mail .btn-icon { background: rgba(255,255,255,0.1); }

/* Twitter — Mavi */
.btn-twitter { background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%) !important; color: #fff; }
.btn-twitter .btn-icon { background: rgba(0, 0, 0, 0.15); } /* İkon alanını biraz kararttık ki fark edilsin */

/* Facebook — Mavi */
.btn-facebook { background: linear-gradient(180deg, #4267B2 0%, #29487d 100%) !important; color: #fff; }
.btn-facebook .btn-icon { background: rgba(0, 0, 0, 0.15); }

/* Youtube — Kırmızı */
.btn-youtube { background: linear-gradient(180deg, #FF0000 0%, #CC0000 100%) !important; color: #fff; }
.btn-youtube .btn-icon { background: rgba(0, 0, 0, 0.15); }

/* Telegram — Açık Mavi */
.btn-telegram { background: linear-gradient(135deg, #37aee2 0%, #1e96c8 100%) !important; color: #fff; }
.btn-telegram .btn-icon { background: rgba(0, 0, 0, 0.15); }

/* Tiktok — Siyah & Neon (DÜZELTİLDİ) */
.btn-tiktok { background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%) !important; color: #fff; }
.btn-tiktok .btn-icon { background: rgba(255, 255, 255, 0.1); }

/* Link — mor-pembe */
.btn-link { background: linear-gradient(180deg, #FF0000 0%, #CC0000 100%); color: #fff; }
.btn-link .btn-icon { background: linear-gradient(180deg, #FF0000 0%, #CC0000 100%); }

/* Website / Link — mor */
.btn-website { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); color: #fff; }
.btn-website .btn-icon { background: rgba(0,0,0,0.15); }
/* LinkedIn — mavi */

.btn-linkedin { background: linear-gradient(135deg, #0077B5 0%, #005885 100%); color: #fff; }
.btn-linkedin .btn-icon { background: rgba(0,0,0,0.15); }

/* İçerik Paneli */
.info-panel {
    padding: 15px;
    text-align: center;
}

.title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 10px 0;
}

.address {
    font-size: 11px;
	font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 8px 0;
    padding: 0 10px;
}

/* Buton Izgarası */
.action-grid {
    display: flex;
    justify-content: space-around; /* Butonları eşit dağıtır */
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
}

.circle-btn {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1; /* Butonların eşit genişlikte olmasını sağlar */
    transition: transform 0.2s ease;
}

/* SVG İkon Taşıyıcıları */
.circle-btn svg {
    width: 58px;
    height: 58px;
    padding: 16px;
    border-radius: 50%;
    color: #ffffff;
    display: block; /* Görünürlüğü garanti eder */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Buton Renkleri */
.call svg { background: linear-gradient(135deg, #4299e1, #3182ce); }
.whatsapp svg { background: linear-gradient(135deg, #48bb78, #38a169); }
.route svg { background: linear-gradient(135deg, #718096, #4a5568); }

.circle-btn span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Etkileşimler */
.circle-btn:active {
    transform: scale(0.92);
}

.circle-btn:hover svg {
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Çalışma Saati Bilgisi */
.working-badge {
    background: var(--working-bg);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--working-text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--working-border);
}

.dot {
    width: 8px;
    height: 8px;
    background: #48bb78;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: pulse 2s infinite;

}


@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ══════════════════════════════
   FİYAT TABLOSU
   ══════════════════════════════ */

.pricing-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pricing-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  color: #999;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  background: var(--toggle-bg);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 18px;
  border: 0.5px solid var(--toggle-bdr);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.toggle-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--toggle-inactive);
  padding: 7px 16px;
  border-radius: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26,26,46,0.2);
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card {
  background: var(--pricing-bg);
  border-radius: 18px;
  padding: 20px 18px;
  border: 0.5px solid var(--pricing-bdr);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.pricing-card.featured {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #007bff;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.plan-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.plan-icon.basic    { background: var(--primary); color: var(--primary-text);; }

[data-theme="dark"] .plan-icon.basic {
  color: #fff;
  background: #2a2a2a;
}

.plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pricing-plan-name);
  margin-bottom: 4px;
}

.pricing-card.featured .plan-name { color: rgba(255,255,255,0.45); }

.plan-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--pricing-plan-title);
  margin-bottom: 12px;
}

.pricing-card.featured .plan-title { color: #fff; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 14px;
  font-weight: 700;
  color: var(--price-currency);
}

.pricing-card.featured .price-currency { color: #fff; }

.price-amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--price-amount);
  letter-spacing: -1.5px;
  line-height: 1;
}

.pricing-card.featured .price-amount { color: #fff; }

.price-period {
  font-size: 10px;
  font-weight: 500;
  color: var(--price-period);
  margin-left: 2px;
}

.pricing-card.featured .price-period { color: rgba(255,255,255,0.4); }

.price-note {
  font-size: 9px;
  color: var(--pricing-note);
  margin-bottom: 14px;
  font-weight: 400;
}

.pricing-card.featured .price-note { color: rgba(255,255,255,0.35); }

.savings-badge {
  display: none;
  align-items: center;
  gap: 4px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.savings-badge.show { display: inline-flex; }

.divider-line {
  height: 1px;
  background: var(--divider-line-clr);
  margin-bottom: 14px;
}

.pricing-card.featured .divider-line { background: rgba(255,255,255,0.1); }

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--pricing-feature);
  line-height: 1.4;
}

.feature-item.unavailable { opacity: 0.35; }

.pricing-card.featured .feature-item { color: rgba(255,255,255,0.75); }

.feature-item i {
  font-size: 14px;
  color: #007bff;
  flex-shrink: 0;
}

.pricing-card.featured .feature-item i { color: #4db8ff; }

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.plan-cta:active { opacity: 0.85; }

.plan-cta.outline {
  background: transparent;
  border: 1.5px solid rgba(26,26,46,0.15);
  color: var(--primary);
}

.plan-cta.filled {
  background: #007bff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,123,255,0.3);
}

.plan-cta.white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.google-puan {
  padding: 8px;
}
/* ══════════════════════════════
   SOL ALT SABİT BUTON GRUBU (FAB)
   ══════════════════════════════ */
.fab-group {
  position: fixed;
  left: 18px;
  bottom: 74px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Tema toggle — küçük, üstte */
.fab-theme {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.fab-theme:active {
  transform: scale(0.88);
}

/* WhatsApp FAB — büyük, altta */
.fab-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
}

.fab-whatsapp:active {
  transform: scale(0.90);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* Tooltip — hover'da görünür */
.fab-whatsapp::before {
  content: 'WhatsApp';
  position: absolute;
  left: 62px;
  background: #25d366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fab-whatsapp:hover::before {
  opacity: 1;
}

/* Canlı ping animasyonu */
.fab-whatsapp::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-ping 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-ping {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Koyu temada kart border biraz belirgin olsun */
[data-theme="dark"] .kart {
  border-color: rgba(255,255,255,0.07);
}

[data-theme="dark"] .premium-card {
  border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .callback-wrap {
  border-color: rgba(255,255,255,0.07);
}

[data-theme="dark"] .address {
  color: var(--text-muted);
}

[data-theme="dark"] .gallery-item {
  background: #2a2a2a;
}

[data-theme="dark"] .cb-input::placeholder {
  color: var(--text-placeholder);
}

[data-theme="dark"] .pricing-subtitle,
[data-theme="dark"] .callback-subtitle {
  color: var(--text-muted);
}

[data-theme="dark"] .section-label {
  color: var(--text-label);
}

[data-theme="dark"] .pricing-card.featured .plan-name { color: rgba(255,255,255,0.45); }
[data-theme="dark"] .pricing-card.featured .plan-title { color: #fff; }
[data-theme="dark"] .pricing-card.featured .feature-item { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .pricing-card.featured .price-currency { color: #fff; }
[data-theme="dark"] .pricing-card.featured .price-amount { color: #fff; }
[data-theme="dark"] .pricing-card.featured .price-period { color: rgba(255,255,255,0.4); }
[data-theme="dark"] .pricing-card.featured .price-note { color: rgba(255,255,255,0.35); }
[data-theme="dark"] .pricing-card.featured .plan-cta.white { color: #1a1a2e; }

[data-theme="dark"] .plan-cta.outline {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-main);
}

[data-theme="dark"] .about-title span {
  background: #e0e0e0;
  color: #111;
}

[data-theme="dark"] .stat-card-about:not(.light) {
  background: #2a2a2a;
}

[data-theme="dark"] .vm-mission .vm-icon-wrap i {
  color: #e0e0e0;
}

[data-theme="dark"] .info-panel .title {
  color: var(--text-main);
}

[data-theme="dark"] .cb-success-title {
  color: var(--text-main);
}

/* Geçiş animasyonu — tüm elemanlara */
*, *::before, *::after {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ── ÜRÜNLER TASARIMI ── */
.products-slider-container {
  width: 100%;
  padding: 20px 0 45px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.product-info p {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.4;
  margin-bottom: 5px;
}

/* YENİ: Fiyat Bölümü */
.product-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-price span {
  font-weight: 700;
  color: var(--primary);
}

.product-buy-btn {
  margin-top: auto;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── HİZMETLER TASARIMI ── */
.services-slider-container {
  width: 100%;
  padding: 20px 0 45px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

/* Yatay görsel alanı (16:9 Oranı) */
.service-img {
  width: 100%;
  aspect-ratio: 16 / 9; 
  overflow: hidden;
  background: #eee;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli kesmeden alanı doldurur */
}

.service-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.service-info p {
  font-size: 12px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 10px;
}

.service-contact-btn {
  margin-top: auto;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Karanlık mod için ufak düzeltme */
[data-theme="dark"] .service-card {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.1);
}

/* 1. Kapsayıcıya noktalar için alt boşluk açıyoruz */
.products-slider-container,
.services-slider-container {
  width: 100%;
  padding-bottom: 50px !important; /* Noktaların düşeceği boşluk */
  position: relative;
  overflow: visible !important; /* Noktaların dışarı taşmasına izin ver */
}

/* 2. Slider'ın kendisinin taşmaları gizlemesini engelliyoruz */
.productsSwiper,
.servicesSwiper {
  overflow: visible !important; 
  padding-bottom: 10px;
}

/* 3. Noktaları kartın dışına, en alta itiyoruz */
.productsSwiper .swiper-pagination,
.servicesSwiper .swiper-pagination {
  bottom: -35px !important; /* Eksi değer ile kartın dışına, boşluğa ittik */
  left: 0;
  width: 100%;
}

/* 4. Noktaların stilini biraz daha zarifleştirelim (opsiyonel) */
.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.3;
}


.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  opacity: 1;
  width: 20px; /* Aktif noktayı biraz uzun yaparak modern durmasını sağlarız */
  border-radius: 5px;
}

/* ── FAQ (SORU CEVAP) TASARIMI ── */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.faq-item {
  background: var(--bg-input); /* Sitenizdeki giriş alanı rengiyle uyumlu */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.faq-question {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}

.faq-question span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  padding-right: 10px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}

.faq-answer p {
  padding: 0 15px 15px 15px;
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.5;
}

/* Açık (Aktif) Durum */
.faq-item.active .faq-question {
  background: rgba(var(--primary-rgb), 0.05);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Cevabın uzunluğuna göre artırılabilir */
  padding-top: 5px;
}

/* Karanlık Mod Düzeltmesi */
[data-theme="dark"] .faq-answer {
  background: rgba(255, 255, 255, 0.03);
}

/* ── YATAY PROFİL STİLLERİ ── */
.profile-horizontal {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-card);
  margin: 2px 0 2px 0;
  width: 100%;
}

.profile-left {
  position: relative;
}

.profile-img-container {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 18px;
  padding: 3px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
}

.profile-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

/* Çevrimiçi Işığı (Daha küçük) */
.status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 2px solid var(--bg-card);
  border-radius: 50%;
}

.profile-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-title-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-main-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  line-height: 1.2;
}

.verify-icon {
  color: #3b69fc;
  font-size: 18px;
}

.profile-subtext {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  background: rgba(var(--primary-rgb), 0.05);
  padding: 2px 8px;
  border-radius: 10px;
  width: fit-content;
}

/* Karanlık Mod Uyumu */
[data-theme="dark"] .profile-img-container {
  background: #1e1e2e;
}


.pricingSwiper {
  width: 100%;
  padding: 2px 0 50px !important;
  overflow: visible !important; /* Noktaların dışarıda durması için */
}

.pricingSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.pricing-card {
  width: 100%;
  margin: 0 !important; /* Swiper boşluğu yöneteceği için margin sıfır olmalı */
}


.bank-accounts-list {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Kartlar arasındaki boşluk */
  margin-top: 15px;
  padding-bottom: 15px;

}

.bank-card {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  border-radius: 15px;
  padding: 15px;
  transition: transform 0.2s;
}

.bank-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--border-card);
  padding-bottom: 8px;
}

.bank-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}

.bank-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.bank-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-item label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-item strong {
  font-size: 13px;
  color: var(--text-main);
}

.iban-box {
  background: rgba(var(--primary-rgb), 0.05);
  border: 1px solid var(--border-card);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Karanlık Mod Uyumu */
[data-theme="dark"] .ti {
  color: #fff;
}

.iban-box span {
  font-size: 11px;
  word-break: break-all; /* Uzun IBAN'ın mobilde taşmasını önler */
  color: var(--text-main);
}

.iban-box { position: relative; z-index: 999; }

/* Alt Menü Navigasyon */
.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-text); /* Temaya göre otomatik değişir */
  border-top: 1px solid var(--border-card);
  padding: 12px 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-nav-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 15px;
  gap: 10px;
  /* Scroll barı gizleme (isteğe bağlı) */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Chrome, Safari ve Opera için scrollbar gizleme */
.footer-nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-item {
  white-space: nowrap;
  padding: 10px 10px;
  background: var(--bg-input);
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  transition: all 0.2s ease;
}

.nav-item:hover, .nav-item:active {
  background: var(--primary);
  color: var(--primary-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}



.theme-btn {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  background: var(--bg-input) !important;
}

html {
  scroll-behavior: smooth;
}

/* --- SABİT BUTONLAR (SAĞ ALT) --- */
.fixed-action-group {
  position: fixed; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; z-index: 1000;
}

.fab-item {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; 
  font-size: 24px; color: white; border: none;
  cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.2s; text-decoration: none;
}

.whatsapp-fab { background-color: #25D366; }
.menu-fab { background-color: #5787dd; }
.fab-item:active { transform: scale(0.9); }

/* --- POPUP PANEL --- */
.menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  z-index: 1001; display: none; align-items: flex-end;
}

.menu-popup {
  width: 100%; max-width: 500px; margin: 0 auto;
  background: var(--bg-card); border-radius: 20px 20px 0 0;
  padding: 20px; animation: slideUp 0.3s ease-out;
}

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border-card); color: var(--text-main);
}

.menu-close {
  background: var(--bg-input); border: 1px solid var(--border-card);
  width: 32px; height: 32px; border-radius: 50%; color: var(--text-main);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}

.menu-close:hover { background: #ff4d4d; color: white; transform: rotate(90deg); }

/* Ana kapsayıcıyı 2 sütun yapar */
/* Hem ID hem Class üzerinden zorla */
#menu-links, .menu-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    padding: 2px !important;
}

.menu-link-item {
    background: var(--bg-input);
    color: var(--text-main);
    padding: 14px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary);
    display: block; /* Tıklama alanını genişletir */
}
/* Üzerine gelindiğinde veya tıklandığında hafif belirginleşsin */
.menu-link-item:active, 
.menu-link-item:hover {
    background: var(--bg-card);
    border-color: var(--accent-color, #007bff); /* Varsa ana rengin, yoksa mavi */
    transform: scale(0.98); /* Hafif basılma hissi */
}
/* --- TEMA SWITCH --- */
.menu-footer { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--border-card); }
.theme-control {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px; background: var(--primary); border-radius: 12px; color: var(--primary-text);font-weight: 400;
}

.switch { position: relative; width: 46px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; background-color: var(--primary)}
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--primary-text); transition: .4s; border-radius: 24px;
}
.slider:before {
  position: absolute; content: ""; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background-color: black; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(22px); }



/* ── WHATSAPP POPUP ─────────────────────────────── */
#wa-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1100;
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: waPopupIn .25s ease;
  margin-bottom: 60px;

}
@keyframes waPopupIn {
  from { opacity:0; transform: translateY(12px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.wa-popup-inner {
    display: flex;
    flex-direction: column;
}
.wa-popup-header {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wa-popup-header-left { display: flex; align-items: center; gap: 10px; }
.wa-popup-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.wa-popup-avatar-placeholder {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; flex-shrink: 0;
}
.wa-popup-name  { font-size: 14px; font-weight: 600; color: #fff; }
.wa-popup-status { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 1px; }
.wa-popup-close {
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  font-size: 18px; cursor: pointer;
  padding: 4px; line-height: 1;
  flex-shrink: 0;
}
.wa-popup-close:hover { color: #fff; }
.wa-popup-body {
  background: #e5ddd5;
  padding: 16px;
  min-height: 70px;
  display: flex; align-items: flex-start;
}
.wa-popup-bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #111;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  max-width: 90%;
}
.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}
.wa-popup-btn:hover { background: #1ebe5d; }
.wa-popup-btn i { font-size: 18px; }
/* ══════════════════════════════════════════════
   YENİ NAVBAR HEADER — Codexio tarzı ince header
   ══════════════════════════════════════════════ */

.site-navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 390px;
  height: 56px;
  background: var(--bg-screen);
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
  .site-navbar {
    max-width: 920px;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
}

.navbar-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.navbar-site-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.3px;
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-cta-btn {
  background: var(--primary);
  color: var(--primary-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.navbar-cta-btn:active {
  opacity: 0.82;
}

.navbar-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.navbar-menu-btn:active {
  background: var(--border);
}

/* ══════════════════════════════════════════════
   SIDE PANEL — Sağdan kayan menü
   ══════════════════════════════════════════════ */

.side-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1100;
  pointer-events: none;
  transition: background 0.3s ease;
}

.side-overlay.open {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: all;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100%;
  background: var(--bg-card);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}

.side-panel.open {
  transform: translateX(0);
}

.side-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-card);
  flex-shrink: 0;
}

.side-panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.3px;
}

.side-panel-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.15s, transform 0.25s;
}

.side-panel-close:hover {
  background: #ff4d4d;
  color: white;
  transform: rotate(90deg);
}

.side-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.side-nav-link {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}



.side-panel-divider {
  height: 1px;
  background: var(--border-card);
  margin: 4px 0;
}

.side-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.side-contact-item {
  width: 100% !important;
}

.side-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--primary-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity 0.15s;
}


.side-panel-footer {
  padding: 14px 20px 20px;
  border-top: 1px solid var(--border-card);
  flex-shrink: 0;
}

/* Eski fab menu butonunu gizle (artık navbar kullanıyoruz) */
.menu-fab {
  display: none !important;
}

/* Eski overlay/popup stilleri override */
.menu-overlay { display: none !important; }
.menu-popup   { display: none !important; }


    /* ── LIGHTBOX ÖZEL STİLLERİ ── */
    .lightbox-modal {
      display: none; /* Başlangıçta gizli */
      position: fixed;
      z-index: 100000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .lightbox-content {
      position: relative;
      width: 90%;
      max-width: 1000px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #activeLightboxImg {
      max-width: 100%;
      max-height: 85vh;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      object-fit: contain;
      user-select: none;
    }

    .close-btn {
      position: absolute;
      top: -60px;
      right: 0;
      color: #fff;
      font-size: 40px;
      cursor: pointer;
      line-height: 1;
    }

    .prev-btn, .next-btn {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 15px;
      color: white;
      font-size: 32px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .prev-btn { left: -80px; }
    .next-btn { right: -80px; }

    .prev-btn:hover, .next-btn:hover { background: rgba(255,255,255,0.25); }

    /* Mobil Uyumluluk */
    @media (max-width: 992px) {
      .prev-btn { left: 10px; background: rgba(0,0,0,0.5); }
      .next-btn { right: 10px; background: rgba(0,0,0,0.5); }
      .close-btn { top: -50px; right: 10px; }
      .lightbox-content { width: 100%; }
    }
	
	
#black-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Tam siyah */
    z-index: 9999;
    opacity: 1;
    transition: opacity 3s ease-in-out; /* 3 saniyelik yumuşak geçiş */
    pointer-events: none; /* Alttaki butonlara tıklamayı engellemez (açılırken) */
}

/* Aydınlanma efekti başladığında bu sınıf eklenecek */
.fade-to-light {
    opacity: 0 !important;
}

/* İş Ortakları */
.partners-slider-container { padding-bottom: 8px; }
.partner-logo-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--card-bg, #fff);
  border: 1px solid var(--border-color, #e5e5e5);
  border-radius: 12px; padding: 14px; aspect-ratio: 1/1;
  transition: box-shadow .2s, transform .2s;
}
.partner-logo-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.10); transform: translateY(-2px); }
.partner-logo-card img { width:100%; height:100%; object-fit:contain; filter:grayscale(40%); transition:filter .2s; }
.partner-logo-card:hover img { filter: grayscale(0%); }


/* ── Share Control ── */
.share-control {
  position: relative;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid color-mix(in srgb, var(--text, #1a1a1a) 18%, transparent);
  border-radius: 10px;
  padding: 7px 13px 7px 10px;
  cursor: pointer;
  color: var(--text, #1a1a1a);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
  white-space: nowrap;
}

.share-btn:hover {
  background: color-mix(in srgb, var(--text, #1a1a1a) 8%, transparent);
  border-color: color-mix(in srgb, var(--text, #1a1a1a) 35%, transparent);
  transform: translateY(-1px);
}

.share-btn:active {
  transform: translateY(0);
}

.share-btn .ti {
  font-size: 16px;
  opacity: .85;
}

.share-btn-label {
  line-height: 1;
}

/* ── Share Popup ── */
.share-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: var(--card-bg, #fff);
  border: 1px solid color-mix(in srgb, var(--text, #1a1a1a) 12%, transparent);
  border-radius: 14px;
  padding: 14px 14px 10px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.07);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.97);
  transition: opacity .2s cubic-bezier(.4,0,.2,1), transform .2s cubic-bezier(.4,0,.2,1);
  transform-origin: bottom right;
}

.share-popup.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.share-popup-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--text, #1a1a1a) 45%, transparent);
  margin-bottom: 10px;
  padding-left: 2px;
}

.share-popup-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.share-popup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 9px;
  padding: 9px 10px;
  cursor: pointer;
  color: var(--text, #1a1a1a);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: background .15s;
}

.share-popup-item:hover {
  background: color-mix(in srgb, var(--text, #1a1a1a) 7%, transparent);
}

.share-popup-item:active {
  background: color-mix(in srgb, var(--text, #1a1a1a) 13%, transparent);
}

.share-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: .85;
}

/* ── Copied feedback ── */
.share-popup-item.copied span {
  color: #22a652;
}

/* ── Arrow ── */
.share-popup::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 18px;
  width: 11px;
  height: 11px;
  background: var(--card-bg, #fff);
  border-right: 1px solid color-mix(in srgb, var(--text, #1a1a1a) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text, #1a1a1a) 12%, transparent);
  transform: rotate(45deg);
}




/* Desktop Font Size Updates (+4px) */
@media (min-width: 992px) {
  .logo-letter { font-size: 32px !important; }
  .company-name { font-size: 22px !important; }
  .company-sector { font-size: 14px !important; }
  .cta-btn { font-size: 15px !important; }
  .cta-btn i { font-size: 21px !important; }
  .footer-text { font-size: 13px !important; }
  .footer-link { font-size: 13px !important; }
  .section-label { font-size: 13px !important; }
  .about-bg-text { font-size: 48px !important; }
  .about-body { font-size: 16px !important; }
  .callback-subtitle { font-size: 14px !important; }
  .pricing-subtitle { font-size: 14px !important; }
  .buyukbaslik { font-size: 48px !important; }
  .about-title { font-size: 24px !important; }
  .vm-icon-wrap i { font-size: 22px !important; }
  .vm-label { font-size: 14px !important; }
  .vm-text { font-size: 15px !important; }
  .stat-card-icon { font-size: 22px !important; }
  .stat-card-num { font-size: 26px !important; }
  .stat-card-lbl { font-size: 13px !important; }
  .cb-label { font-size: 13px !important; }
  .cb-icon { font-size: 20px !important; }
  .cb-input { font-size: 16px !important; }
  .cb-error { font-size: 13px !important; }
  .cb-submit { font-size: 15px !important; }
  .cb-submit i { font-size: 21px !important; }
  .cb-success-icon { font-size: 48px !important; }
  .cb-success-title { font-size: 19px !important; }
  .cb-success-desc { font-size: 15px !important; }
  .cb-fail { font-size: 15px !important; }
  .cb-fail i { font-size: 20px !important; }
  .map-label { font-size: 15px !important; }
  .btn-label { font-size: 13px !important; }
  .btn-value { font-size: 17px !important; }
  .title { font-size: 26px !important; }
  .address { font-size: 17px !important; }
  .circle-btn span { font-size: 15px !important; }
  .working-badge { font-size: 16px !important; }
  .toggle-btn { font-size: 14px !important; }
  .popular-badge { font-size: 12px !important; }
  .plan-icon { font-size: 22px !important; }
  .plan-name { font-size: 15px !important; }
  .plan-title { font-size: 22px !important; }
  .price-currency { font-size: 18px !important; }
  .price-amount { font-size: 38px !important; }
  .price-period { font-size: 14px !important; }
  .price-note { font-size: 13px !important; }
  .savings-badge { font-size: 13px !important; }
  .feature-item i { font-size: 18px !important; }
  .plan-cta { font-size: 14px !important; }
  .fab-theme { font-size: 21px !important; }
  .fab-whatsapp::before { font-size: 14px !important; }
  .product-info h3 { font-size: 19px !important; }
  .product-info p { font-size: 16px !important; }
  .product-price { font-size: 17px !important; }
  .product-buy-btn { font-size: 16px !important; }
  .service-info h3 { font-size: 19px !important; }
  .service-info p { font-size: 16px !important; }
  .service-contact-btn { font-size: 16px !important; }
  .faq-question span { font-size: 17px !important; }
  .faq-question i { font-size: 20px !important; }
  .faq-answer p { font-size: 16px !important; }
  .profile-main-name { font-size: 22px !important; }
  .verify-icon { font-size: 22px !important; }
  .profile-subtext { font-size: 16px !important; }
  .profile-location { font-size: 15px !important; }
  .bank-name { font-size: 18px !important; }
  .info-item label { font-size: 14px !important; }
  .info-item strong { font-size: 17px !important; }
  .iban-box span { font-size: 15px !important; }
  .nav-item { font-size: 17px !important; }
  .theme-btn { font-size: 22px !important; }
  .fab-item { font-size: 28px !important; }
  .menu-link-item { font-size: 13px !important; }
  .wa-popup-avatar-placeholder { font-size: 24px !important; }
  .wa-popup-name { font-size: 18px !important; }
  .wa-popup-status { font-size: 15px !important; }
  .wa-popup-close { font-size: 22px !important; }
  .wa-popup-bubble { font-size: 17px !important; }
  .wa-popup-btn { font-size: 18px !important; }
  .wa-popup-btn i { font-size: 22px !important; }
  .navbar-site-name { font-size: 19px !important; }
  .site-navbar { height: 85px !important; }
  .navbar-cta-btn { font-size: 15px !important; }
  .navbar-menu-btn { font-size: 24px !important; }
  .side-panel-title { font-size: 20px !important; }
  .side-panel-close { font-size: 20px !important; }
  .side-nav-link { font-size: 16px !important; }
  .side-call-btn { font-size: 17px !important; }
  .close-btn { font-size: 44px !important; }
  .prev-btn, .next-btn { font-size: 36px !important; }
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0; /* Navbardaki diğer butonlar artsa bile logoyu ve ismi asla sıkıştırmaz */
    min-width: 0;   /* Taşma kontrolü için güvenli başlangıç */
}

.navbar-site-name {
    white-space: nowrap;      /* Yazının alt satıra geçmesini engeller */
    overflow: visible;        /* Kesilmeyi (noktaları) iptal eder */
    text-overflow: clip;      /* Üç nokta (ellipsis) özelliğini kaldırır */
    display: inline-block;
    flex-shrink: 0;
}

/* Eğer sağ taraftaki butonlar çok yer kaplıyorsa ve yazı hala sığmıyorsa */
.site-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}  

.navbar-logo-img {
  width: 74px;
  height: 100%;
}

.card-inner {
  margin-top: 30px;
}

.stat-card-about {
  width: 230px;

}

.stats-scroll {
    scrollbar-width: thin; /* Firefox için ince bar */
    scrollbar-color: var(--accent) transparent; /* Firefox */
    padding-bottom: 12px; /* Barın içeriğe yapışmaması için */
  }

  /* Chrome, Edge ve Safari için */
  .stats-scroll::-webkit-scrollbar {
    display: block; /* Gizlemeyi kaldırıyoruz */
    height: 5px;    /* Barın kalınlığı */
  }

  .stats-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .stats-scroll::-webkit-scrollbar-thumb {
    background: var(--accent); /* Kaydırıcı rengi (Senin mavi tonun) */
    border-radius: 10px;
  }

  .stats-scroll::-webkit-scrollbar-thumb:hover {
    background: #2563eb; /* Üzerine gelince biraz koyulaşsın */
  }
  
  
  .side-panel {
	width:500px;
  }
  
  .contact-btn {
  height: 58px;
}

  

}