/* ==========================================================================
   TRABZON BOYACISI - RESMİ TEMA STILLERI & TAM MOBİL UYUMLULUK
   ========================================================================== */

:root {
  --tb-navy-900: #0a192f;
  --tb-navy-800: #102a43;
  --tb-navy-700: #1e3a5f;
  --tb-accent: #e65100;
  --tb-accent-hover: #cf4300;
  --tb-accent-light: #fff3e0;
  --tb-gold: #f59e0b;
  --tb-green: #10b981;
  --tb-green-dark: #047857;
  --tb-slate-50: #f8fafc;
  --tb-slate-100: #f1f5f9;
  --tb-slate-200: #e2e8f0;
  --tb-slate-300: #cbd5e1;
  --tb-slate-400: #94a3b8;
  --tb-slate-500: #64748b;
  --tb-slate-600: #475569;
  --tb-slate-700: #334155;
  --tb-slate-800: #1e293b;
  --tb-white: #ffffff;
  --tb-radius-sm: 8px;
  --tb-radius-md: 14px;
  --tb-radius-lg: 22px;
  --tb-shadow-sm: 0 2px 6px rgba(10, 25, 47, 0.05);
  --tb-shadow-md: 0 8px 24px rgba(10, 25, 47, 0.08);
  --tb-shadow-lg: 0 16px 36px rgba(10, 25, 47, 0.12);
}

/* KESİN SIFIR YATAY TAŞMA (NO HORIZONTAL OVERFLOW) */
*, *:before, *:after {
  box-sizing: border-box !important;
}

html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--tb-slate-800);
  background-color: var(--tb-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* GENEL KAPSAYICI */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* BUTONLAR */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--tb-accent);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--tb-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.28);
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary:hover {
  background: var(--tb-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 81, 0, 0.38);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--tb-radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.2s ease;
  text-align: center;
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* ÜST BİLGİ ÇUBUĞU (TOPBAR) */
.topbar {
  background: var(--tb-navy-900);
  color: #cbd5e1;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-rating {
  color: #fbbf24;
  font-weight: 800;
}

.topbar-right a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
}

.topbar-right a:hover {
  text-decoration: underline;
}

.pulse-online {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* HEADER & LOGO */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--tb-slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--tb-shadow-sm);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  background: var(--tb-accent-light);
  color: var(--tb-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--tb-navy-800);
  line-height: 1.1;
}

.brand-badge {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--tb-accent);
  margin-top: 2px;
}

/* MENÜ */
.desktop-menu ul.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu ul.menu a {
  font-size: 14px;
  font-weight: 700;
  color: var(--tb-slate-700);
  text-decoration: none;
  padding: 8px 4px;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.desktop-menu ul.menu a:hover,
.desktop-menu ul.menu .current-menu-item > a {
  color: var(--tb-accent);
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--tb-slate-50);
  border: 1px solid var(--tb-slate-200);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}

.header-phone-box:hover {
  background: var(--tb-accent-light);
  border-color: var(--tb-accent);
}

.header-phone-icon {
  width: 34px;
  height: 34px;
  background: var(--tb-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-text small {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--tb-slate-500);
  font-weight: 600;
}

.header-phone-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--tb-navy-800);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--tb-slate-100);
  border: 1px solid var(--tb-slate-200);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tb-navy-800);
  margin: 4px auto;
  border-radius: 2px;
  transition: all 0.2s;
}

/* HERO SECTION */
.hero-modern {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--tb-slate-200);
  overflow: hidden;
}

.hero-grid-modern {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tb-accent-light);
  border: 1px solid rgba(230, 81, 0, 0.2);
  color: var(--tb-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-tag-badge .stars {
  color: #f59e0b;
}

.hero-copy h1 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--tb-navy-800);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.hero-copy h1 .highlight {
  display: block;
  color: var(--tb-accent);
}

.hero-copy .lead-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--tb-slate-600);
  margin: 0 0 24px;
}

.hero-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.hero-features-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-navy-800);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features-list .check-icon {
  width: 18px;
  height: 18px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-notes {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--tb-slate-500);
  font-weight: 600;
  flex-wrap: wrap;
}

/* HERO SHOWCASE KARTI */
.hero-card-showcase {
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-md);
  padding: 24px;
  box-shadow: var(--tb-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tb-slate-200);
}

.hero-showcase-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--tb-navy-800);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-live {
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.hero-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: var(--tb-slate-50);
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-sm);
  padding: 14px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--tb-navy-800);
  line-height: 1.1;
}

