/* ================================================================
   Bahçe Gıda – style.css  TAM VERSİYON
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-gray-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.1;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  display: block;
}
p {
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin: 0;
}
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header-inner {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 48, 94, 0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled .header-inner {
  box-shadow: 0 2px 20px rgba(0, 48, 94, 0.12);
}
.header-wrap {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
  color: var(--color-navy);
}
.site-logo span {
  font-weight: 400;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-item > a {
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.nav-item > a:hover,
.nav-item.active > a {
  color: var(--color-blue);
}
.nav-item > a .fa-chevron-down {
  font-size: 9px;
  opacity: 0.5;
  transition: var(--transition);
}
.nav-item.has-dropdown {
  position: relative;
}
.nav-item .dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 48, 94, 0.13);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}
.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-item.has-dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: var(--color-navy);
  font-weight: 500;
  white-space: nowrap;
}
.dropdown li a:hover {
  color: var(--color-blue);
  padding-left: 26px;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--color-blue);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-contact:hover {
  background: var(--color-navy);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   HERO SLIDER (index)
   ================================================================ */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  margin-top: 70px;
  overflow: hidden;
}
.hero-slider .swiper-slide {
  overflow: hidden;
}
.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
}
.hero-slider .slide-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0, 20, 60, 0.52) 0%,
    rgba(0, 20, 60, 0.18) 45%,
    rgba(0, 20, 60, 0) 68%
  ); */
  z-index: 0;
  pointer-events: none;
}
.hero-slider .container {
  position: relative;
  z-index: 2;
}
.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.slide-left {
  flex: 1;
  max-width: 500px;
}
.slide-right {
  flex-shrink: 0;
  padding-right: 60px;
}
.hero-slider .slide-label {
  margin-bottom: 6px;
}
.hero-slider .slide-label span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}
.hero-slider .slide-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(50px, 7.5vw, 105px);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-slider .slide-text {
  max-width: 400px;
  margin-bottom: 28px;
}
.hero-slider .slide-text p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.slide-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 3px;
}
.slide-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.slide-link:hover::after {
  background: #fff;
}
/* Oklar */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(180, 190, 205, 0.72);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  transition: background 0.2s;
  z-index: 20;
  cursor: pointer;
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  display: none;
}
.hero-slider .swiper-button-prev::before {
  font-family: "Font Awesome 6 Free";
  content: "\f060";
  font-size: 16px;
  color: #fff;
  font-weight: 900;
}
.hero-slider .swiper-button-next::before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: 16px;
  color: #fff;
  font-weight: 900;
}
.hero-slider .swiper-button-prev {
  left: 24px;
}
.hero-slider .swiper-button-next {
  right: 24px;
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  background: rgba(140, 155, 175, 0.85);
  transform: translateY(-50%);
}
/* Alt bar */
.slide-bottom-bar {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  padding: 0 88px;
}
.slide-num {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  flex-shrink: 0;
  margin-right: 18px;
}
.slide-num-line {
  flex: 1;
  max-width: 500px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
}
.slide-num-line__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.12s linear;
}
.hero-slider .swiper-pagination {
  display: none;
}
/* Video butonu */
.video-btn {
  position: relative;
  width: 140px;
  height: 140px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  transition: transform 0.3s;
}
.video-btn:hover {
  transform: scale(1.05);
}
.video-btn__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  animation: vbSpin 14s linear infinite;
}
@keyframes vbSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.video-btn__ring-text {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  fill: #0057a9;
}
.video-btn__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-btn__circle {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--color-blue);
  pointer-events: none;
}
.video-btn__play {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-btn__play .fa-play {
  font-size: 24px;
  color: var(--color-navy);
  margin-left: 4px;
}
/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}
.video-modal__box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  animation: mIn 0.3s ease;
}
@keyframes mIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.video-modal__frame {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ================================================================
   MARKALAR (index)
   ================================================================ */
.brands-section {
  padding: 90px 0 60px;
}
.brands-header {
  text-align: center;
  margin-bottom: 56px;
}
.brands-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 18px;
}
.brands-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 22px;
}
.brands-all-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1.5px solid var(--color-navy);
  padding-bottom: 2px;
  transition: var(--transition);
}
.brands-all-link:hover {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: end;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px 48px;
}
.brand-card__img {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 24px;
}
.brand-card--side .brand-card__img {
  height: 240px;
}
.brand-card--featured .brand-card__img {
  height: 300px;
}
.brand-card__img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 48, 94, 0.12));
  transition: transform 0.4s;
}
.brand-card:hover .brand-card__img img {
  transform: translateY(-8px) scale(1.03);
}
.brand-card__title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 14px;
  line-height: 1.2;
}
.brand-card__desc {
  font-size: 13px;
  line-height: 1.78;
  color: var(--color-gray-dark);
  margin-bottom: 28px;
  max-width: 270px;
}
.brand-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 40px;
  background: var(--color-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  min-width: 140px;
  transition: var(--transition);
}
.brand-card__btn:hover {
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
}
.brand-card--featured .brand-card__btn {
  padding: 13px 48px;
  font-size: 14px;
}

