/* ===========================================================
   Şahinler Balıkçılık — Tema CSS (Bootstrap 5 üzeri)
   =========================================================== */
:root {
  --primary: #16a6df;
  --primary-dark: #1391c4;
  --primary-soft: #e9f6fc;
  --navy: #15263a;
  --navy-2: #1c3149;
  --muted: #6b7886;
  --line: #e7edf2;
  --bg-soft: #f4f9fc;
  --wa: #25d366;
  --radius: 18px;
  --shadow-sm: 0 10px 30px rgba(20, 38, 58, .07);
  --shadow-md: 0 22px 50px rgba(20, 38, 58, .12);
  --ff-head: "Poppins", system-ui, sans-serif;
  --ff-body: "Poppins", system-ui, sans-serif;
}

* { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--navy);
  font-weight: 700;
}

a { text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; }
section { position: relative; }

.text-primary-c { color: var(--primary) !important; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--ff-head);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all .28s ease;
}
.btn-brand {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 26px rgba(22, 166, 223, .35);
}
.btn-brand:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); }
.btn-light-brand {
  background: #fff;
  color: var(--navy);
}
.btn-light-brand:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-outline-brand {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-brand:hover { background: var(--primary); color: #fff; }

/* ---------- Section heading ---------- */
.eyebrow {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  font-size: 15px;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 10px;
}
.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-lead { max-width: 640px; }

/* ===========================================================
   TOP BAR
   =========================================================== */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 13.5px;
  padding: 7px 0;
}
.topbar a { color: #fff; }
.topbar a:hover { color: rgba(255,255,255,.75); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-item i { font-size: 13px; }
.topbar .socials { display: inline-flex; align-items: center; gap: 6px; }
.topbar .socials a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-size: 12px;
  transition: background .2s ease;
}
.topbar .socials a:hover { background: #fff; color: var(--primary); }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header {
  background: #fff;
  position: relative;
  z-index: 1030;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(20,38,58,.05);
}
.nav-shell {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
}
.nav-shell::before { display: none; }

.navbar-brand { padding: 10px 0; }
.navbar-brand img { height: 100px; transition: height .3s ease; }

.navbar .nav-link {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--navy);
  padding: 22px 14px !important;
  font-size: 15px;
  position: relative;
  transition: color .25s ease;
}
.navbar .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.navbar .nav-link:hover { color: var(--primary); }
.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link:not(.dropdown-toggle).active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--primary); }

.navbar .nav-link.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}
.navbar .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  margin-top: 0;
  min-width: 200px;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navbar .dropdown-item {
  font-family: var(--ff-head);
  font-weight: 500;
  border-radius: 9px;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 14.5px;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item.active { background: var(--primary-soft); color: var(--primary); }

/* Masaüstünde hover ile aç */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeDown .2s ease;
  }
  .dropdown-submenu { position: relative; }
  .dropdown-submenu > .dropdown-menu {
    top: 0; left: 100%;
    margin-top: -10px;
    display: none;
  }
  .dropdown-submenu:hover > .dropdown-menu { display: block; }
  .dropdown-submenu > .dropdown-item::after {
    content: "";
    display: inline-block;
    float: right;
    margin-top: 6px;
    margin-left: 8px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid currentColor;
  }
}
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    box-shadow: none;
    border-radius: 10px;
    margin: 4px 0 4px 14px;
    padding: 6px;
    background: var(--bg-soft);
  }
  .dropdown-submenu > .dropdown-item::after {
    content: "";
    display: inline-block;
    float: right;
    margin-top: 6px;
    margin-left: 8px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid currentColor;
  }
}

.header-cta { white-space: nowrap; }

/* Hamburger */
.menu-burger {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--line);
  font-size: 17px;
  flex-shrink: 0;
  transition: all .2s ease;
}
.menu-burger:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Sticky — küçülür */
.site-header.is-stuck {
  position: fixed; top: 0; left: 0; right: 0;
  box-shadow: 0 4px 24px rgba(20,38,58,.10);
  animation: dropIn .35s ease;
}
.site-header.is-stuck .navbar-brand img { height: 68px; }
@keyframes dropIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; }
.hero .carousel-item {
  height: 88vh;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero .carousel-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,28,44,.72) 0%, rgba(13,28,44,.45) 55%, rgba(13,28,44,.2) 100%);
}
.hero .hero-content { position: relative; z-index: 3; }
.hero-pill {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Caveat Brush', cursive;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 19px;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 6px 30px rgba(0,0,0,.3);
}
.hero-text {
  color: rgba(255,255,255,.92);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: auto;
  opacity: 1;
  z-index: 4;
}
.hero-arrow {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(22,166,223,.4);
  transition: all .25s ease;
  margin: 0 18px;
}
.hero-arrow:hover { background: #fff; color: var(--primary); }

/* ===========================================================
   FEATURE CARDS (overlap hero)
   =========================================================== */
.features {
  margin-top: -110px;
  position: relative;
  z-index: 20;
}
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 38px 28px 32px;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-card .fc-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 44px;
  color: var(--primary-soft);
  line-height: 1;
}
.feature-card .fc-icon { height: 64px; margin: 14px 0 18px; }
.feature-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 15px; margin: 0; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about-imgs { position: relative; }
.about-imgs .img-main {
  border-radius: 22px;
  width: 78%;
  box-shadow: var(--shadow-md);
}
.about-imgs .img-sub {
  position: absolute;
  right: 0; bottom: 40px;
  width: 46%;
  border-radius: 18px;
  border: 8px solid #fff;
  box-shadow: var(--shadow-md);
}
.exp-badge {
  position: absolute;
  left: -10px; top: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-badge .num { font-family: var(--ff-head); font-weight: 800; font-size: 40px; line-height: 1; }
.exp-badge .lbl { font-size: 13px; font-weight: 500; opacity: .95; }

.about-feat { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.about-feat .af-icon {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
}
.about-feat .af-icon img { width: 36px; }
.about-feat h4 { font-size: 18px; margin-bottom: 4px; }
.about-feat p { font-size: 14.5px; margin: 0; }

/* ===========================================================
   PRODUCTS
   =========================================================== */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.08); }
