/* ============================================================
   MODERN PREMIUM ENHANCEMENT LAYER
   Side Dental Centre — css/modern-enhance.css
   Tema BOZULMAZ — sadece üste ekler
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Red+Hat+Display:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------
   1. CSS VARIABLES (temadan renkleri alır)
   -------------------------------------------------------- */
:root {
  --mod-primary: #c41e3a;
  --mod-accent:  #1a2d4a;
  --mod-white:   #ffffff;
  --mod-glass:   rgba(255,255,255,0.12);
  --mod-shadow:  0 8px 32px rgba(0,0,0,0.12);
  --mod-radius:  16px;
  --mod-trans:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------
   2. SMOOTH SCROLL & SELECTION
   -------------------------------------------------------- */
html { scroll-behavior: smooth; }

::selection {
  background: var(--mod-primary);
  color: #fff;
}

/* --------------------------------------------------------
   3. GÜVEN ÇUBUĞU — En üstte sabit SSL/Güvenlik bandı
   -------------------------------------------------------- */
.sec-trust-bar {
  background: linear-gradient(90deg, #0d1117 0%, #1a2d4a 50%, #0d1117 100%);
  color: #e6edf3;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sec-trust-bar .tbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sec-trust-bar .tbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c9d1d9;
}

.sec-trust-bar .tbar-item svg {
  flex-shrink: 0;
}

.sec-trust-bar .tbar-item.tbar-green { color: #3fb950; }
.sec-trust-bar .tbar-item.tbar-gold  { color: #d29922; }
.sec-trust-bar .tbar-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* --------------------------------------------------------
   4. SCROLL ANIMASYONLARI
   -------------------------------------------------------- */
.mod-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--mod-trans), transform 0.7s var(--mod-trans);
}
.mod-reveal.mod-visible {
  opacity: 1;
  transform: translateY(0);
}
.mod-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--mod-trans), transform 0.7s var(--mod-trans);
}
.mod-reveal-left.mod-visible {
  opacity: 1;
  transform: translateX(0);
}
.mod-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--mod-trans), transform 0.7s var(--mod-trans);
}
.mod-reveal-right.mod-visible {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------
   5. FORM ALANLARI — Premium Görünüm
   -------------------------------------------------------- */
.price-input,
input[type="text"].price-input,
input[type="email"].price-input,
textarea.price-input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 10px !important;
  background: #fafafa !important;
  font-family: 'Inter', 'Red Hat Display', sans-serif !important;
  font-size: 14px !important;
  color: #333 !important;
  padding: 13px 16px !important;
}

.price-input:focus,
input[type="text"].price-input:focus,
input[type="email"].price-input:focus,
textarea.price-input:focus {
  border-color: var(--mod-primary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12) !important;
  outline: none !important;
}

/* --------------------------------------------------------
   6. BUTONLAR — Hover Animasyonu
   -------------------------------------------------------- */
.contact-btn,
.price-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  letter-spacing: 1px;
}

.contact-btn::after,
.price-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.contact-btn:hover::after,
.price-btn:hover::after {
  transform: translateX(0);
}

.contact-btn:hover,
.price-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22) !important;
}

/* --------------------------------------------------------
   7. STAT COUNTER BLOK — Güven sayaçları
   -------------------------------------------------------- */
.mod-stats-bar {
  background: linear-gradient(135deg, #1a2d4a 0%, #243b55 100%);
  padding: 40px 0;
  margin: 0;
}

.mod-stats-bar .stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.mod-stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px 30px;
  position: relative;
  color: #fff;
}

.mod-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.mod-stat-num {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.mod-stat-num span.mod-suffix {
  font-size: 24px;
  font-weight: 600;
  color: var(--mod-primary);
}

.mod-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

@media (max-width: 600px) {
  .mod-stat-item { flex: 1 1 140px; padding: 16px 15px; }
  .mod-stat-item::after { display: none; }
  .mod-stat-num { font-size: 32px; }
}

/* --------------------------------------------------------
   8. FLOATING AKSIYONLAR — WhatsApp & Scroll-to-Top
   -------------------------------------------------------- */
.mod-fab-group {
  position: fixed !important;
  inset: auto 22px 28px auto !important; /* sag-alt kilit */
  right: 22px !important;
  left: auto !important;
  bottom: 28px !important;
  top: auto !important;
  z-index: 99990 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mod-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 52px !important;
}

.mod-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  text-decoration: none;
}