.stat-box span {
  display: block;
  font-size: 11px;
  color: var(--tb-slate-500);
  font-weight: 600;
  margin-top: 4px;
}

.hero-partner-brands {
  text-align: center;
  border-top: 1px solid var(--tb-slate-200);
  padding-top: 14px;
}

.hero-partner-brands > span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--tb-slate-400);
  margin-bottom: 8px;
}

.brand-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.brand-pill {
  background: var(--tb-slate-100);
  color: var(--tb-navy-800);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

/* GÜVEN METRİKLERİ ŞERİDİ */
.trust-metrics-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--tb-slate-200);
  padding: 22px 0;
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metric-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--tb-accent-light);
  color: var(--tb-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--tb-navy-800);
  line-height: 1.2;
}

.metric-info span {
  display: block;
  font-size: 12px;
  color: var(--tb-slate-500);
  font-weight: 500;
}

/* GENEL BÖLÜMLER */
.section {
  padding: 65px 0;
}

.section.muted {
  background: var(--tb-slate-50);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--tb-accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--tb-navy-800);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.22;
}

.text-link {
  color: var(--tb-accent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.text-link:hover {
  text-decoration: underline;
}

/* NEDEN BİZ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-md);
  padding: 24px;
  transition: all 0.2s;
  box-shadow: var(--tb-shadow-sm);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tb-shadow-md);
  border-color: var(--tb-accent);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--tb-accent-light);
  color: var(--tb-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--tb-navy-800);
  line-height: 1.35;
  margin: 0 0 8px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--tb-slate-600);
  margin: 0;
}

/* HİZMET VE BLOG KARTLARI */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.content-card {
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-md);
  overflow: hidden;
  box-shadow: var(--tb-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tb-shadow-md);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.card-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--tb-navy-800);
  line-height: 1.3;
  margin: 0 0 10px;
}

.card-body h3 a {
  color: var(--tb-navy-800);
  text-decoration: none;
}

.card-body h3 a:hover {
  color: var(--tb-accent);
}

.card-body p {
  font-size: 13px;
  color: var(--tb-slate-600);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

/* ÖNCESİ & SONRASI */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-card {
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-md);
  overflow: hidden;
  box-shadow: var(--tb-shadow-sm);
}

.ba-image-container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.ba-badge-before, .ba-badge-after {
  position: absolute;
  top: 12px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.ba-badge-before {
  left: 12px;
  background: rgba(10, 25, 47, 0.85);
  color: #ffffff;
}

.ba-badge-after {
  right: 12px;
  background: var(--tb-accent);
  color: #ffffff;
}

.ba-body {
  padding: 20px;
}

.ba-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tb-accent);
  margin-bottom: 6px;
}

.ba-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--tb-navy-800);
  line-height: 1.35;
  margin: 0 0 8px;
}

.ba-body p {
  font-size: 13px;
  color: var(--tb-slate-600);
  line-height: 1.6;
  margin: 0;
}

/* İLÇE AĞI (TB_AREA) */
.area-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-card-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--tb-navy-800);
  transition: all 0.15s;
}

.area-card-modern:hover {
  background: var(--tb-slate-50);
  border-color: var(--tb-accent);
  color: var(--tb-accent);
  transform: translateY(-2px);
}

.area-pin {
  color: var(--tb-accent);
  font-size: 14px;
}

/* MÜŞTERİ YORUMLARI */
.review-card-modern {
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--tb-shadow-sm);
}

.review-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--tb-slate-700);
  font-style: italic;
  margin: 0 0 18px;
}

.review-author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--tb-slate-100);
  padding-top: 12px;
}

.review-avatar-placeholder {
  width: 38px;
  height: 38px;
  background: var(--tb-navy-800);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 14px;
  color: var(--tb-navy-800);
}

.review-author-info span {
  display: block;
  font-size: 11px;
  color: var(--tb-slate-500);
}

/* SIKÇA SORULAN SORULAR */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.faq-list details {
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-sm);
  background: #ffffff;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--tb-navy-800);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  line-height: 1;
  color: var(--tb-accent);
}

.faq-list details[open] summary:after {
  content: "−";
}

.faq-list details > div {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--tb-slate-600);
}