/* ================================================================
   HAKKIMIZDA (index section)
   ================================================================ */
.about-section {
  padding: 90px 0 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0 90px;
  align-items: center;
}
.about-img__box {
  display: flex;
  width: 100%;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0, 48, 94, 0.16);
}
.about-img__panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img__panel--light {
  background: #0057a9;
}
.about-img__panel--dark {
  background: #00305e;
}
.about-img__word {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}
.about-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1;
}
.about-subtitle {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.55;
  margin-bottom: 20px;
}
.about-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 28px;
  max-width: 520px;
}
.about-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  border-bottom: 1.5px solid var(--color-navy);
  padding-bottom: 3px;
  transition: var(--transition);
}
.about-link:hover {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

/* ================================================================
   BİZE ULAŞIN
   ================================================================ */
.contact-banner-section {
  background: #eff1f5;
  padding: 48px 0 60px;
}
.contact-banner {
  background: #fff;
  border-radius: 16px;
  padding: 44px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 2px 16px rgba(0, 48, 94, 0.06);
}
.contact-banner__text {
  flex: 1;
}
.contact-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 14px;
  line-height: 1.1;
}
.contact-banner__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-gray-dark);
  max-width: 540px;
}
.contact-banner__btn-wrap {
  flex-shrink: 0;
}
.contact-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 56px;
  background: var(--color-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.contact-banner__btn:hover {
  background: var(--color-blue);
  transform: translateY(-2px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #00305E;
  color: #fff;
}
.footer-main {
  padding: 46px 0 42px;
}
.footer-container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr 360px;
  gap: 0 32px;
  align-items: center;
}
.f-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.f-logo strong {
  font-weight: 800;
}
.f-logo span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.f-slogan {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 230px;
  margin: 0;
}
.fc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.fc-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 12px;
  white-space: nowrap;
  transition: var(--transition);
}
.fc-nav a:hover {
  color: #fff;
}
.f-sep {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.28);
  vertical-align: middle;
  flex-shrink: 0;
}
.f-newsletter {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.f-news-input {
  flex: 1;
  padding: 13px 16px;
  background: #fff;
  border: none;
  outline: none;
  font-size: 13px;
  color: #444;
  font-family: var(--font-body);
}
.f-news-input::placeholder {
  color: #bbb;
}
.f-news-btn {
  padding: 13px 18px;
  background: #7a90aa;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.f-news-btn:hover {
  background: var(--color-navy);
}
.footer-bottom {
  background: #0053A9;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.f-copy .sep {
  margin: 0 6px;
  opacity: 0.5;
}
.f-copy a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-left: 14px;
  white-space: nowrap;
  transition: var(--transition);
}
.f-copy a:hover {
  color: #fff;
}
.f-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.f-social span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  white-space: nowrap;
  margin-right: 4px;
}
.f-social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: var(--transition);
}
.f-social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   KURUMSAL/HAKKIMIZDA SAYFA YAPISI
   ================================================================ */
