/* ============================================
   İKLİM GRUP - Header & Hero Slider
   ============================================ */

:root {
  --navy: #0d2b4e;
  --navy-light: #17406e;
  --green: #7cb928;
  --green-dark: #649c1c;
  --gray-text: #64707c;
  --light-bg: #f5f7fa;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
}

a {
  text-decoration: none;
}

/* ============================
   HEADER / NAVBAR
   ============================ */

.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(13, 43, 78, 0.08);
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 34px;
  width: auto;
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 28px;
  }
}

.main-nav .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 0;
  margin: 0 16px;
  position: relative;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.lang-switch .lang-icon {
  color: var(--navy-light);
  font-size: 1.15rem;
  display: inline-flex;
}

.lang-switch a {
  color: var(--gray-text);
}

.lang-switch a.active {
  color: var(--navy);
}

.lang-switch .lang-sep {
  color: #c7ced5;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ============================
   MOBİL OFFCANVAS MENÜ
   ============================ */

.mobile-offcanvas {
  --bs-offcanvas-width: min(86vw, 320px);
  box-shadow: 4px 0 24px rgba(13, 43, 78, 0.18);
}

.mobile-offcanvas .offcanvas-header {
  border-bottom: 1px solid #eef1f4;
  padding: 18px 20px;
}

.offcanvas-logo {
  height: 26px;
  width: auto;
}

.mobile-offcanvas .btn-close {
  box-shadow: none;
  opacity: 0.7;
}

.mobile-offcanvas .offcanvas-body {
  padding: 12px 20px 20px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 15px 6px;
  border-bottom: 1px solid #eef1f4;
  border-left: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  color: var(--green);
  border-left-color: var(--green);
  padding-left: 14px;
}

.mobile-lang-switch {
  padding-top: 20px;
}

.mobile-lang-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.mobile-lang-options {
  display: flex;
  background: var(--light-bg);
  border-radius: 6px;
  padding: 4px;
  gap: 4px;
}

.mobile-lang-btn {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-text);
  padding: 9px 0;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-lang-btn.active {
  background: var(--navy);
  color: #fff;
}

/* ============================
   HERO SLIDER
   ============================ */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel-item {
  min-height: clamp(360px, 62vw, 520px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 20, 40, 0.82) 0%,
    rgba(6, 20, 40, 0.55) 38%,
    rgba(6, 20, 40, 0.15) 65%,
    rgba(6, 20, 40, 0) 85%
  );
}

/* Hide controls/indicators automatically when only one slide exists */
.hero-slider .carousel-item:only-of-type ~ .carousel-controls,
.hero-slider:has(.carousel-item:only-of-type) .carousel-control-prev,
.hero-slider:has(.carousel-item:only-of-type) .carousel-control-next,
.hero-slider:has(.carousel-item:only-of-type) .carousel-indicators {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(40px, 9vw, 90px) 0;
}

.hero-content h1 {
  font-size: clamp(1.5rem, 5.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.35em;
}

.hero-content h1 .accent {
  color: var(--green);
  display: block;
}

.hero-content p.lead {
  font-size: clamp(0.82rem, 2.2vw, 1.15rem);
  font-weight: 400;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.8vw, 14px);
}

.btn-hero-primary,
.btn-hero-outline {
  font-weight: 700;
  font-size: clamp(0.68rem, 1.8vw, 0.85rem);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: clamp(9px, 1.8vw, 13px) clamp(14px, 3vw, 26px);
  border-radius: 4px;
  white-space: nowrap;
}

.btn-hero-primary {
  background: var(--green);
  border: 2px solid var(--green);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-hero-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-tagline {
  position: absolute;
  top: clamp(16px, 3.5vw, 48px);
  right: 5%;
  z-index: 2;
  text-align: right;
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.58rem, 1.6vw, 0.95rem);
  line-height: 1.5;
  text-transform: uppercase;
  border-right: 3px solid var(--green);
  padding-right: clamp(8px, 1.6vw, 16px);
  max-width: 45%;
}

/* ============================
   TRUST BADGES STRIP
   ============================ */

.trust-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid #eef1f4;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(6px, 1.6vw, 14px);
  padding: 10px 4px;
}

.trust-item .trust-icon {
  flex-shrink: 0;
  width: clamp(28px, 5.5vw, 42px);
  height: clamp(28px, 5.5vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item .trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-item .trust-title {
  font-weight: 700;
  font-size: clamp(0.66rem, 1.9vw, 0.92rem);
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.25;
}

.trust-item .trust-sub {
  font-size: clamp(0.58rem, 1.5vw, 0.82rem);
  color: var(--gray-text);
  line-height: 1.3;
}

.trust-col {
  position: relative;
}

.trust-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 56%;
  width: 1px;
  background: #e2e7ec;
}

/* İkon üstte, metin altta ortalanmış düzen tüm ekran genişliklerinde
   aynı kalır: metin her zaman sütunun tam ortasında olur, bu yüzden
   aradaki çizgi de iki metnin tam ortasına denk gelir. */

/* ============================
   MASAÜSTÜ "SEKTÖRLERİMİZ" AÇILIR MENÜSÜ
   ============================ */

.main-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
}