.mod-fab-whatsapp {
  background: #25D366 !important; /* official WhatsApp green */
  border-color: rgba(255, 255, 255, 0.34) !important;
  animation: mod-pulse 2.8s ease-in-out infinite;
}

.mod-fab-top {
  background: linear-gradient(135deg, #0f1b2d 0%, #1b3352 100%) !important;
  border-color: rgba(199, 164, 92, 0.45) !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.25s ease;
}

.mod-fab-top.mod-visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes mod-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* --------------------------------------------------------
   9. CARD HOVERs — Servis, Blog vs. elementler
   -------------------------------------------------------- */
.col-md-4[style*="text-align: center"] {
  transition: transform 0.3s var(--mod-trans);
}
.col-md-4[style*="text-align: center"]:hover {
  transform: translateY(-6px);
}

/* --------------------------------------------------------
   10. SECTION AYRAÇLARI — Wave separator
   -------------------------------------------------------- */
.mod-wave-sep {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.mod-wave-sep svg {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------
   11. GÜVENİLİRLİK ROZET BANDI — Sertifikalar
   -------------------------------------------------------- */
.mod-cert-strip {
  background: #f5f5f7 !important;
  border-top: 1px solid #d2d2d7 !important;
  border-bottom: 1px solid #d2d2d7 !important;
  padding: 10px 0 !important;
  box-shadow: none !important;
}

.mod-cert-strip .strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}

.mod-cert-strip .strip-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #424245;
  letter-spacing: 0;
  line-height: 1.2;
}

.mod-cert-strip .strip-item svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.92;
}

/* --------------------------------------------------------
   12. İMAJ HOVER EFEKTİ
   -------------------------------------------------------- */
img.desaturate {
  filter: none;
  transition: filter 0.4s ease, transform 0.4s ease;
}
img.desaturate:hover {
  filter: brightness(1.05);
}

/* --------------------------------------------------------
   13. SAYFA GEÇİŞ OVERLAY
   -------------------------------------------------------- */
.mod-page-transition {
  position: fixed;
  inset: 0;
  background: var(--mod-accent);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* --------------------------------------------------------
   14. GÜVENLIK MÜHÜRÜ — Footer içi
   -------------------------------------------------------- */
.mod-secure-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f0f7ef 0%, #e8f5e9 100%);
  border: 1.5px solid #a5d6a7;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: 0.5px;
  margin: 16px auto;
  display: block;
  width: fit-content;
}

/* --------------------------------------------------------
   15. SCROLL PROGRESS BAR
   -------------------------------------------------------- */
.mod-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mod-primary), #ff6b6b);
  z-index: 99998;
  width: 0%;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------
   16. TOOLTIP — Input yardım ipuçları
   -------------------------------------------------------- */
.mod-input-wrap {
  position: relative;
}

/* --------------------------------------------------------
   17. RESPONSIVE İYİLEŞTİRMELER
   -------------------------------------------------------- */
@media (max-width: 768px) {
  .sec-trust-bar .tbar-dot { display: none; }
  .sec-trust-bar .tbar-inner { gap: 14px; font-size: 11px; }
  .mod-fab { width: 46px !important; height: 46px !important; }
  .mod-fab-group {
    inset: auto 14px 20px auto !important;
    right: 14px !important;
    left: auto !important;
    bottom: 20px !important;
  }
}

/* --------------------------------------------------------
   18. ULTRA POLISH (layout bozmadan)
   -------------------------------------------------------- */
:root {
  --mod-primary-soft: rgba(196, 30, 58, 0.14);
  --mod-surface: #ffffff;
  --mod-text-strong: #172033;
  --mod-text-muted: #5f687b;
}

body {
  color: var(--mod-text-strong);
  text-rendering: optimizeLegibility;
}

.section_title,
.title {
  color: var(--mod-text-strong);
  letter-spacing: 0.01em;
}

.section_subtitle {
  color: var(--mod-primary);
  letter-spacing: 0.08em;
}

