/* ──────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
────────────────────────────────────────────── */
:root {
  --primary:    #1b2d5e;
  --primary-dk: #0d1a30;
  --accent:     #f7a200;
  --accent-lt:  #ffb800;
  --light-bg:   #f4f6fb;
  --card-shadow: 0 4px 20px rgba(0,0,0,.09);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,.16);
  --radius: 12px;
}

/* ──────────────────────────────────────────────
   BASE
────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

/* ──────────────────────────────────────────────
   TYPOGRAPHY HELPERS
────────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(247,162,0,.15);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-dk);
  line-height: 1.25;
}

.section-subtitle {
  font-size: .97rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────── */
#mainNav {
  background: var(--primary-dk);
  transition: box-shadow .3s;
  padding-top: .7rem;
  padding-bottom: .7rem;
}

#mainNav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

#mainNav .navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

#mainNav .navbar-nav .nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .92rem;
  padding: .45rem .9rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
  background: rgba(247,162,0,.18);
  color: var(--accent);
}

.btn-nav-tel {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-nav-tel:hover {
  background: var(--accent-lt);
  transform: scale(1.04);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ──────────────────────────────────────────────
   NAVBAR DROPDOWN
────────────────────────────────────────────── */
#mainNav .dropdown-menu {
  background: var(--primary-dk);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .5rem;
  margin-top: .4rem;
  min-width: 270px;
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
}

#mainNav .dropdown-menu .dropdown-item {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  padding: .5rem .85rem;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: .55rem;
  transition: background .15s, color .15s;
}

#mainNav .dropdown-menu .dropdown-item i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  font-size: .8rem;
  flex-shrink: 0;
}

#mainNav .dropdown-menu .dropdown-item:hover,
#mainNav .dropdown-menu .dropdown-item:focus {
  background: rgba(247,162,0,.15);
  color: var(--accent);
}

#mainNav .dropdown-menu .dropdown-header {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .5rem .85rem .3rem;
}

#mainNav .dropdown-menu .dropdown-divider {
  border-color: rgba(255,255,255,.1);
  margin: .3rem .5rem;
}

/* Mobilde dropdown tam genişlik */
@media (max-width: 991.98px) {
  #mainNav .dropdown-menu {
    background: rgba(255,255,255,.06);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: .25rem 0;
    min-width: auto;
  }
  #mainNav .dropdown-menu .dropdown-item {
    padding-left: 1.75rem;
  }
}

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #1b2d5e 100%); /* JS lazy-bg ile üstüne yazılır */
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,26,48,.88) 0%,
    rgba(27,45,94,.72) 60%,
    rgba(13,26,48,.55) 100%
  );
  z-index: 1;
}

#hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(247,162,0,.2);
  border: 1px solid rgba(247,162,0,.4);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

#hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

#hero h1 span {
  color: var(--accent);
}

#hero p.lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.87);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(247,162,0,.45);
}

.btn-hero-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,162,0,.5);
  color: #fff;
}

.btn-hero-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}

.btn-hero-whatsapp:hover {
  background: #1fba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-item .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: .2rem;
}

/* ──────────────────────────────────────────────
   HİZMETLER
────────────────────────────────────────────── */
#hizmetler {
  background: var(--light-bg);
  padding: 5rem 0;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  border: 1px solid rgba(0,0,0,.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

/* Kapak fotoğrafı */
.service-card-cover {
  position: relative;
  height: 175px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-cover img {
  transform: scale(1.06);
}
.service-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,48,.08) 40%, rgba(13,26,48,.6) 100%);
  pointer-events: none;
}

/* İkon – service-card'a göre konumlanır, hem cover hem body önünde durur */
.service-icon {
  position: absolute;
  top: 145px;   /* cover yüksekliği(175) - ikon yüksekliği(52) + taşma(22) */
  left: 1.25rem;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #2a4a9e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  flex-shrink: 0;
  transition: background .25s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  color: var(--primary-dk);
}

/* Metin alanı */
.service-card-body {
  padding: 2.2rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dk);
  margin-bottom: .5rem;
}

.service-card-body p {
  font-size: .875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.service-card .btn-link-more {
  font-size: .83rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
  margin-top: auto;
}

.service-card .btn-link-more:hover {
  gap: .55rem;
  color: var(--primary);
}

/* ──────────────────────────────────────────────
   İSTATİSTİK ŞERİDİ
────────────────────────────────────────────── */
#istatistik {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding: 4rem 0;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-box .stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: .75rem;
}