.sectors-dropdown {
  border: none;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(13, 43, 78, 0.14);
  padding: 10px;
  margin-top: 12px;
  min-width: 300px;
}

.sectors-dropdown .dropdown-item {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: 6px;
  white-space: normal;
}

.sectors-dropdown .dropdown-item:hover,
.sectors-dropdown .dropdown-item:focus {
  background: var(--light-bg);
  color: var(--green-dark);
}

@media (min-width: 992px) {
  .nav-item.dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0s linear 0.4s;
  }

  /* Nav linkiyle dropdown arasındaki boşlukta fare hover'ı kesilmesin diye
     görünmez bir "köprü" alanı: fare o boşluktan geçerken de menü açık kalır. */
  .nav-item.dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease;
  }
}

/* İki seviyeli açılır alt menü (Sektörlerimiz) */

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-item {
  white-space: nowrap;
}

.dropdown-submenu > .dropdown-item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 8px;
  vertical-align: 2px;
  opacity: 0.55;
}

.dropdown-submenu .submenu {
  display: none;
  position: absolute;
  top: -10px;
  left: 100%;
  margin-left: 4px;
  min-width: 280px;
}

@media (min-width: 992px) {
  /* Görünürlük hover yerine assets/js/main.js'in eklediği .submenu-open
     sınıfıyla, gecikmeli açma/kapama üzerinden kontrol ediliyor; böylece
     fare bir üstteki/alttaki komşu satırın üzerinden geçse de menü zamanında
     kapanmıyor. :focus-within klavye ile gezinme için ayrıca tutuluyor. */
  .dropdown-submenu .submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0s linear 0.4s;
  }

  .dropdown-submenu.submenu-open > .submenu,
  .dropdown-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.15s ease;
  }
}

/* ============================
   MOBİL "SEKTÖRLERİMİZ" AÇILIR ALT LİSTE
   ============================ */

.mobile-nav-toggle {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #eef1f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.mobile-nav-chevron {
  transition: transform 0.2s ease;
  color: var(--gray-text);
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.mobile-subnav {
  list-style: none;
  padding: 4px 0 8px 14px;
  margin: 0;
}

.mobile-subnav a {
  display: block;
  padding: 10px 6px;
  color: var(--gray-text);
  font-weight: 500;
  font-size: 0.88rem;
  border-left: 2px solid #eef1f4;
  padding-left: 12px;
}

.mobile-subnav a:hover {
  color: var(--green-dark);
  border-left-color: var(--green);
}

.mobile-subnav-group {
  margin-bottom: 2px;
}

.mobile-subnav-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-left: 2px solid #eef1f4;
  padding-left: 12px;
  text-align: left;
}

.mobile-subnav-toggle[aria-expanded="true"] {
  color: var(--green-dark);
  border-left-color: var(--green);
}

.mobile-subnav-toggle[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

a.mobile-subnav-flat {
  display: block;
  padding: 10px 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  border-left: 2px solid #eef1f4;
  padding-left: 12px;
}

a.mobile-subnav-flat:hover {
  color: var(--green-dark);
  border-left-color: var(--green);
}

.mobile-subnav-nested {
  list-style: none;
  padding: 2px 0 8px 14px;
  margin: 0;
}

.mobile-subnav-nested a {
  display: block;
  padding: 8px 6px;
  color: var(--gray-text);
  font-weight: 500;
  font-size: 0.84rem;
  border-left: 2px solid #eef1f4;
  padding-left: 12px;
}

.mobile-subnav-nested a:hover {
  color: var(--green-dark);
  border-left-color: var(--green);
}

/* ============================
   ORTAK BAŞLIK / BUTON YARDIMCI SINIFLARI
   ============================ */

.section-label {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
}

.section-title .accent {
  color: var(--green);
}

.section-text {
  color: var(--gray-text);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  border: 2px solid var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
}

/* ============================
   KURUMSAL
   ============================ */

.about-section {
  padding: clamp(50px, 8vw, 100px) 0;
  background: #fff;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(13, 43, 78, 0.16);
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: -24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 43, 78, 0.16);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.about-badge-number {
  color: var(--green);
  font-weight: 800;
  font-size: 1.8rem;
}

.about-badge-label {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  max-width: 140px;
}

@media (max-width: 991.98px) {
  .about-badge {
    left: 16px;
    bottom: -18px;
    padding: 12px 16px;
  }

  .about-badge-number {
    font-size: 1.4rem;
  }

  .about-section .col-lg-6:last-child {
    margin-top: 40px;
  }
}

/* ============================
   SEKTÖRLERİMİZ
   ============================ */

.sectors-section {
  padding: clamp(50px, 8vw, 100px) 0;
  background: var(--light-bg);
}

.section-head {
  margin-bottom: 44px;
}

.section-head .section-text {
  max-width: 600px;
}

.sector-card {
  display: block;
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 43, 78, 0.12);
  border-color: transparent;
}