.product-icon {
  position: absolute;
  left: 24px; bottom: -28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.product-icon img { width: 34px; }
.product-body { padding: 40px 26px 28px; }
.product-body h3 { font-size: 21px; margin-bottom: 10px; }
.product-body h3 a { color: var(--navy); }
.product-body h3 a:hover { color: var(--primary); }
.product-body p { font-size: 14.5px; margin-bottom: 16px; }
.product-card .read-more { display: none; }
.read-more {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 14.5px;
}
.read-more i { transition: transform .25s ease; }
.read-more:hover i { transform: translateX(5px); }

/* ===========================================================
   COUNTERS
   =========================================================== */
.counters {
  background: linear-gradient(rgba(13,28,44,.85), rgba(13,28,44,.85)),
              url('https://sahinlerbalikcilik.com/assets/img/service/03.jpeg') center/cover fixed;
  padding: 80px 0;
}
.counter-box { text-align: center; color: #fff; }
.counter-box img { height: 64px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.counter-box .cnum { font-family: var(--ff-head); font-weight: 800; font-size: 52px; line-height: 1; }
.counter-box .clbl { font-weight: 500; font-size: 16px; opacity: .9; }

/* ===========================================================
   WHY US
   =========================================================== */
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
  transition: all .3s ease;
  border-bottom: 4px solid transparent;
}
.why-card:hover { transform: translateY(-8px); border-bottom-color: var(--primary); }
.why-icon {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background .3s ease;
}
.why-card:hover .why-icon { background: var(--primary); }
.why-icon img { width: 44px; transition: filter .3s ease; }
.why-card:hover .why-icon img { filter: brightness(0) invert(1); }
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; margin: 0; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}
.testi-card .quote {
  font-family: Georgia, serif;
  font-size: 70px;
  color: var(--primary-soft);
  line-height: .6;
  position: absolute;
  top: 26px; right: 26px;
}
.testi-stars { color: #ffb400; margin-bottom: 14px; }
.testi-card p { font-size: 15px; color: var(--navy-2); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 20px;
}
.testi-author h5 { margin: 0; font-size: 16px; }
.testi-author span { font-size: 13px; color: var(--muted); }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 240px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 30px;
  background: rgba(22,166,223,.0);
  opacity: 0; transition: all .35s ease;
}
.gallery-item:hover::after { opacity: 1; background: rgba(22,166,223,.78); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,18,30,.92);
  z-index: 3000;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 86vh; border-radius: 10px; }
.lightbox .lb-close {
  position: absolute; top: 26px; right: 34px;
  color: #fff; font-size: 34px; background: none; border: none; cursor: pointer;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.14); color: #fff;
  width: 54px; height: 54px; border-radius: 50%; border: none;
  font-size: 20px; cursor: pointer;
}
.lightbox .lb-prev { left: 26px; }
.lightbox .lb-next { right: 26px; }

/* ===========================================================
   PROCESS
   =========================================================== */
.process { background: var(--bg-soft); }
.process-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
}
.process-step {
  position: absolute;
  top: -18px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700;
}
.process-card img { height: 70px; margin: 14px 0 18px; }
.process-card h4 { font-size: 17px; margin: 0; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 70px 0 0;
}
.site-footer h4 {
  color: #fff; font-size: 19px; margin-bottom: 24px;
  position: relative; padding-bottom: 12px;
}
.site-footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 3px; background: var(--primary); border-radius: 3px;
}
.site-footer .footer-logo { height: 130px; margin-bottom: 40px; }
.site-footer p { font-size: 14.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; }
.footer-contact i { color: var(--primary); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 50px; padding: 22px 0;
  font-size: 14px;
}
.footer-bottom a { color: var(--primary); }
.footer-social { display: flex; gap: 10px; justify-content: flex-end; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--primary); }

