/* ============================================
   MİLON - Header & Hero Slider
   ============================================ */

:root {
  --navy: #024772;
  --navy-light: #0c5c92;
  --green: #687985;
  --green-dark: #55636d;
  --green-on-dark: #b4bcc2;
  --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(2, 71, 114, 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(2, 71, 114, 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-on-dark);
  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-on-dark);
  padding-right: clamp(8px, 1.6vw, 16px);
  max-width: 45%;
}

/* ============================
   LOGO REFERANS ŞERİDİ (kaydırmalı)
   ============================ */

.logo-strip {
  background: var(--light-bg);
  padding: clamp(40px, 6vw, 64px) 0;
}

.logo-strip-head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.logo-strip-head span {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.logo-strip-head h2 {
  color: var(--navy);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
  margin: 0;
}

.logo-strip-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.logo-strip-track {
  display: flex;
  width: max-content;
  animation: logo-strip-scroll 28s linear infinite;
}

.logo-strip:hover .logo-strip-track {
  animation-play-state: paused;
}

.logo-strip-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-strip-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(52px, 7vw, 76px);
  margin: 0 10px;
  padding: 0 clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid #d5dce2;
  border-radius: 10px;
}

.logo-strip-item img {
  height: 60%;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-strip-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes logo-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-strip-track {
    animation: none;
  }
}

/* ============================
   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(2, 71, 114, 0.14);
  padding: 10px;
  margin-top: 12px;
  min-width: 260px;
}

.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ü (Ürünler ve Hizmetler) */

.dropdown-submenu {
  position: relative;
}

.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);
}

.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(2, 71, 114, 0.16);
}

.about-media-top {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: 480px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 50px rgba(2, 71, 114, 0.16);
}

.about-media-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 24px;
  bottom: -24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(2, 71, 114, 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(2, 71, 114, 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(2, 71, 114, 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;
}

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

.mini-contact {
  background: #fff;
  padding: clamp(50px, 8vw, 90px) 0;
  border-top: 1px solid #eef1f4;
}

/* ============================
   KATALOG (ANA SAYFA TANITIM ŞERİDİ)
   ============================ */

.catalog-teaser {
  background: #c7d7e0;
  padding: clamp(36px, 6vw, 56px) 0;
}

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

.catalog-teaser-text h3 {
  color: var(--navy);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin: 6px 0 8px;
}

.catalog-teaser-text p {
  color: var(--gray-text);
  font-size: 0.92rem;
  margin: 0;
  max-width: 520px;
}

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

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

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  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 svg {
  width: 34px;
  height: 34px;
}

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

@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

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

.site-footer {
  background: #012c47;
  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-on-dark);
}

.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-on-dark);
  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-on-dark);
}

.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;
}

.about-body-single {
  max-width: 860px;
  margin: 0 auto;
}

.about-body-single .section-text {
  text-align: left;
}

.about-body-single .section-text + .section-text {
  margin-top: 18px;
}

.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(104, 121, 133, 0.15);
}

.contact-form button {
  border: none;
}

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

.contact-map iframe {
  display: block;
}

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

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

.hizmet-detay-media {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
}

.hizmet-detay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 10px 0 10px 26px;
  color: var(--gray-text);
  font-size: 0.92rem;
  border-bottom: 1px solid #e5e9ed;
}

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

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

.sector-page-list li a {
  color: var(--gray-text);
  text-decoration: none;
  display: block;
  transition: color 0.15s ease;
}

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

/* ============================
   KATALOG SAYFASI
   ============================ */

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.catalog-card {
  scroll-margin-top: 100px;
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 71, 114, 0.12);
  border-color: transparent;
}

.catalog-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--navy);
}

.catalog-card-icon svg {
  width: 24px;
  height: 24px;
}

.catalog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

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

.catalog-card-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.catalog-card-download svg {
  width: 16px;
  height: 16px;
}

/* ============================
   ÜRÜNLER VE HİZMETLER ARŞİVİ
   ============================ */

.catalog-group {
  margin-top: clamp(36px, 6vw, 56px);
}

.catalog-group:first-of-type {
  margin-top: 0;
}

.catalog-group-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eef1f4;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

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

.product-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;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 71, 114, 0.12);
  border-color: transparent;
}

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

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

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

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

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

.product-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;
}

/* ============================
   REFERANSLARIMIZ SAYFASI
   ============================ */

.reference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.reference-card {
  background: #fff;
  border: 1px solid #d5dce2;
  border-radius: 10px;
  height: clamp(110px, 12vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 71, 114, 0.12);
  border-color: transparent;
}

.reference-card img {
  max-width: 100%;
  max-height: 60%;
  object-fit: contain;
}

/* ============================
   İÇERİK BLOKLARI (Ürün/Hizmet Detay — panel İçerik Oluşturucu)
   ============================ */
.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; }

/* ============================
   BLOG (anasayfa bölümü, arşiv ve tekil sayfa)
   ============================ */
.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(2, 71, 114, 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;
}

.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;
}