.sector-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.sector-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.sector-card-body {
  padding: 34px 24px 26px;
  position: relative;
}

.sector-icon {
  position: absolute;
  top: -28px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(13, 43, 78, 0.18);
  transition: background 0.2s ease, color 0.2s ease;
}

.sector-icon svg {
  width: 26px;
  height: 26px;
}

.sector-card:hover .sector-icon {
  background: var(--green);
  color: #fff;
}

.sector-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sector-desc {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sector-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ============================
   GLOBAL TEDARİK (SÜREÇ ADIMLARI)
   ============================ */

.process-section {
  background: var(--navy);
  padding: clamp(50px, 8vw, 90px) 0;
}

.process-section .section-label {
  color: var(--green);
}

.process-section .section-title {
  color: #fff;
}

.process-section .section-text {
  color: rgba(255, 255, 255, 0.72);
}

.process-steps {
  position: relative;
  margin-top: 50px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-body {
  padding-top: 6px;
}

.process-step-label {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.process-step-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

/* Tablet: 3'lü x 2 satır */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .process-steps {
    display: flex;
    flex-wrap: wrap;
    row-gap: 46px;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    gap: 0;
  }

  .process-step-marker {
    margin-bottom: 16px;
  }

  .process-step-body {
    padding-top: 0;
  }

  .process-step:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
  }
}

/* Masaüstü: tek satırda 6'lı */
@media (min-width: 1200px) {
  .process-steps {
    display: flex;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 14px;
    gap: 0;
  }

  .process-step-marker {
    margin-bottom: 16px;
  }

  .process-step-body {
    padding-top: 0;
  }

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
  }
}

/* ============================
   MİNİ İLETİŞİM
   ============================ */

.mini-contact {
  background: var(--navy);
  padding: clamp(36px, 6vw, 56px) 0;
}

.mini-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mini-contact-text h3 {
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.mini-contact-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin: 0;
  max-width: 520px;
}

@media (max-width: 767.98px) {
  .mini-contact-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================
   FOOTER
   ============================ */

.site-footer {
  background: #081b30;
  padding-top: clamp(50px, 7vw, 76px);
}

.footer-logo {
  height: 32px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--green);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

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

/* ============================
   İÇ SAYFA BAŞLIK BANNER'I
   ============================ */

.page-banner {
  background: var(--navy);
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 5vw, 40px);
}

.breadcrumb-nav {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav a:hover {
  color: var(--green);
}

.breadcrumb-nav span {
  margin: 0 6px;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}

/* ============================
   HAKKIMIZDA SAYFASI
   ============================ */

.about-page-content {
  padding: clamp(50px, 8vw, 90px) 0;
}

.value-card {
  cursor: default;
  padding: 30px 24px;
}

.value-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #e9edf1;
}

.value-card .sector-icon {
  position: static;
  margin-bottom: 20px;
  box-shadow: none;
  background: var(--light-bg);
  color: var(--green-dark);
}

/* ============================
   İLETİŞİM SAYFASI
   ============================ */

.contact-page-content {
  padding: clamp(50px, 8vw, 90px) 0;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eef1f4;
}

.contact-info-list li:first-child {
  padding-top: 0;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-list span {
  color: var(--gray-text);
  font-size: 0.88rem;
}

.contact-form {
  background: var(--light-bg);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 36px);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form .form-control {
  border: 1px solid #dde3e9;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.contact-form .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124, 185, 40, 0.15);
}

.contact-form button {
  border: none;
}

/* ============================
   SEKTÖR DETAY SAYFALARI
   ============================ */

.sector-page-content {
  padding: clamp(50px, 8vw, 90px) 0;
}

.sector-page-list {
  background: var(--light-bg);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 32px);
}

.sector-page-list h4 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}

.sector-page-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-page-list li {
  position: relative;
  padding: 0;
  font-size: 0.92rem;
  border-bottom: 1px solid #e5e9ed;
}

.sector-page-list li:last-child {
  border-bottom: none;
}

.sector-page-list li a {
  display: block;
  padding: 10px 0 10px 26px;
  color: var(--gray-text);
  text-decoration: none;
}

