/* =========================
   ADANA YOL YARDIM - FINAL TEMİZ CSS
   Tekrarsız, sade, mobil uyumlu sürüm
========================= */

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0b1120;
  --bg-soft: #111827;
  --bg-soft-2: #0f172a;
  --white: #ffffff;
  --text-soft: #cbd5e1;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.20);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
iframe,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

section {
  position: relative;
  padding: 90px 0;
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

/* ===== ORTAK METİN ===== */
.section-top {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-mini-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #fdba74;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.section-title.left {
  margin-bottom: 0;
}

.section-desc {
  color: var(--text-soft);
  font-size: 17px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr 160px 44px;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.logo-top {
  color: #fdba74;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-bottom {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.desktop-nav a {
  position: relative;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  transition: 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--orange);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.header-call-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

.header-call-btn:hover {
  background: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a.active {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
}

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #fb923c, #f97316);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f97316, #ea580c);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
  transition: 0.25s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #1ebe5d, #18a84f);
}

/* ===== HERO ===== */
.hero {
  overflow: hidden;
  padding: 90px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), transparent 25%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.10), transparent 22%),
    linear-gradient(135deg, #0b1120 0%, #111827 55%, #0f172a 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
}

.hero-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.badge,
.hero-card-badge,
.contact-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #fdba74;
  font-size: 13px;
  font-weight: 700;
}

.badge,
.hero-card-badge {
  margin-bottom: 14px;
}

.hero-text h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-text p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--text-soft);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 20px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 76px;
  padding: 12px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  color: #e5e7eb;
  transition: 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.feature-item span {
  font-size: 16px;
  line-height: 1;
}

.feature-item strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-card-inner {
  width: 100%;
  max-width: 430px;
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-card-inner h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.3;
}

.hero-card-inner p {
  margin: 0 0 24px;
  color: var(--text-soft);
}

.mini-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.mini-box {
  padding: 18px 10px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--orange);
}

.mini-box span {
  font-size: 13px;
  color: var(--text-soft);
}

.hero-visual {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual-line {
  width: 60px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
}

.hero-visual-content {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.hero-visual-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.12);
  font-size: 24px;
  flex-shrink: 0;
}

.hero-visual-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--white);
}

.hero-visual-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

/* ===== HERO MARKA BLOĞU ===== */
.hero-brand-glow {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 14px 22px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.brand-line-1,
.brand-line-2 {
  display: block;
  position: relative;
  z-index: 2;
}

.brand-line-1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.brand-line-2 {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fdba74;
  opacity: 0.95;
}

.hero-brand-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.45);
  z-index: 2;
}

.brand-shine {
  position: absolute;
  top: -30%;
  left: -35%;
  width: 26%;
  height: 170%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.06) 35%,
      rgba(255, 255, 255, 0.30) 50%,
      rgba(255, 255, 255, 0.06) 65%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 28px 0 10px;
  background: rgba(10, 15, 29, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.trust-item {
  padding: 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  color: var(--orange);
}

.trust-item span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-soft);
}

/* ===== SECTION ARKAPLANLARI ===== */
.services,
.faq-section,
.sales-section,
.contact {
  background: #0f172a;
}

.why-us,
.other-services,
.cta-section,
.map-section {
  background: #111827;
}

.about,
.reviews-section {
  background: #0b1120;
}

/* ===== KARTLAR ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.review-card,
.why-card,
.faq-item,
.contact-box,
.cta-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 28px;
  border-radius: 22px;
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.30);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 28px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card h3,
.why-card h3,
.faq-item h3 {
  margin: 0 0 12px;
}

.service-card h3 {
  font-size: 22px;
}

.service-card p,
.why-card p,
.review-card p,
.faq-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
}

.why-card,
.review-card {
  padding: 26px;
  border-radius: 20px;
}

.review-card strong {
  color: var(--white);
  font-size: 15px;
}

.why-card:hover,
.review-card:hover {
  transform: translateY(-4px);
}

/* ===== ABOUT ===== */
.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-box>div {
  width: 100%;
}

.about-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  border-radius: 18px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 60px 20px;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-buttons {
  justify-content: center;
  margin-top: 20px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 60px 20px;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.map-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.map-box iframe {
  width: 100%;
  height: 100%;
}

.contact-box {
  width: 100%;
  padding: 26px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.contact-card-top {
  margin-bottom: 22px;
}

.contact-card-top h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--white);
}

.contact-card-top p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 16px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  text-align: left;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
}

.contact-info-item:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.25);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  font-size: 18px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--white);
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--orange);
  font-weight: 700;
}

/* ===== QUICK INFO ===== */
.mobile-quick-info {
  display: none;
}

.mobile-quick-info-center {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  color: #e5e7eb;
}

.quick-info-item span {
  font-size: 16px;
  line-height: 1;
}