.stat-box .stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-box .stat-text {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ──────────────────────────────────────────────
   HAKKIMIZDA
────────────────────────────────────────────── */
#hakkimizda {
  padding: 5rem 0;
  background: #fff;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--primary-dk);
  color: #fff;
  border-radius: 10px;
  padding: .85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

.about-img-badge i {
  font-size: 1.4rem;
  color: var(--accent);
}

.about-img-badge .ab-num {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge .ab-label {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: #444;
  font-weight: 500;
}

.about-feature i {
  color: var(--accent);
  font-size: .85rem;
  flex-shrink: 0;
}

/* Hızlı Arama & İletişim Kutusu */
.about-action-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(27,45,94,.08);
}

.about-action-box .action-label {
  font-size: .78rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}

.search-hizmet {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.search-hizmet input {
  flex: 1;
  border: 1.5px solid rgba(27,45,94,.2);
  border-radius: 50px;
  padding: .6rem 1.1rem;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
  color: var(--primary-dk);
  background: #fff;
}

.search-hizmet input:focus {
  border-color: var(--primary);
}

.search-hizmet input::placeholder {
  color: #aaa;
}

.btn-search {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.25rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.btn-search:hover {
  background: #2a4a9e;
  transform: scale(1.03);
}

/* arama sonuçları dropdown */
.search-results {
  display: none;
  background: #fff;
  border: 1.5px solid rgba(27,45,94,.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  margin-bottom: .75rem;
}

.search-results.visible { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1rem;
  font-size: .86rem;
  color: var(--primary-dk);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}

.search-result-item:hover { background: var(--light-bg); color: var(--primary); }

.search-result-item i { color: var(--accent); width: 18px; text-align: center; font-size: .9rem; }

.action-cta-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn-about-tel {
  flex: 1;
  min-width: 140px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  transition: background .2s, transform .15s;
}

.btn-about-tel:hover {
  background: #2a4a9e;
  transform: translateY(-2px);
  color: #fff;
}

.btn-about-wp {
  flex: 1;
  min-width: 140px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  transition: background .2s, transform .15s;
}

.btn-about-wp:hover {
  background: #1fba5a;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 767.98px) {
  .about-img-wrap img { height: 260px; }
  .search-hizmet { flex-direction: column; }
  .search-hizmet input, .btn-search { border-radius: 10px; width: 100%; justify-content: center; }
}

/* ──────────────────────────────────────────────
   NEDEN ALTUNTAŞ
────────────────────────────────────────────── */
#neden-biz {
  padding: 5rem 0;
  background: #fff;
}

.why-image-wrap {
  position: relative;
}

.why-image-wrap img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 440px;
}

.why-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 24px rgba(247,162,0,.45);
  text-align: center;
  min-width: 110px;
}

.why-badge-float .num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.why-badge-float .label {
  font-size: .72rem;
  font-weight: 600;
  opacity: .9;
  margin-top: .2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(27,45,94,.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item-text h6 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary-dk);
  margin-bottom: .25rem;
}

.why-item-text p {
  font-size: .83rem;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

/* ──────────────────────────────────────────────
   CTA ALANI
────────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, #e67e00 0%, var(--accent) 60%, #ffcc44 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '\f0e7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(255,255,255,.07);
  pointer-events: none;
}

#cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.12);
}

#cta p {
  font-size: .97rem;
  color: rgba(255,255,255,.9);
  max-width: 540px;
  line-height: 1.7;
}

.btn-cta-tel {
  background: var(--primary-dk);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: background .2s, transform .15s;
}

.btn-cta-tel:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: #fff;
}

.btn-cta-wp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: background .2s, transform .15s;
}

.btn-cta-wp:hover {
  background: #1fba5a;
  transform: translateY(-2px);
  color: #fff;
}

/* ──────────────────────────────────────────────
   MÜŞTERİ YORUMLARI
────────────────────────────────────────────── */
#yorumlar {
  background: var(--light-bg);
  padding: 5rem 0;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem;
  right: 1.25rem;
  font-size: 4.5rem;
  color: rgba(247,162,0,.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: #f7a200;
  font-size: .85rem;
  margin-bottom: .75rem;
}

.review-text {
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary-dk);
  margin: 0;
}

.reviewer-loc {
  font-size: .77rem;
  color: #888;
  margin: 0;
}

/* ──────────────────────────────────────────────
   BLOG
────────────────────────────────────────────── */
#blog {
  padding: 5rem 0;
  background: #fff;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  background: #fff;
}

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

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-date {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: var(--accent);
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 6px;
}