.sector-page-list li a:hover {
  color: var(--green-dark);
}

.sector-page-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================
   SEKTÖR DETAY: GÖRSEL BANNER
   ============================ */

.sector-hero-image {
  border-radius: 10px;
  overflow: hidden;
  height: clamp(220px, 34vw, 380px);
  margin-bottom: 0;
}

.sector-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tekil ürün detay sayfası (single) görseli — aynı banner stili */
.hizmet-detay-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 43, 78, 0.16);
}

.hizmet-detay-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================
   SEKTÖR DETAY: NEDEN İKLİM GRUP (MİNİ ÖZELLİKLER)
   ============================ */

.mini-features {
  background: var(--light-bg);
  padding: clamp(44px, 7vw, 72px) 0;
}

.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mini-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(13, 43, 78, 0.08);
}

.mini-feature-icon svg {
  width: 24px;
  height: 24px;
}

.mini-feature-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.mini-feature-desc {
  color: var(--gray-text);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================
   SEKTÖR DETAY: DİĞER SEKTÖRLER
   ============================ */

.related-sectors {
  padding: clamp(50px, 8vw, 90px) 0;
}

/* ============================
   GLOBAL TEDARİK SAYFASI: İSTATİSTİK ŞERİDİ
   ============================ */

.stats-strip {
  background: #fff;
  padding: clamp(40px, 6vw, 60px) 0;
  border-top: 1px solid #eef1f4;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.86rem;
}

/* ============================
   İLETİŞİM FORMU: CAPTCHA / DURUM MESAJLARI
   ============================ */

.form-error-msg {
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f6c6c2;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 600;
}

.form-success-msg {
  background: #eaf4de;
  color: var(--green-dark);
  border: 1px solid #cfe6b8;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-form .form-control.is-invalid {
  border-color: #d9524a;
}

/* ============================
   SEKTÖRLERİMİZ SAYFASI: SATIR SATIR SEKTÖR + ALT HİZMET KARTLARI
   ============================ */

.sector-row {
  margin-bottom: clamp(64px, 9vw, 104px);
}

.sector-row:last-child {
  margin-bottom: 0;
}

.sector-row-heading {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.sector-row-heading h2 {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: 0 0 16px;
}

.sector-row-line {
  position: relative;
  height: 1px;
  background: #e5e9ed;
}

.sector-row-line::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
}

.item-card .sector-card-body {
  padding: 22px 24px 26px;
}

/* ============================
   TEKİL ÜRÜN SAYFASI: İLGİLİ ÜRÜNLER KUTUSU
   ============================ */

.related-products-box {
  background: var(--light-bg);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 32px);
}

.related-products-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.related-products-box h4 svg {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
  flex-shrink: 0;
}

.related-products-intro {
  color: var(--gray-text);
  font-size: 0.84rem;
  margin: 0 0 20px;
}

.related-products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.related-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 8px;
  padding: 15px 16px;
  box-shadow: 0 2px 8px rgba(13, 43, 78, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-product-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(13, 43, 78, 0.1);
}

.related-product-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
}

.related-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-title {
  flex: 1;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
}

.related-product-arrow {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.related-product-item:hover .related-product-arrow {
  transform: translateX(3px);
}

.related-products-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ============================
   BLOG KARTLARI (Milon mimarisinden uyarlanmıştır)
   ============================ */

.blog-section {
  background: #fff;
  padding: clamp(48px, 7vw, 84px) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}

@media (min-width: 576px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 43, 78, 0.12);
  border-color: transparent;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light-bg);
}

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

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

.blog-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}

.blog-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-card-title-link:hover {
  color: var(--green-dark);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.blog-detail-media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 20px 50px rgba(13, 43, 78, 0.16);
}

.blog-detail-media img {
  width: 100%;
  display: block;
}

.blog-detail-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* ============================
   WHATSAPP FLOAT BUTTON
   ============================ */

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 576px) {
  .whatsapp-float {
    left: 16px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ============================
   YUKARI DÖN BUTONU
   ============================ */

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(13, 43, 78, 0.35);
  z-index: 998;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--navy-light);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 576px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ============================
   İÇERİK-BLOĞU BUILDER (panel > builder ekranları)
   ============================ */

.block-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.block-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--gray-text);
  font-size: 0.95rem;
}

.block-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.block-image-text-media img {
  width: 100%;
  border-radius: 10px;
}

.block-spacer-sm { height: 16px; }
.block-spacer-md { height: 32px; }
.block-spacer-lg { height: 56px; }

/* ============================
   İLETİŞİM: KONUM HARİTASI
   ============================ */

.contact-map {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  border-top: 1px solid #eef1f4;
  line-height: 0;
}

.contact-map iframe {
  display: block;
}