/* TEKLİF FORMU */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.quote-form {
  background: #ffffff;
  border: 1px solid var(--tb-slate-200);
  border-radius: var(--tb-radius-md);
  padding: 30px;
  box-shadow: var(--tb-shadow-md);
}

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

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--tb-navy-800);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--tb-slate-300);
  border-radius: var(--tb-radius-sm);
  font-size: 14px;
  background: #ffffff;
  color: var(--tb-navy-800);
  outline: none;
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--tb-accent);
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.12);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--tb-slate-600);
  margin: 14px 0 22px;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.notice {
  padding: 14px 18px;
  border-radius: var(--tb-radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.notice.success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-note {
  font-size: 12px;
  color: var(--tb-slate-500);
  text-align: center;
  margin-top: 12px;
}

/* FOOTER */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid var(--tb-slate-200);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
}

.footer-grid h2 {
  font-size: 15px;
  font-weight: 800;
  color: var(--tb-navy-800);
  margin-bottom: 18px;
}

.footer-grid ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid ul.menu a {
  color: var(--tb-slate-600);
  text-decoration: none;
  font-size: 14px;
}

.footer-grid ul.menu a:hover {
  color: var(--tb-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: var(--tb-slate-500);
  flex-wrap: wrap;
}

/* ==========================================================================
   SABİT İLETİŞİM BUTONLARI (DESKTOP SAĞ ALT & MOBİL SAĞLI SOLLU BAR)
   ========================================================================== */

/* Masaüstü Sağ Alt Sabit Butonlar (Arama & WhatsApp) */
.floating-contact-desktop {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

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

.floating-phone {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.floating-phone:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

.floating-wa {
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
}

.floating-wa:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

/* Hafif Nabız / Dikkat Çekme Efekti */
.floating-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.5);
  z-index: -1;
  animation: pulse-border 2.5s infinite;
}

@keyframes pulse-border {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.12, 1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* Mobil Alt Sabit Bar Başlangıçta Gizli (Masaüstünde) */
.mobile-contact {
  display: none;
}

/* ==========================================================================
   TAM MOBİL VE DUYARLI (RESPONSIVE) MEDYA SORGULARI
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .topbar-right {
    display: none !important;
  }
  .topbar-container {
    justify-content: center;
    text-align: center;
  }
  .desktop-menu {
    display: none !important;
  }
  .header-phone-box {
    display: none !important;
  }
  .menu-toggle {
    display: block !important;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--tb-accent);
    padding: 20px;
    box-shadow: var(--tb-shadow-lg);
    z-index: 999;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .site-nav ul.menu a {
    font-size: 16px;
    font-weight: 700;
    color: var(--tb-navy-800);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--tb-slate-100);
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid, .quote-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Masaüstü butonlarını mobilde gizle */
  .floating-contact-desktop {
    display: none !important;
  }

  /* MOBİLDE SAĞLI SOLLU ARAMA & WHATSAPP ALT SİDEBARI */
  .mobile-contact {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
    margin: 0 !important;
  }

  .mobile-contact-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 58px !important;
    padding: 8px 14px !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
  }

  /* Sol Buton: Hemen Ara */
  .mobile-call-btn {
    background: #0f172a !important;
    color: #ffffff !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .mobile-call-btn:active {
    background: #1e293b !important;
  }

  /* Sağ Buton: WhatsApp */
  .mobile-wa-btn {
    background: #25d366 !important;
    color: #ffffff !important;
  }

  .mobile-wa-btn:active {
    background: #1eb956 !important;
  }

  .mobile-btn-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .mobile-btn-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .mobile-btn-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .mobile-btn-text strong {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    display: block !important;
  }

  .mobile-btn-text small {
    font-size: 11px !important;
    opacity: 0.9 !important;
    color: #ffffff !important;
    display: block !important;
    margin-top: 2px !important;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-modern {
    padding: 30px 0 42px;
  }
  .hero-copy h1 {
    font-size: 28px;
  }
  .hero-features-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-whatsapp {
    width: 100%;
  }
  .trust-metrics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .area-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-form {
    padding: 20px 16px;
  }
  .bottom-cta {
    padding: 44px 0 !important;
  }
  .bottom-cta .container {
    flex-direction: column;
    align-items: stretch !important;
  }
  .bottom-cta .container > div:last-child {
    flex-direction: column;
    align-items: stretch;
  }
  .bottom-cta .btn-primary,
  .bottom-cta .btn-whatsapp {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .area-grid-modern {
    grid-template-columns: 1fr;
  }
  .brand-name {
    font-size: 19px;
  }
  .mobile-btn-text strong {
    font-size: 13px !important;
  }
  .mobile-btn-text small {
    font-size: 10px !important;
  }
}