.corp-hero {
  margin-top: 70px;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.corp-hero__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
}
.corp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 48, 94, 0.55);
}
.corp-section {
  padding: 0 0 80px;
}
.corp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: start;
}
/* Sidebar */
.corp-sidebar {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  margin-top: -60px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 48, 94, 0.08);
}
.corp-sidenav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.corp-sidenav li {
  border-bottom: 1px solid #eef1f5;
}
.corp-sidenav li:last-child {
  border-bottom: none;
}
.corp-sidenav li a {
  display: block;
  padding: 16px 22px;
  transition: background 0.2s;
}
.corp-sidenav li a:hover,
.corp-sidenav li.active a {
  background: #f5f8ff;
}
.csn-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}
.corp-sidenav li.active .csn-title {
  color: var(--color-blue);
}
.csn-sub {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--color-gray);
  margin-top: 3px;
}
.csn-sub .fa-chevron-right {
  font-size: 8px;
}
.corp-sidenav li a:hover .csn-sub {
  color: var(--color-blue);
}
/* İçerik */
.corp-content {
  padding: 40px 0 0 52px;
}
.corp-page-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}
.corp-lead {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
}
.corp-vision-box {
  border: 1px solid #d8e4f0;
  border-radius: 6px;
  padding: 28px 32px;
  background: #fafcff;
  margin-bottom: 40px;
}
.corp-vision-box p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--color-gray-dark);
  margin-bottom: 12px;
}
.corp-vision-box p:last-child {
  margin-bottom: 0;
}
.corp-body-text {
  margin-bottom: 56px;
}
.corp-body-text h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 28px;
}
.corp-body-text p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}
.corp-quote {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 15px;
  margin: 28px 0 0;
}
.corp-brands-block {
  padding-top: 40px;
  border-top: 1px solid #eef1f5;
}
.corp-brands-block h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 12px;
}
.corp-brands-block > p {
  font-size: 14px;
  color: var(--color-gray-dark);
  text-align: center;
  margin-bottom: 36px;
}
.corp-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.corp-brands-row img {
  max-height: 70px;
  width: auto;
  filter: grayscale(15%);
  transition: var(--transition);
}
.corp-brands-row img:hover {
  filter: none;
  transform: scale(1.04);
}

/* ================================================================
   TÜM İÇ SAYFALAR – ortak hero + sidebar overlap sistemi
   ================================================================ */

/* Hero: tam genişlik, görsel yoksa koyu lacivert arka plan */
.inner-hero-full {
  margin-top: 70px;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #001228 0%, #00305e 50%, #0057a9 100%);
}
.inner-hero-full__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.inner-hero-full__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 60, 0.52);
}

/* Sayfa section */
.inner-page-section {
  padding-bottom: 64px;
}

/* 2 kolon layout: SABİT 240px sidebar + kalan içerik */
.inner-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 0;
  align-items: start;
  padding-top: 0;
}

/* ── SIDEBAR ──
   margin-top negatif → hero üstüne görsel olarak biner
   grid içinde hâlâ 240px kolonunda kalır */
.inner-sidebar {
  width: 240px; /* kesin genişlik */
  margin-top: -90px;
  position: sticky;
  top: 90px;
  z-index: 20;
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 48, 94, 0.12);
  flex-shrink: 0;
}
.inner-sidenav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.inner-sidenav li {
  border-bottom: 1px solid #eef1f5;
}
.inner-sidenav li:last-child {
  border-bottom: none;
}
.inner-sidenav li a {
  display: block;
  padding: 17px 22px;
  transition: background 0.18s;
}
.inner-sidenav li a:hover {
  background: #f4f8ff;
}
.inner-sidenav li.active a {
  background: #edf3ff;
}
.isn-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}
.inner-sidenav li.active .isn-title {
  color: var(--color-blue);
}
.isn-sub {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--color-gray);
  margin-top: 4px;
}
.isn-sub .fa-chevron-right {
  font-size: 8px;
}
.inner-sidenav li a:hover .isn-sub {
  color: var(--color-blue);
}