/* ===========================================================
   FLOATING WHATSAPP
   =========================================================== */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  z-index: 1050;
  animation: waPulse 2s infinite;
}
.wa-float:hover { color: #fff; transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===========================================================
   INNER PAGE
   =========================================================== */
.page-hero {
  background: linear-gradient(rgba(13,28,44,.78), rgba(13,28,44,.78)),
              url('https://sahinlerbalikcilik.com/assets/img/service/01.jpeg') center/cover;
  padding: 90px 0 70px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.page-hero .breadcrumb {
  justify-content: center; margin: 12px 0 0; background: none;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.85); }
.page-hero .breadcrumb-item.active { color: var(--primary); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.6); }

.content-img {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  width: min(400px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.content-body h2 { font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.content-body h3 { font-size: 22px; margin: 26px 0 12px; }
.content-body p { margin-bottom: 16px; }
.content-list { list-style: none; padding: 0; }
.content-list li { display: flex; gap: 12px; margin-bottom: 12px; }
.content-list li i { color: var(--primary); margin-top: 5px; }

.side-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 26px;
}
.side-card h4 { font-size: 18px; margin-bottom: 18px; }
.side-menu { list-style: none; padding: 0; margin: 0; }
.side-menu li { margin-bottom: 10px; }
.side-menu a {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border-radius: 10px; padding: 13px 16px;
  font-family: var(--ff-head); font-weight: 500; color: var(--navy); font-size: 15px;
}
.side-menu a:hover, .side-menu a.active { background: var(--primary); color: #fff; }

/* ===========================================================
   CONTACT INFO (iletisim.php)
   =========================================================== */
.contact-info { list-style: none; padding: 0; margin: 0; }
.contact-info li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: var(--navy); font-size: 15px; }
.contact-info i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.contact-info a { color: var(--muted); font-weight: 500; }
.contact-info a:hover { color: var(--primary); }
.contact-info span { color: var(--muted); }

/* ===========================================================
   SOCIAL CONTACT ITEMS (iletisim.php)
   =========================================================== */
.social-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--navy);
  text-decoration: none;
  transition: all .25s ease;
}
.social-contact-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(4px); color: var(--navy); }
.sci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; flex-shrink: 0;
}
.sci-fb { background: #1877f2; }
.sci-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sci-tt { background: #010101; }
.sci-yt { background: #ff0000; }
.sci-info { display: flex; flex-direction: column; }
.sci-info strong { font-size: 15px; font-weight: 600; line-height: 1.2; }
.sci-info small { font-size: 13px; color: var(--muted); }
.social-contact-item .fa-arrow-right { color: var(--muted); font-size: 13px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 991.98px) {
  .site-header { border-bottom: 1px solid var(--line); }
  .navbar-brand img { height: 66px; }
  .navbar .nav-link { padding: 11px 12px !important; font-size: 15px; }
  .navbar .nav-link:not(.dropdown-toggle)::after { display: none; }
  .navbar-collapse {
    background: #fff;
    border-radius: 14px;
    padding: 8px 14px 14px;
    margin-top: 8px;
    box-shadow: 0 16px 40px rgba(20,38,58,.12);
    border: 1px solid var(--line);
    order: 10;
    width: 100%;
  }
  .navbar { flex-wrap: wrap; align-items: center; }
  .nav-right { gap: 8px !important; }

  /* Mobil CTA sarmalayıcı — collapse açılınca yeni satıra geçmez */
  .mobile-cta-wrap {
    order: 2;
    margin-right: 50px;
  }
  .navbar-collapse { order: 3; }
  .nav-right { order: 2; }

  .header-cta-mobile {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .features { margin-top: 40px; }
  .hero .carousel-item { height: auto; min-height: 540px; padding: 80px 0; }
  .about-imgs { margin-bottom: 60px; }
  .about-imgs .img-main { width: 100%; }
  .about-imgs .img-sub { width: 50%; bottom: -40px; }
}
@media (max-width: 767.98px) {
  .topbar { font-size: 13px; text-align: center; }
  .counter-box { margin-bottom: 30px; }
  .footer-social { justify-content: flex-start; margin-top: 16px; }

  /* Slider ok butonları — metinle çakışmasın, alta al */
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    top: auto;
    bottom: 20px;
    transform: none;
    align-items: flex-end;
  }
  .hero .carousel-control-prev { left: 30%; }
  .hero .carousel-control-next { right: 30%; }
  .hero-arrow { width: 42px; height: 42px; font-size: 16px; margin: 0 6px; }

  /* İçerik alanına alt boşluk bırak butonlar için */
  .hero .carousel-item { padding-bottom: 80px; }
  .hero-title { font-size: clamp(28px, 8vw, 46px); }
  .hero-text { font-size: 15px; }
}