a {
  transition: color .24s var(--mod-trans), opacity .24s var(--mod-trans), text-shadow .24s var(--mod-trans);
}

a:hover {
  text-shadow: 0 0 0.01px currentColor;
}

.btn,
.contact-btn,
.price-btn {
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.16);
}

.btn:hover,
.contact-btn:hover,
.price-btn:hover {
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.22) !important;
}

.header__bottom .menu .scroll_wrap > ul > li > a,
.footer_top_menu ul li a {
  position: relative;
}

.header__bottom .menu .scroll_wrap > ul > li > a::after,
.footer_top_menu ul li a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mod-primary), #d84d64);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s ease;
}

.header__bottom .menu .scroll_wrap > ul > li > a:hover::after,
.footer_top_menu ul li a:hover::after,
.header__bottom .menu .scroll_wrap > ul > li > a.active::after,
.footer_top_menu ul li a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.search_tour .search_tour_form,
.popular_destination__slider .slide_item,
.most_popular__section .slider_item,
.blog_item_img {
  border-radius: 14px;
  overflow: hidden;
}

.search_tour .search_tour_form,
.popular_destination__slider .slide_item,
.blog_item_img {
  box-shadow: 0 14px 36px rgba(23, 32, 51, 0.10);
}

.search_tour .search_tour_form:hover,
.popular_destination__slider .slide_item:hover,
.blog_item:hover .blog_item_img {
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.14);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--mod-primary) !important;
  box-shadow: 0 0 0 3px var(--mod-primary-soft);
}

.footer_center_right .text,
.blog_item_text,
.top_destination .description .text {
  color: var(--mod-text-muted);
}

/* Hareket hassasiyeti olan kullanıcılar için daha sakin deneyim */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------
   19. LUXURY TRUST LAYER (ultra lüks + güven)
   -------------------------------------------------------- */
:root {
  --mod-premium-navy: #0f1b2d;
  --mod-premium-navy-2: #16263d;
  --mod-premium-gold: #c7a45c;
  --mod-premium-gold-soft: rgba(199, 164, 92, 0.24);
  --mod-premium-ink: #101828;
}

body {
  color: var(--mod-premium-ink);
}