/* ── Sağ içerik: min-width:0 ile taşmayı engelle ── */
.inner-content {
  padding: 36px 0 0 48px;
  min-width: 0; /* grid overflow fix */
  overflow: hidden;
}

/* Corp sayfa başlıkları */
.corp-page-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  font-style: italic;
  color: var(--color-navy);
  letter-spacing: 2px;
  margin-bottom: 14px;
  line-height: 1;
}
.corp-lead {
  font-size: 14px;
  font-style: italic;
  color: #555;
  line-height: 1.65;
  margin-bottom: 36px;
}
.corp-vision-box {
  border: 1px solid #d8e4f0;
  border-radius: 6px;
  padding: 26px 30px;
  background: #fafcff;
  margin-bottom: 40px;
}
.corp-vision-box p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-gray-dark);
  margin-bottom: 12px;
}
.corp-vision-box p:last-child {
  margin-bottom: 0;
}
.corp-body-text {
  margin-bottom: 48px;
}
.corp-body-text h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 22px;
}
.corp-body-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-gray-dark);
  margin-bottom: 14px;
}
.corp-quote {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 15px;
  margin: 24px 0 0;
}
.corp-brands-block {
  padding-top: 36px;
  border-top: 1px solid #eef1f5;
}
.corp-brands-block h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 10px;
}
.corp-brands-block > p {
  font-size: 13.5px;
  color: var(--color-gray-dark);
  text-align: center;
  margin-bottom: 28px;
}
.corp-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: nowrap;
}
.corp-brands-row img {
  max-height: 94px;
  width: auto;
  filter: grayscale(15%);
  transition: var(--transition);
}
.corp-brands-row img:hover {
  filter: none;
  transform: scale(1.04);
}

/* ================================================================
   ÜRETİM TESİSİ
   ================================================================ */

/* "Teknolojiden Güç..." mavi border kutu */
.uretim-heading-box {
  border: 1.5px solid var(--color-blue);
  border-radius: 4px;
  padding: 14px 22px;
  margin: 0 0 26px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.uretim-heading-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.uretim-text-block {
  margin-bottom: 32px;
}
.uretim-body {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--color-gray-dark);
  text-align: center;
  max-width: 100%;
  margin: 0 0 12px;
}

/* Video banner */
.uretim-video-banner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin: 0 0 48px;
  background: #060e1e;
  border-radius: 4px;
}
.uretim-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32);
}
.uretim-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uvideo-side {
  flex: 1;
  height: 100%;
  background: rgba(0, 48, 94, 0.46);
}
.uretim-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s,
    background 0.25s;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}
.uretim-play-btn:hover {
  background: #fff;
  transform: scale(1.08);
}
.uretim-play-btn .fa-play {
  font-size: 21px;
  color: var(--color-navy);
  margin-left: 4px;
}

/* Fabrika */
.fabrika-section {
  margin-bottom: 0;
}
.fabrika-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  font-style: italic;
  color: var(--color-navy);
  text-align: center;
  margin: 0 0 8px;
}
.fabrika-desc {
  font-size: 13px;
  line-height: 1.72;
  color: var(--color-gray-dark);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 24px;
}
.fabrika-swiper-wrap {
  position: relative;
}
.fabrika-swiper {
  width: 100%;
  overflow: hidden;
}
.fabrika-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  background-color: #c8d8ea; /* görsel yoksa fallback */
}
.fabrika-dots {
  margin-top: 14px !important;
  text-align: center;
  position: static !important;
  bottom: auto !important;
}
.fabrika-dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bcc8d8;
  opacity: 1;
}
.fabrika-dots .swiper-pagination-bullet-active {
  background: var(--color-blue);
}

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