.blog-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.blog-category {
  font-size: .73rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .45rem;
}

.blog-card-body h5 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--primary-dk);
  line-height: 1.4;
  margin-bottom: .65rem;
}

.blog-card-body p {
  font-size: .83rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.btn-blog-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s, gap .2s;
}

.btn-blog-more:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: .55rem;
}

/* ──────────────────────────────────────────────
   SERVİS BÖLGELERİ
────────────────────────────────────────────── */
#servis-bolgeler {
  background: var(--light-bg);
  padding: 4.5rem 0;
}

.bolge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.bolge-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  transition: background .2s, color .2s, transform .2s;
  cursor: default;
}

.bolge-item:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.bolge-item i {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: .45rem;
  transition: color .2s;
}

.bolge-item:hover i {
  color: var(--accent-lt);
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
#footer {
  background: var(--primary-dk);
  padding: 4rem 0 0;
  color: rgba(255,255,255,.75);
}

#footer .footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

#footer .footer-desc {
  font-size: .86rem;
  line-height: 1.7;
  max-width: 280px;
}

#footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .8rem;
}

#footer .footer-contact-item i {
  color: var(--accent);
  width: 18px;
  flex-shrink: 0;
  margin-top: .15rem;
}

#footer .footer-contact-item a,
#footer .footer-contact-item span {
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

#footer .footer-contact-item a:hover {
  color: var(--accent);
}

#footer h6 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(247,162,0,.4);
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer ul li {
  margin-bottom: .55rem;
}

#footer ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s, gap .2s;
}

#footer ul li a:hover {
  color: var(--accent);
  gap: .6rem;
}

#footer ul li a i {
  font-size: .65rem;
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.footer-bottom a {
  color: var(--accent);
}

/* ──────────────────────────────────────────────
   WHATSAPP FLOAT BUTONU
────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.55);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.65);
  color: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: wp-pulse 2.5s infinite;
}

@keyframes wp-pulse {
  0%   { opacity: .5; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.55); }
  100% { opacity: 0;  transform: scale(1.55); }
}

/* ──────────────────────────────────────────────
   YARDIMCI / RESPONSIVE DÜZELTMELER
────────────────────────────────────────────── */
.pt-section { padding-top: 5rem; }
.pb-section { padding-bottom: 5rem; }

@media (max-width: 991.98px) {
  #hero .hero-inner { padding: 5.5rem 0 3.5rem; }
  .why-image-wrap img { height: 300px; }
  .why-badge-float { bottom: -1rem; right: -.5rem; }
}

@media (max-width: 767.98px) {
  #hero h1 { font-size: 1.65rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-item .stat-num { font-size: 1.35rem; }
  .btn-hero-primary, .btn-hero-whatsapp { font-size: .92rem; padding: .7rem 1.4rem; }
  .stat-box .stat-number { font-size: 2rem; }
  .why-badge-float { position: static; margin-top: 1rem; display: inline-flex; gap: .75rem; align-items: center; }
  .why-badge-float .num { font-size: 1.5rem; }
  #cta .d-flex { flex-direction: column; }
  .btn-cta-tel, .btn-cta-wp { justify-content: center; }
}

@media (max-width: 575.98px) {
  #mainNav .navbar-brand img { height: 38px; }
  .bolge-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────────────────────────────────
   TOPBAR
────────────────────────────────────────────── */
#topbar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: .38rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}

#topbar .topbar-text {
  font-size: .75rem;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}

#topbar .topbar-text i {
  color: var(--accent);
  font-size: .8rem;
  animation: topbar-pulse 2s infinite;
}

@keyframes topbar-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}

#topbar .topbar-btn {
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .75rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

#topbar .topbar-btn:hover {
  background: var(--accent-lt);
  color: #fff;
}

#topbar .topbar-social {
  display: flex;
  align-items: center;
  gap: .5rem;
}

#topbar .topbar-social a {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color .2s, background .2s;
}

#topbar .topbar-social a:hover {
  color: var(--accent);
  background: rgba(255,255,255,.08);
}

/* Navbar, topbar yüksekliği kadar aşağıda başlasın */
#mainNav {
  top: 35px;
}

@media (max-width: 575.98px) {
  #topbar .topbar-text span { display: none; }
  #mainNav { top: 32px; }
}

/* ──────────────────────────────────────────────
   İÇ SAYFALAR – ORTAK STİLLER
────────────────────────────────────────────── */