/* Top güven barını daha kurumsal göster */
.sec-trust-bar {
  background: linear-gradient(90deg, #0c1524 0%, #15263f 50%, #0c1524 100%);
  border-bottom: 1px solid rgba(199, 164, 92, 0.26);
  box-shadow: 0 8px 24px rgba(4, 10, 20, 0.35);
}

.sec-trust-bar .tbar-item {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sec-trust-bar .tbar-item.tbar-gold {
  color: #e8c987;
}

/* Header ve navigasyonda premium ışık etkisi */
.header__bottom {
  backdrop-filter: saturate(120%) blur(2px);
}

.header__bottom .menu .scroll_wrap > ul > li > a {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.header__bottom .menu .scroll_wrap > ul > li > a::after,
.footer_top_menu ul li a::after {
  background: linear-gradient(90deg, #b88d3b, #e7cb8f, #b88d3b);
  height: 2px;
}

/* Başlıkları daha "klinik premium" göstermek için */
.section_title,
.slide__text-heading,
.most_popular__section .slider_item__content .title,
.popular_destination__slider .slide_item_content .slide_title {
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(10, 23, 45, 0.10);
}

/* Kart ve panellerde lüks yüzey */
.search_tour .search_tour_form,
.popular_destination__slider .slide_item,
.blog_item_img,
.most_popular__section .slider_item {
  border: 1px solid rgba(199, 164, 92, 0.22);
  box-shadow:
    0 14px 34px rgba(12, 24, 44, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.search_tour .search_tour_form:hover,
.popular_destination__slider .slide_item:hover,
.blog_item:hover .blog_item_img {
  box-shadow:
    0 20px 44px rgba(12, 24, 44, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

/* CTA butonları: güven veren premium geçiş */
.btn,
.contact-btn,
.price-btn {
  background-image: linear-gradient(135deg, #b22640 0%, #cc3956 52%, #9e1f37 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn::before,
.contact-btn::before,
.price-btn::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* Form alanları daha steril ve güven veren */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-color: rgba(15, 27, 45, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px var(--mod-premium-gold-soft);
}

/* Footer: güvenilir kurum hissi */
.footer {
  background: linear-gradient(180deg, #0c1220 0%, #070c15 100%);
}

.footer_bottom {
  border-top: 1px solid rgba(199, 164, 92, 0.20);
}

.footer_center_right ._title {
  color: rgba(231, 203, 143, 0.80);
  letter-spacing: 0.14em;
}

/* --------------------------------------------------------
   20. LEGACY CSS FIXES (global float/width çakışmalarını düzelt)
   -------------------------------------------------------- */
.mod-stats-bar,
.mod-cert-strip,
.trust-badges-section,
.certificates-section {
  clear: both;
  position: relative;
  z-index: 2;
}

.mod-stats-bar .stats-inner,
.mod-stats-bar .mod-stat-item,
.mod-stats-bar .mod-stat-num,
.mod-stats-bar .mod-stat-label,
.mod-stats-bar .mod-stat-num span {
  float: none !important;
  width: auto !important;
}

.mod-stats-bar .stats-inner {
  display: flex !important;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.mod-stats-bar .mod-stat-item {
  display: block;
  min-width: 180px;
}

.mod-stats-bar .mod-stat-num {
  display: block !important;
  margin: 0 0 8px !important;
}

.mod-stats-bar .mod-stat-num .mod-counter,
.mod-stats-bar .mod-stat-num .mod-suffix {
  display: inline !important;
}

.mod-stats-bar .mod-stat-label {
  display: block !important;
  line-height: 1.35;
}

.trust-badges-section .trust-badges-wrapper,
.trust-badges-section .trust-badge,
.trust-badges-section .badge-content,
.trust-badges-section .badge-stars,
.trust-badges-section .badge-rating,
.certificates-section .certificates-wrapper,
.certificates-section .certificate-badge {
  float: none !important;
  width: auto !important;
}

.trust-badges-section .trust-badges-wrapper,
.certificates-section .certificates-wrapper {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 900px) {
  .mod-stats-bar .stats-inner {
    gap: 10px;
  }

  .mod-stats-bar .mod-stat-item {
    min-width: 140px;
    padding: 14px 10px;
  }
}

/* --------------------------------------------------------
   21. ULTRA ULTRA LUXE FINISH
   -------------------------------------------------------- */
:root {
  --mod-luxe-gold-1: #b88d3b;
  --mod-luxe-gold-2: #f0d9a2;
  --mod-luxe-navy-1: #0b1525;
  --mod-luxe-navy-2: #172b46;
}

/* Hero/section başlıklarına premium shimmer */
.section_title,
.detail-title4,
.trust-title {
  position: relative;
}

.section_title::after,
.detail-title4::after,
.trust-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, transparent 0%, var(--mod-luxe-gold-2) 48%, transparent 100%);
  box-shadow: 0 0 14px rgba(240, 217, 162, 0.55);
}

/* Trust badges: daha net premium cam görünüm */
.trust-badges-section {
  background:
    radial-gradient(900px 280px at 15% -25%, rgba(240, 217, 162, 0.12), transparent 62%),
    radial-gradient(1000px 300px at 85% 110%, rgba(184, 141, 59, 0.10), transparent 60%);
}

.trust-badges-section .trust-badge {
  border: 1px solid rgba(184, 141, 59, 0.25) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 255, 0.88)) !important;
  box-shadow:
    0 18px 36px rgba(12, 22, 40, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.85) inset !important;
  backdrop-filter: blur(2px);
}

.trust-badges-section .trust-badge:hover {
  transform: translateY(-5px) scale(1.01) !important;
  box-shadow:
    0 24px 44px rgba(12, 22, 40, 0.20),
    0 1px 0 rgba(255, 255, 255, 0.95) inset !important;
}

/* Certificates: vitrinde sertifika hissi */
.certificates-section .certificate-badge {
  border: 1px solid rgba(184, 141, 59, 0.35) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 255, 0.92)) !important;
  box-shadow: 0 20px 45px rgba(11, 21, 37, 0.16), 0 1px 0 rgba(255, 255, 255, 0.92) inset !important;
}

/* Contact box: daha güven veren panel */
.background .contactmargin {
  border: 1px solid rgba(184, 141, 59, 0.26) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(251, 253, 255, 0.955)) !important;
  box-shadow:
    0 24px 52px rgba(12, 23, 42, 0.20),
    0 1px 0 rgba(255, 255, 255, 0.88) inset !important;
}

.background .contactmargin .detail-title4 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CTA butonları: ultra premium derinlik */
.contact-btn,
.price-btn,
.btn {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.20);
  box-shadow:
    0 14px 28px rgba(10, 18, 35, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.40) inset !important;
}

.contact-btn:hover,
.price-btn:hover,
.btn:hover {
  transform: translateY(-3px) !important;
}

/* Floating actions daha kaliteli */
.mod-fab {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 24px rgba(8, 16, 31, 0.30),
    0 1px 0 rgba(255, 255, 255, 0.34) inset;
}

.mod-fab-whatsapp:hover {
  background: #1fbe5d !important;
}

.mod-fab-top:hover {
  background: linear-gradient(135deg, #13243a 0%, #24436b 100%) !important;
}

/* Hafif lüks hareket */
@keyframes mod-luxe-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(240, 217, 162, 0); }
  50% { box-shadow: 0 0 28px rgba(240, 217, 162, 0.22); }
}

.mod-stats-bar {
  animation: mod-luxe-glow 6s ease-in-out infinite;
}

/* --------------------------------------------------------
   22. ULTRA PREMIUM FOOTER
   -------------------------------------------------------- */
.mod-ultra-footer {
  background:
    radial-gradient(1200px 320px at 8% -18%, rgba(199, 164, 92, 0.16), transparent 60%),
    radial-gradient(1000px 320px at 92% 115%, rgba(196, 30, 58, 0.14), transparent 58%),
    linear-gradient(180deg, #0a1220 0%, #070d17 100%);
  border-top: 1px solid rgba(199, 164, 92, 0.30);
  color: #e7edf8;
  padding: 52px 0 20px;
  clear: both;
  position: relative;
  z-index: 2;
}

.mod-ultra-footer .container,
.mod-ultra-footer .mod-footer-grid,
.mod-ultra-footer .mod-footer-col,
.mod-ultra-footer .mod-footer-bottom {
  float: none !important;
  width: auto !important;
}

.mod-footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 26px;
}

.mod-footer-col {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(199, 164, 92, 0.24);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 16px 36px rgba(3, 9, 18, 0.32), 0 1px 0 rgba(255, 255, 255, 0.10) inset;
}

.mod-footer-title {
  margin: 0 0 12px;
  color: #f0d9a2;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mod-footer-text {
  margin: 0;
  color: rgba(231, 237, 248, 0.84);
  line-height: 1.65;
  font-size: 13px;
}

.mod-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mod-footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mod-footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.mod-footer-links,
.mod-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mod-footer-links li,
.mod-footer-contact li {
  margin: 0 0 10px;
  color: rgba(231, 237, 248, 0.88);
  font-size: 13px;
}

.mod-footer-links a,
.mod-footer-contact a {
  color: rgba(231, 237, 248, 0.9);
  text-decoration: none;
}

.mod-footer-links a:hover,
.mod-footer-contact a:hover {
  color: #f0d9a2;
}

.mod-footer-contact i {
  width: 18px;
  margin-right: 8px;
  color: #c7a45c;
  text-align: center;
}

.mod-footer-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b22640 0%, #cd3f5b 55%, #8e1c33 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(3, 9, 18, 0.36);
}

.mod-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(3, 9, 18, 0.44);
}

.mod-footer-seal {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(240, 217, 162, 0.92);
  letter-spacing: 0.06em;
}

.mod-footer-bottom {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(231, 237, 248, 0.72);
  font-size: 12px;
}

.mod-footer-copy,
.mod-footer-note {
  display: block;
}

@media (max-width: 992px) {
  .mod-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .mod-ultra-footer {
    padding: 36px 0 18px;
  }

  .mod-footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mod-footer-col {
    padding: 18px 16px;
  }

  .mod-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* --------------------------------------------------------
   23. APPLE-LIKE FOOTER OVERRIDE
   -------------------------------------------------------- */
.mod-ultra-footer {
  background: #f5f5f7 !important;
  border-top: 1px solid #d2d2d7 !important;
  color: #1d1d1f !important;
  padding: 34px 0 14px !important;
}

.mod-footer-grid {
  gap: 18px !important;
}

.mod-footer-col {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 6px !important;
}

.mod-footer-title {
  color: #1d1d1f !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-bottom: 10px !important;
}

.mod-footer-text,
.mod-footer-links li,
.mod-footer-contact li,
.mod-footer-copy,
.mod-footer-note {
  color: #6e6e73 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.mod-footer-links a,
.mod-footer-contact a {
  color: #424245 !important;
}

.mod-footer-links a:hover,
.mod-footer-contact a:hover {
  color: #1d1d1f !important;
  text-decoration: underline !important;
}

.mod-footer-contact i {
  color: #8e8e93 !important;
}

.mod-footer-social a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid #d2d2d7 !important;
}

.mod-footer-social a:hover {
  background: #f0f0f2 !important;
  transform: none !important;
}

.mod-footer-btn {
  background: #0071e3 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  padding: 8px 14px !important;
}

.mod-footer-btn:hover {
  background: #0077ed !important;
  transform: none !important;
}

.mod-footer-seal {
  color: #6e6e73 !important;
  font-size: 11px !important;
  letter-spacing: 0 !important;
}

.mod-footer-bottom {
  border-top: 1px solid #d2d2d7 !important;
  margin-top: 10px !important;
  padding-top: 10px !important;
}

/* --------------------------------------------------------
   24. SAFE PERFORMANCE PASS (layout bozmadan)
   -------------------------------------------------------- */
.trust-badges-section,
.mod-stats-bar,
.background,
.certificates-section,
.mod-cert-strip {
  content-visibility: auto;
  contain-intrinsic-size: 1px 560px;
}

/* Scroll/hover maliyetini mobilde dusur */
@media (max-width: 768px), (hover: none) {
  .trust-badge,
  .certificate-badge,
  .mod-stat-item,
  .mod-fab,
  .contact-btn,
  .price-btn,
  .btn {
    box-shadow: none !important;
    transform: none !important;
  }

  .mod-stats-bar {
    animation: none !important;
  }
}

/* --------------------------------------------------------
   25. PREMIUM CONVERSION BAR
   -------------------------------------------------------- */
.mod-conversion-bar {
  background: linear-gradient(90deg, #f7f8fb 0%, #ffffff 50%, #f7f8fb 100%);
  border-top: 1px solid #e4e7ee;
  border-bottom: 1px solid #e4e7ee;
  padding: 14px 0;
  width: 100% !important;
  float: none !important;
  clear: both !important;
}

.mod-conv-wrap,
.mod-conv-item,
.mod-conv-actions {
  float: none !important;
  width: auto !important;
}

.mod-conversion-bar .container {
  width: 100% !important;
  max-width: 1220px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  float: none !important;
  display: block !important;
  flex: none !important;
  text-align: center !important;
}

.mod-conv-wrap {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: auto !important;
  float: none !important;
  margin: 0 auto !important;
}

.mod-conv-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2d3748;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 999px;
  padding: 8px 13px;
  white-space: nowrap;
  line-height: 1;
}

.mod-conv-item i {
  color: #0f766e;
  width: auto !important;
  float: none !important;
}

.mod-conv-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.mod-conv-btn {
  display: inline-block;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}

.mod-conv-btn-wa {
  background: #25D366;
  color: #fff !important;
  border: 1px solid #1fbf5a;
}

.mod-conv-btn-wa:hover {
  background: #1fbf5a;
}

.mod-conv-btn-quote {
  background: #0f62fe;
  color: #fff !important;
  border: 1px solid #0c53d6;
}

.mod-conv-btn-quote:hover {
  background: #0c53d6;
}

@media (max-width: 1100px) {
  .mod-conv-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --------------------------------------------------------
   26. FOOTER TRUST CONTENT CENTER LOCK
   -------------------------------------------------------- */
.certificates-text {
  width: 100% !important;
  float: none !important;
  display: block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.mod-cert-strip {
  text-align: center !important;
}

.mod-cert-strip .strip-inner {
  width: auto !important;
  float: none !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.mod-cert-strip .strip-item {
  float: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