.il-lead-box {
  margin-bottom: 0;
  display: block;
  width: 100%;
  max-width: 580px;
}
.il-lead-box p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.68;
  color: var(--color-gray-dark);
  margin: 0;
}

.il-cards-wrap {
  padding-top: 40px;
}
.il-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #dde3ec;
}
/* ── İletişim Kartları ── */
.il-card {
  display: flex;
  padding: 22px 18px;
  border-right: 1px solid #dde3ec;
  background: #f7f9fc;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.il-card:last-child {
  border-right: none;
}

/* Label & değer – DEFAULT renk */
.il-card__label {
  display: block;
  font-family: "Gilroy", "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0057a9;
}
.il-card__value {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #00305e;
  display: block;
}
.il-card__value--big {
  font-size: 18px;
  font-weight: 800;
  color: #00305e;
}

/* Fabrika: lacivert arka plan – dark base ÖNCE geliyor */
.il-card--dark {
  background: #00305e;
}
.il-card--dark .il-card__label {
  color: rgba(255, 255, 255, 0.7);
}
.il-card--dark .il-card__value {
  color: #ffffff;
}
.il-card--dark .il-card__value--big {
  color: #ffffff;
}

/* HOVER: dark baz kuralından SONRA, !important ile eziyor */
.il-card:hover {
  background: #0057a9 !important;
  text-decoration: none;
  transition: background 0.2s;
}
.il-card:hover .il-card__label {
  color: #ffffff !important;
}
.il-card:hover .il-card__value {
  color: #ffffff !important;
}
.il-card:hover .il-card__value--big {
  color: #ffffff !important;
}

.iletisim-form-section {
  padding: 0 0 56px;
  margin-top: 52px;
  background: transparent;
}
.iletisim-form-inner {
  background: #00305e;
  border-radius: 12px;
  padding: 52px 56px;
  overflow: hidden;
}
.iletisim-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0 72px;
  align-items: center;
}
.iform-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.iform-title--white {
  color: #fff;
}
.iform-title--blue {
  color: #3a9bff;
}
.iform-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 260px;
}
.iform {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.iform-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.iform-group label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}
.iform-group input,
.iform-group textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.iform-group input::placeholder,
.iform-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.iform-group input:focus,
.iform-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
}
.iform-submit-row {
  display: flex;
  justify-content: flex-end;
}
.iform-btn {
  padding: 10px 32px;
  background: var(--color-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.iform-btn:hover {
  background: #0040a0;
}

.kariyer-section {
  padding: 56px 0 52px;
  background: #fff;
}
.kariyer-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.kariyer-title span {
  color: var(--color-blue);
}
.kariyer-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 12px;
  max-width: 620px;
}
.kariyer-cta {
  margin-top: 28px;
  background: #eef2f7;
  border-radius: 8px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.kariyer-cta p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.55;
  margin: 0;
  max-width: 500px;
}
.kariyer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: var(--color-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.kariyer-cta-btn:hover {
  background: var(--color-blue);
  color: #fff;
}

/* ================================================================
   ÜRÜNLER
   ================================================================ */
.urunler-hero {
  margin-top: 70px;
  height: auto;
  overflow: hidden;
}
.urunler-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.urunler-section {
  padding: 56px 0 80px;
}
.urunler-header {
  text-align: center;
  margin-bottom: 48px;
}
.urunler-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.urunler-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  max-width: 580px;
  margin: 0 auto;
}
.urun-grup {
  background: #f5f7fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  overflow: hidden;
  padding: 28px 20px 28px 28px;
}
.urun-grup__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 160px;
  padding-right: 24px;
  border-right: 1px solid #dde3ec;
  flex-shrink: 0;
}
.urun-grup__logo {
  max-width: 130px;
  max-height: max-content;
  width: auto;
  object-fit: cover;
}
.urun-grup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  background: var(--color-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.urun-grup__btn:hover {
  background: var(--color-navy);
}
.urun-grup__slider {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  min-width: 0;
}
.ug-swiper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.ug-prev,
.ug-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 48, 94, 0.25);
}
.ug-prev:hover,
.ug-next:hover {
  background: var(--color-blue);
}
.ug-prev i,
.ug-next i {
  font-size: 12px;
  color: #fff;
}
.ug-prev:disabled,
.ug-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.urun-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
}
.urun-card img {
  height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 48, 94, 0.1));
  transition: transform 0.3s;
  display: block;
  margin: 0 auto;
}
.urun-card:hover img {
  transform: translateY(-4px);
}
.urun-card p {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--color-gray-dark);
  margin-top: 10px;
}
.urun-card p span {
  font-weight: 600;
  color: var(--color-navy);
  display: block;
}