/* Page Banner (tüm iç sayfalarda) */
.page-banner {
  padding: 120px 0 56px;
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  color: #fff;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-banner h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}
.page-banner .lead-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
}
.page-banner .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.page-banner .breadcrumb-item { color: rgba(255,255,255,.65); font-size: .85rem; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-banner .breadcrumb-item a:hover { color: var(--accent); }
.page-banner .breadcrumb-item.active { color: var(--accent); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* İçerik bölüm boşluğu */
.inner-section { padding: 80px 0; }
.inner-section-sm { padding: 56px 0; }

/* Yan panel (contact sidebar vb.) */
.sidebar-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(0,0,0,.06);
}
.sidebar-card h5 {
  font-weight: 700;
  color: var(--primary-dk);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* CTA küçük şerit */
.cta-strip {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-lt) 100%);
  padding: 40px 0;
}
.cta-strip h3 { font-weight: 800; font-size: 1.5rem; color: var(--primary-dk); }
.cta-strip p  { color: rgba(0,0,0,.6); margin-bottom: 0; }

/* Blog kart */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s, transform .25s;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.blog-card-img { position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h5 { font-weight: 700; font-size: 1rem; color: var(--primary-dk); line-height: 1.4; }
.blog-card-body h5 a { color: inherit; }
.blog-card-body h5 a:hover { color: var(--accent); }
.blog-card-meta { font-size: .8rem; color: #888; margin-bottom: .6rem; }
.blog-card-body .read-more { color: var(--accent); font-weight: 600; font-size: .88rem; margin-top: auto; padding-top: .8rem; }
.blog-card-body .read-more:hover { color: var(--primary); }

/* Yorum kart */
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.review-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.review-stars { color: var(--accent); font-size: .9rem; margin-bottom: .6rem; }
.review-text { font-size: .93rem; color: #555; line-height: 1.65; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Hizmet kart (hizmetler.php) */
.hizmet-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.hizmet-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}
/* Kapak */
.hizmet-card-cover {
  position: relative;
  height: 175px;
  overflow: hidden;
  flex-shrink: 0;
}
.hizmet-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.hizmet-card:hover .hizmet-card-cover img { transform: scale(1.06); }
.hizmet-card-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,26,48,.08) 40%, rgba(13,26,48,.6) 100%);
  pointer-events: none;
}
/* İkon – hizmet-card'a göre konumlanır, hem cover hem body önünde durur */
.hizmet-card .hizmet-icon {
  position: absolute;
  top: 145px;
  left: 1.25rem;
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #2a4a9e);
  color: #fff;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.hizmet-card:hover .hizmet-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  color: var(--primary-dk);
}
/* Metin */
.hizmet-card-body {
  padding: 2.2rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hizmet-card-body h5 { font-weight: 700; font-size: 1rem; color: var(--primary-dk); margin-bottom: .5rem; }
.hizmet-card-body p  { font-size: .9rem; color: #666; flex: 1; }
.hizmet-card-body .hizmet-link { font-size: .87rem; font-weight: 600; color: var(--accent); margin-top: .8rem; display: inline-flex; align-items: center; gap: .3rem; }
.hizmet-card-body .hizmet-link:hover { color: var(--primary); }

/* Bölge kart */
.bolge-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: box-shadow .25s, transform .25s, background .25s;
  text-decoration: none;
  display: block;
  color: var(--primary-dk);
}
.bolge-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  background: var(--primary);
  color: #fff;
}
.bolge-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: .6rem; display: block; }
.bolge-card:hover i { color: #fff; }
.bolge-card h6 { font-weight: 700; font-size: .95rem; margin: 0; }

/* İletişim formu */
.contact-form-wrap { background: var(--light-bg); border-radius: var(--radius); padding: 2rem; }
.contact-form-wrap .form-control,
.contact-form-wrap .form-select { border-radius: 8px; border-color: #d8dce6; font-size: .93rem; }
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(27,45,94,.15); }
.contact-info-item { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.4rem; }
.contact-info-item .ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(247,162,0,.12); color: var(--accent);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .ci-text strong { display: block; font-size: .83rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-item .ci-text span, .contact-info-item .ci-text a { font-size: .97rem; color: var(--primary-dk); font-weight: 500; }
.contact-info-item .ci-text a:hover { color: var(--accent); }

/* Galeri grid */
.gallery-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
  aspect-ratio: 4/3;
}
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-img-wrap:hover img { transform: scale(1.06); }
.gallery-img-wrap .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,26,48,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
  color: #fff; font-size: 1.5rem;
}
.gallery-img-wrap:hover .gallery-overlay { opacity: 1; }