.quick-info-item strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.hero .mobile-quick-info {
  display: none !important;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 100px;
  background: #0a0f1d;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer-col p {
  max-width: 420px;
  color: var(--text-soft);
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 12px;
  z-index: 1100;
}

.floating-buttons.hide {
  transform: translateY(120%);
  opacity: 0;
}

.floating-btn {
  flex: 1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.call-btn {
  background: linear-gradient(180deg, #fb923c, #f97316);
}

.whatsapp-btn {
  background: linear-gradient(180deg, #25d366, #1ebe5d);
}

.call-btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.floating-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.floating-btn .shine {
  position: absolute;
  top: -20%;
  left: -35%;
  width: 30%;
  height: 140%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0.08) 65%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: floatingShine 3.2s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatingShine {
  0% {
    left: -40%;
  }

  100% {
    left: 120%;
  }
}

.floating-btn span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.4s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 4;
}

@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.floating-btn:active {
  transform: scale(0.96);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.30);
}

/* ===== SCROLL TOP ===== */
#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 999;
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: 0.3s;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: var(--orange-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 200px 1fr 150px 44px;
  }

  .desktop-nav {
    gap: 18px;
  }
}

@media (max-width: 992px) {

  .service-grid,
  .why-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-bar-height: 66px;
  }

  section {
    padding: 70px 0;
  }

  .header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .desktop-nav,
  .header-call-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo {
    flex: 1;
  }

  .logo-top {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .logo-bottom {
    font-size: 18px;
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding: 18px 0 calc(var(--mobile-bar-height) + 22px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .badge {
    margin-bottom: 8px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-text p,
  .section-desc,
  .about-text,
  .contact-box p {
    font-size: 16px;
  }

  .hero-text p {
    max-width: 92%;
    margin: 0 auto 12px;
    line-height: 1.5;
  }

  .hero-buttons,
  .hero-card {
    display: none !important;
  }

  .hero-features {
    width: 100%;
    max-width: 350px;
    margin: 8px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-item {
    min-height: 76px;
    padding: 10px 8px;
    border-radius: 14px;
    flex-direction: column;
    gap: 6px;
  }

  .feature-item span {
    font-size: 15px;
  }

  .feature-item strong {
    font-size: 13px;
    line-height: 1.3;
  }

  .hero-brand-glow {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .brand-line-1 {
    font-size: 20px;
  }

  .brand-line-2 {
    font-size: 11px;
    letter-spacing: 0.9px;
  }

  .hero-brand-glow::after {
    width: 58px;
    bottom: 6px;
  }

  .hero+section {
    padding-top: 22px;
  }

  .hero-grid,
  .service-grid,
  .about-box,
  .why-grid,
  .reviews-grid,
  .footer-grid,
  .trust-grid,
  .mini-info {
    grid-template-columns: 1fr !important;
  }

  .contact {
    padding: 40px 16px;
  }

  .contact-layout {
    gap: 16px;
  }

  .map-box {
    height: 260px;
  }

  .contact-box {
    padding: 20px;
  }

  .contact-card-top h3 {
    font-size: 21px;
  }

  .contact-info-item {
    padding: 14px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .service-card,
  .review-card,
  .why-card,
  .faq-item,
  .contact-box,
  .cta-box {
    border-radius: 18px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    border-radius: 16px;
  }

  .floating-buttons {
    display: flex !important;
    left: 6px;
    right: 6px;
    bottom: 6px;
    gap: 8px;
  }

  .floating-btn {
    min-height: 54px;
    border-radius: 16px;
    font-size: 14px;
  }

  .call-btn,
  .whatsapp-btn {
    text-indent: -9999px;
  }

  

     .call-btn::before {
       content: "📞 Hemen Ara (7/24)";
     }

  

  .cta-box .mobile-quick-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .hero .mobile-quick-info {
    display: none !important;
  }

  #scrollTopBtn {
    right: 12px;
    bottom: 76px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {

  .hero-card-inner,
  .service-card,
  .contact-box,
  .cta-box {
    padding: 22px;
  }

  .trust-bar {
    padding: 24px 0;
  }

  .trust-item {
    min-height: 88px;
    padding: 14px 10px;
    border-radius: 16px;
  }

  .trust-item strong {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .trust-item span {
    font-size: 12px;
  }
}
/* ===============================
   WHATSAPP BUTON İKON TEMİZ AYAR
=============================== */

/* ===============================
   MOBİL WHATSAPP BUTON TEMİZ
=============================== */

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 800;
}
/* ===============================
   MOBİL ALT BUTONLARI ESKİ GİBİ YAZILI HALE DÖNDÜR
=============================== */

@media (max-width: 768px) {
  .floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 0 !important;
    /* iç metin varsa gizle */
    font-weight: 800;
    text-indent: 0 !important;
    overflow: hidden;
  }

  

  .call-btn::before {
    position: static !important;
    transform: none !important;
    display: block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    z-index: 3;
    text-indent: 0 !important;
  }

 

  
}
/* ===============================
   BUTON İKON / YAZI DÜZELTME FİNAL
=============================== */

/* MASAÜSTÜ HERO WHATSAPP BUTONU */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp .btn-icon {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  transform: translateY(1px);
}

/* MOBİL ALT SABİT BUTONLAR */
@media (max-width: 768px) {
  .floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0 !important;
    text-indent: 0 !important;
    gap: 0 !important;
  }

  /* Mobilde eklediğin img ikonlar görünmesin */
  

  .call-btn::before {
    display: block;
    position: static !important;
    transform: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
  }

    .call-btn::before {
      content: "📞 Hemen Ara (7/24)";
    }

  
}
/* ===============================
   HERO FEATURES - PREMIUM TOUCH
=============================== */

.hero-features {
  gap: 12px;
}

.feature-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  transition: all 0.25s ease;
}

/* hover sadece masaüstü */
@media (min-width: 769px) {
  .feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }
}

/* ikon kısmı */
.feature-item span {
  font-size: 18px;
  opacity: 0.9;
}

/* yazı */
.feature-item strong {
  font-size: 13px;
  letter-spacing: 0.2px;
}
/* ===============================
   MOBİL WHATSAPP BUTONU - İKONLU FINAL
=============================== */

@media (max-width: 768px) {
  .whatsapp-btn {
    position: relative;
  }

  

  
}
/* ===============================
   MOBİL WHATSAPP FINAL HİZALAMA
=============================== */

@media (max-width: 768px) {

  .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .floating-wp-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
  }

    .floating-wp-text {
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
      padding-left: 4px;
    }
}
.seo-block {
  padding: 60px 0;
  background: #0b1120;
}

.seo-block h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.seo-block p {
  margin-bottom: 24px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}
/* ===== HEADER LOGO ICON OPTIMIZATION ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

@media (max-width: 768px) {
  .logo {
    gap: 10px;
  }

  .logo-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .logo-icon {
    width: 27px;
    height: 27px;
  }
}
/* ===== ABOUT LINK OPTIMIZATION ===== */
.about-text a {
  color: #fdba74;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 186, 116, 0.35);
  padding-bottom: 1px;
  transition: 0.25s ease;
}

.about-text a:hover {
  color: #ffffff;
  border-bottom-color: rgba(249, 115, 22, 0.95);
  box-shadow: inset 0 -1px 0 rgba(249, 115, 22, 0.95);
}
/* ===== PREMIUM FOOTER ===== */
.premium-footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand-col {
  padding-right: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  flex-shrink: 0;
}

.footer-brand-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand-text h3 {
  margin: 0 0 4px;
  font-size: 22px;
  color: #ffffff;
}

.footer-brand-text span {
  display: block;
  color: #fdba74;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand-desc {
  margin: 0 0 18px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #f97316;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 17px;
  color: #ffffff;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: #f97316;
  transform: translateX(5px);
}

.premium-footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.premium-footer-bottom p,
.premium-footer-bottom span {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 992px) {
  .premium-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .premium-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand-col {
    padding-right: 0;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .premium-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-brand-icon {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-badges span {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #f97316;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.12);
}
.footer-brand-desc {
  color: #e2e8f0;
  font-weight: 500;
}
.footer-brand {
  align-items: center;
  gap: 16px;
}

.footer-brand-icon {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.premium-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -1px 0 rgba(249, 115, 22, 0.15);
}
/* ===== PREMIUM HEADER ===== */
.header {
  background: rgba(6, 13, 30, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.logo-icon-wrap {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
  overflow: hidden;
}

.logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.logo-top {
  color: #fdba74;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.logo-bottom {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.desktop-nav a {
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fdba74;
}

.desktop-nav a::after {
  height: 2px;
  background: linear-gradient(90deg, #f97316, #fdba74);
}

.header-call-btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(249, 115, 22, 0.28);
  color: #fdba74;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.header-call-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(249, 115, 22, 0.45);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.24), rgba(249, 115, 22, 0.12));
}

.menu-toggle {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.menu-toggle:hover {
  border-color: rgba(249, 115, 22, 0.28);
}

.mobile-menu {
  background: rgba(10, 17, 35, 0.98);
  backdrop-filter: blur(10px);
}

.mobile-menu a {
  font-weight: 600;
}

@media (max-width: 992px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .header-call-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 76px;
  }

  .logo {
    gap: 10px;
  }

  .logo-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .logo-icon {
    width: 26px;
    height: 26px;
  }

  .logo-top {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .logo-bottom {
    font-size: 19px;
  }
}
.logo-bottom {
  font-size: 20px;
  line-height: 0.95;
  letter-spacing: -0.6px;
}
.header-call-btn {
  padding: 0 16px;
  font-size: 13px;
}
.logo-bottom {
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.logo-top {
  color: #f97316;
  opacity: 1;
}
.header {
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}
.header-call-btn {
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}
/* ===== HERO FINAL OPTIMIZATION ===== */
.hero-text h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-text p {
  max-width: 760px;
  color: #dbe4f0;
}

.hero-features {
  margin-top: 22px;
}

.feature-item {
  min-height: 82px;
}

.feature-item strong {
  font-size: 14px;
  line-height: 1.35;
}

.hero-brand-glow {
  margin-top: 22px;
}

.brand-line-2 {
  letter-spacing: 1px;
}

.hero-card-inner {
  position: relative;
  overflow: hidden;
}

.hero-card-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-card-badge {
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.12);
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.12;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .feature-item strong {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .hero-text h1 {
    line-height: 1.08 !important;
    margin-bottom: 12px !important;
  }

  .hero-text p {
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }
}
.logo-icon-wrap {
  width: 58px !important;
  height: 58px !important;
}

.logo-icon {
  width: 40px !important;
  height: 40px !important;
}
@media (max-width: 768px) {
  .logo-icon-wrap {
    width: 48px !important;
    height: 48px !important;
  }

  .logo-icon {
    width: 32px !important;
    height: 32px !important;
  }
}
.logo-top {
  font-size: 13px !important;
}

.logo-bottom {
  font-size: 24px !important;
}
@media (max-width: 768px) {
  .logo-top {
    font-size: 12px !important;
  }

  .logo-bottom {
    font-size: 19px !important;
  }
}
/* WHATSAPP İKONLARI - BİRAZ DAHA BÜYÜK */
.btn-whatsapp .btn-icon {
  width: 30px !important;
  height: 30px !important;
}

@media (max-width: 768px) {
  .floating-wp-icon {
    width: 27px !important;
    height: 27px !important;
  }
}
/* FOOTER EN ALT SATIR DÜZELTME */
.premium-footer-bottom,
.footer-bottom.premium-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.premium-footer-bottom p,
.footer-bottom.premium-footer-bottom p {
  margin: 0;
}

.premium-footer-bottom span,
.footer-bottom.premium-footer-bottom span {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {

  .premium-footer-bottom,
  .footer-bottom.premium-footer-bottom {
    gap: 6px;
    padding-top: 18px;
  }

  .premium-footer-bottom p,
  .premium-footer-bottom span,
  .footer-bottom.premium-footer-bottom p,
  .footer-bottom.premium-footer-bottom span {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* =========================
   PREMIUM SCROLL NAV - SICAK TON
========================= */
.scroll-nav {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  z-index: 1200;
}

@media (max-width: 768px) {
  .scroll-nav {
    right: 14px;
    bottom: 84px;
    width: 48px;
    height: 48px;
  }
}

#scrollTopBtn,
#scrollDownBtn {
  position: relative;
  width: 54px;
  height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

#scrollTopBtn span,
#scrollDownBtn span {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

#scrollTopBtn::before,
#scrollDownBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}

#scrollTopBtn {
  background: linear-gradient(180deg, #fb923c, #f97316);
  box-shadow:
    0 16px 34px rgba(249, 115, 22, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.20);
}

#scrollDownBtn {
  background: linear-gradient(180deg, #fdba74, #f97316);
  box-shadow:
    0 16px 34px rgba(249, 115, 22, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.20);
}

#scrollTopBtn:hover,
#scrollDownBtn:hover {
  transform: translateY(-3px);
}

#scrollTopBtn:hover {
  box-shadow:
    0 22px 38px rgba(249, 115, 22, 0.34),
    0 10px 22px rgba(0, 0, 0, 0.24);
}

#scrollDownBtn:hover {
  box-shadow:
    0 22px 38px rgba(249, 115, 22, 0.30),
    0 10px 22px rgba(0, 0, 0, 0.24);
}

#scrollTopBtn:active,
#scrollDownBtn:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  .scroll-nav {
    right: 14px;
    bottom: 84px;
    gap: 8px;
  }

  #scrollTopBtn,
  #scrollDownBtn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  #scrollTopBtn span,
  #scrollDownBtn span {
    font-size: 21px;
  }
}
@media (max-width: 768px) {

  #scrollTopBtn,
  #scrollDownBtn {
    border-radius: 16px;
  }
}
/* SCROLL BUTONLARI - AYNI NOKTADA ÇALIŞSIN */
.scroll-nav {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  width: 54px !important;
  height: 54px !important;
  z-index: 1200 !important;
}

#scrollTopBtn,
#scrollDownBtn {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .scroll-nav {
    right: 14px !important;
    bottom: 84px !important;
    width: 48px !important;
    height: 48px !important;
  }
}