/* ================================================================
   İHRACAT
   ================================================================ */
.inner-hero {
  margin-top: 70px;
  height: auto;
  position: relative;
  overflow: hidden;
}
.inner-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.2);
}
.inner-page-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
}
.inner-page-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.ihracat-section {
  padding: 56px 0 80px;
}
.ihracat-header {
  text-align: center;
  margin-bottom: 52px;
}
.ihracat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  align-items: start;
}
.ihracat-map img {
  width: 100%;
  border-radius: 6px;
}
.ihracat-contact-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.ihracat-contact-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-gray-dark);
  margin-bottom: 10px;
}
.ihracat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.if-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.if-field {
  display: flex;
  flex-direction: column;
}
.if-field input,
.if-field select {
  padding: 11px 14px;
  border: 1px solid #d1d8e4;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #444;
  background: #fff;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.if-field input:focus,
.if-field select:focus {
  border-color: var(--color-blue);
}
.if-field select {
  color: #888;
  cursor: pointer;
}
.if-field input::placeholder {
  color: #aaa;
}
.if-submit {
  padding: 13px;
  background: var(--color-navy);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.if-submit:hover {
  background: var(--color-blue);
}
.if-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--color-gray-dark);
  cursor: pointer;
  margin-top: 4px;
}
.if-check input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-blue);
}
.if-check a {
  color: var(--color-blue);
}
.if-note {
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  margin-top: 6px;
}

/* ================================================================
   SSS
   ================================================================ */
.sss-section {
  padding: 60px 0 48px;
}
.sss-header {
  text-align: center;
  margin-bottom: 48px;
}
.sss-main-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.sss-main-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  max-width: 700px;
  margin: 0 auto;
}
.sss-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 64px;
  align-items: start;
}
.sss-cat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  display: block;
}
.sss-cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sss-cat-item {
  position: relative;
  margin-bottom: 0;
}
.sss-cat-item a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  border-bottom: 1px solid #eef1f5;
  cursor: pointer;
  transition: var(--transition);
}
.sss-cat-item.active a {
  color: var(--color-blue);
  font-weight: 700;
}
.sss-cat-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 1px;
}
.sss-content-header {
  margin-bottom: 32px;
}
.sss-content-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sss-content-title strong {
  font-weight: 800;
  color: var(--color-navy);
}
.sss-content-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-gray-dark);
}
.faq-group {
  display: none;
}
.faq-item {
  border-bottom: 1px solid #e4e9f0;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}
.faq-q span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
}
.faq-q i {
  font-size: 13px;
  color: var(--color-navy);
  flex-shrink: 0;
}
.faq-item--open .faq-q span,
.faq-item--open .faq-q i {
  color: var(--color-blue);
}
.faq-a {
  padding: 0 0 16px;
}
.faq-a p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--color-gray-dark);
  margin: 0;
}
.sss-cta-section {
  background: #f0f4f8;
  padding: 40px 0 56px;
}
.sss-cta {
  background: #fff;
  border-radius: 14px;
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 2px 14px rgba(0, 48, 94, 0.07);
}
.sss-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sss-cta__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-gray-dark);
  max-width: 480px;
}
.sss-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 52px;
  background: var(--color-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.sss-cta__btn:hover {
  background: var(--color-blue);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 200px 1fr 300px;
  }
  .about-grid {
    gap: 0 56px;
  }
  .ihracat-grid {
    gap: 40px 48px;
  }
}
@media (max-width: 900px) {
  /* Brands */
  .brands-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .brand-card--featured {
    grid-column: 1/-1;
    order: -1;
  }
  .brand-card--featured .brand-card__img {
    height: 260px;
  }
  .brand-card--side .brand-card__img {
    height: 210px;
  }
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .about-img__box {
    max-width: 320px;
    height: 180px;
  }
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .fc-brand {
    grid-column: 1/-1;
  }
  .inner-page-layout {
    grid-template-columns: 1fr;
  }
  .inner-sidebar {
    position: static;
    margin-top: 0;
    margin-bottom: 28px;
    width: 100%;
  }
  .inner-content {
    padding-left: 0;
    padding-top: 24px;
  }
  .il-cards {
    grid-template-columns: 1fr 1fr;
  }
  .il-card {
    border-right: none;
    border-bottom: 1px solid #dde3ec;
  }
  .il-card:last-child {
    border-bottom: none;
  }
  .iletisim-form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Diğer */
  .ihracat-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sss-layout {
    grid-template-columns: 160px 1fr;
    gap: 0 40px;
  }
}
@media (max-width: 768px) {
  /* Header */
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 20px 28px;
    box-shadow: 0 8px 24px rgba(0, 48, 94, 0.12);
    z-index: 999;
    border-top: 1px solid rgba(0, 48, 94, 0.08);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-item > a {
    padding: 13px 8px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 48, 94, 0.06);
  }
  .nav-item .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: none;
    display: none;
    padding: 0;
  }
  .nav-item.has-dropdown.open .dropdown {
    display: block;
  }
  .hamburger {
    display: flex;
  }
  /* Slider */
  .hero-slider {
    height: 480px;
  }
  .hero-slider .slide-title h2 {
    font-size: 32px;
  }
  .hero-slider .slide-text p {
    font-size: 13px;
  }
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
  .slide-bottom-bar {
    padding: 0 20px;
    bottom: 18px;
  }
  .slide-right {
    display: none;
  }
  .slide-content {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Brands */
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .brand-card--featured {
    order: -1;
    grid-column: auto;
  }
  /* About */
  .about-section {
    padding: 60px 0;
  }
  .about-img__box {
    max-width: 100%;
  }
  /* Contact banner */
  .contact-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
    border-radius: 12px;
  }
  .contact-banner__btn {
    width: 100%;
    padding: 14px 0;
  }
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr !important;
  }
  .fc-brand {
    grid-column: auto;
  }
  .fc-nav {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .f-sep {
    display: none;
  }
  .fc-nav a {
    padding: 2px 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .f-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .f-copy a {
    margin-left: 0;
  }
  /* Ürünler */
  .urun-grup {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .urun-grup__info {
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #dde3ec;
    padding-right: 0;
    padding-bottom: 16px;
    width: 100%;
    min-width: unset;
    gap: 12px;
  }
  .urun-grup__slider {
    padding-left: 0;
    width: 100%;
  }
  /* İhracat form */
  .if-row {
    grid-template-columns: 1fr;
  }
  /* SSS */
  .sss-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sss-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
  }
  .sss-cat-item a {
    border-bottom: none;
    padding: 5px 0;
  }
  .sss-cat-item::after {
    display: none !important;
  }
  .sss-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
    border-radius: 12px;
  }
  .sss-cta__btn {
    width: 100%;
    padding: 14px 0;
  }
  /* Kariyer */
  .kariyer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .kariyer-cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  /* İletişim kartlar */
  .il-cards {
    grid-template-columns: 1fr;
  }
}
