
/* 
   TEMEL AYARLAR
 */
* {
  box-sizing: border-box;
}

:root {
  --red: #d50000;
  --red-dark: #af0000;
  --dark: #111827;
  --muted: #666;
  --text: #111;
  --panel: #ffffff;
  --line: #e9e9e9;
  --soft: #f3f3f3;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  background: #efefef;
  color: var(--text);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 
   ORTAK LAYOUT
 */
.site-shell,
.content-section,
.cta-band,
.site-footer,
.hero-slider-wrap,
.hero-banner,
.top-contact-bar,
.main-header-v2 {
  width: min(1420px, calc(100% - 24px));
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  padding: 56px 12px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head h2,
.section-head h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -1.3px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 17px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #ececec;
}

.light-kicker {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.panel-card {
  background: var(--panel);
  border-radius: 28px;
  border: 1px solid #f1f1f1;
  box-shadow: var(--shadow);
  padding: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(213, 0, 0, 0.18);
}

.btn-primary:hover {
  background: var(--red-dark);
}

/* 
   ÜST BİLGİ BARİ
 */
.top-contact-bar {
  margin-top: 8px;
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5e5;
}

.top-contact-inner {
  min-height: 56px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.top-left {
  justify-self: start;
}

.top-center {
  justify-self: center;
  text-align: center;
  font-size: 18px;
  color: #102750;
}

.top-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-link {
  font-size: 24px;
  letter-spacing: 2px;
  color: #3e3e3e;
}

.phone-label {
  font-size: 15px;
  color: #555;
}

.phone-label strong {
  color: #0f2f68;
}

/* 
   ANA HEADER
 */
.main-header-v2 {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}

.main-header-inner {
  min-height: 86px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 190px 1fr 180px;
  align-items: center;
  gap: 24px;
}

.brand-v2 img {
  height: 54px;
  object-fit: contain;
  display: block;
}

.main-nav-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.main-nav-v2 a {
  color: #1d2f57;
  font-size: 15px;
  font-weight: 600;
}

.main-nav-v2 a:hover {
  color: var(--red);
}

.header-right-v2 {
  text-align: right;
  line-height: 1.3;
}

.wa-label {
  display: block;
  font-size: 14px;
  color: #1d2f57;
  font-weight: 700;
}

.wa-number {
  display: inline-block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 800;
  color: #f07c00;
}

/* 
   HERO SLIDER
 */
.hero-slider-wrap {
  background: var(--soft);
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}

.slider {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
  padding: 34px 36px 40px;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.7fr;
  gap: 28px;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.left h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.left p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual {
  width: 100%;
  max-width: 560px;
  height: 560px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  background: #ddd;
}

.bubble {
  position: absolute;
  top: 26px;
  right: 18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.05;
  border: 6px dotted rgba(255,255,255,.35);
  box-shadow: 0 10px 28px rgba(213,0,0,.22);
  transform: rotate(-8deg);
  padding: 14px;
}

.card-red {
  background: var(--red);
  color: #fff;
  min-height: 560px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(213,0,0,.15);
}

.card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 86px 86px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
}

.card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-row: 1 / 3;
}

.shape-red { background: #950000; }

.shape-tri {
  background:
    linear-gradient(135deg, transparent 50%, #000 50%),
    linear-gradient(315deg, transparent 50%, #000 50%),
    #111;
  background-size: 100% 100%;
}

.shape-call {
  background: #ff2a6d;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 700;
}

.card-red small {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: .95;
}

.card-red h3 {
  margin: 0;
  font-size: clamp(28px, 2vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.8px;
}

.secondary-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  color: var(--red);
  padding: 18px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 24px;
}

.controls {
  position: absolute;
  left: 36px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 4;
}

.arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.counter {
  font-size: 22px;
  font-weight: 800;
  min-width: 90px;
  text-align: center;
}

.dots {
  position: absolute;
  left: 36px;
  bottom: 110px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9c9c9;
  border: none;
  cursor: pointer;
}

.dot.active {
  background: var(--red);
  transform: scale(1.15);
}

.progress {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 4px;
  background: rgba(0,0,0,.06);
  z-index: 4;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width .15s linear;
}

/* 
   ÜRÜN GRID
 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.product-grid-card {
  text-align: center;
}

.product-grid-card img {
  width: min(100%, 280px);
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}

.product-grid-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.product-grid-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* 
   BÜYÜK TEKLİ SLIDER
 */
.single-product-slider {
  width: min(1420px, calc(100% - 24px));
  margin: 12px auto 40px;
}

.section-head-light {
  margin-bottom: 22px;
}

.single-slider {
  position: relative;
  height: 600px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.single-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .5s ease;
}

.single-slide.active {
  opacity: 1;
}

.single-slide img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

#singlePrev,
#singleNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  background: rgba(0,0,0,0.45);
  color: white;
  z-index: 3;
}

#singlePrev { left: 20px; }
#singleNext { right: 20px; }

/* 
   KART SLIDER
 */
.product-slider-section {
  width: min(1420px, calc(100% - 24px));
  margin: 40px auto;
}

.product-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-slider-head h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
}

.product-slider-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-slider-controls {
  display: flex;
  gap: 10px;
}

.product-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #111;
  font-size: 28px;
  cursor: pointer;
}

.product-slider {
  overflow: hidden;
}

.product-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border-radius: 26px;
  padding: 26px 22px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.product-card img {
  width: 100%;
  max-width: 260px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* 
   CTA + FOOTER
 */
.cta-band {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.site-footer {
  padding: 28px 20px 40px;
  color: #555;
  text-align: center;
}

/* 
   İLETİŞİM SAYFASI
 */
.hero-banner {
  background: radial-gradient(circle at top left,#334d66 0%,#203a43 35%,#0f2027 70%,#08141c 100%);
  border-radius: 0 0 28px 28px;
  padding: 60px 28px;
}

.small-banner {
  padding-top: 54px;
  padding-bottom: 54px;
}

.left-head h1,
.left-head p {
  color: #fff;
}

.narrow-content {
  width: min(1200px, calc(100% - 24px));
  margin-inline: auto;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.map-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #eee;
}

/* 
   CONTACT PANEL
 */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1ed, #ffe4de);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 20px;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text strong {
  font-size: 14px;
  color: #9a9a9a;
}

.contact-text p {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.address-item {
  align-items: flex-start;
}

.address-item p {
  line-height: 1.7;
  color: #444;
}

/* 
   RESPONSIVE
 */
@media (max-width: 1200px) {
  .slide {
    grid-template-columns: 1fr;
  }

  .main-visual, .card-red {
    max-width: 100%;
  }

  .card-red {
    min-height: auto;
  }
}

@media (max-width: 1100px) {
  .product-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .top-contact-inner,
  .form-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .main-header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .top-right,
  .header-right-v2 {
    justify-self: start;
    text-align: left;
  }

  .main-nav-v2 {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .slide {
    padding: 24px;
  }

  .main-visual {
    height: 360px;
  }

  .bubble {
    width: 96px;
    height: 96px;
    font-size: 12px;
  }

  .card-top {
    grid-template-rows: 70px 70px;
  }

  .controls {
    position: static;
    padding: 0 24px 24px;
  }

  .dots {
    position: static;
    padding: 0 24px 16px;
  }

  .progress {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 700px) {
  .product-card {
    flex: 0 0 100%;
  }

  .main-nav-v2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .top-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 
kurumsal css dosyasına eklenen yeni stiller 
*/
  out-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
}

.about-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-card ul {
  padding: 0;
  list-style: none;
}

.about-card li {
  margin-bottom: 10px;
}

/* hizmet kartları */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-box {
  background: white;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}
/* KURUMSALV2 CSS SONU */
/* =========================================
   KURUMSAL SAYFA - PREMIUM
========================================= */
.active-link {
  color: var(--red) !important;
}

.corporate-hero {
  width: min(1420px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 520px;
  padding: 54px 34px;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #14273d 45%, #132238 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
}

.corporate-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1.8px;
  max-width: 860px;
}

.corporate-hero-content p {
  margin: 0;
  max-width: 760px;
  line-height: 1.8;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
}

.corporate-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}

.corporate-hero-stats {
  display: grid;
  gap: 16px;
  align-self: center;
}

.corp-stat-card {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.corp-stat-card strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 6px;
}

.corp-stat-card span {
  color: rgba(255,255,255,0.78);
}

.corporate-section {
  width: min(1420px, calc(100% - 24px));
  margin: 0 auto;
  padding: 70px 12px;
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.corporate-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.corporate-copy p {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.8;
  font-size: 17px;
}

.corporate-highlight-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.corporate-highlight-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.corporate-highlight-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  color: #555;
}

.corporate-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.premium-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #efefef;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.premium-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffe5df, #fff2ee);
  font-size: 24px;
  margin-bottom: 16px;
}

.premium-info-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.premium-info-card p {
  margin: 0;
  color: #666;
  line-height: 1.75;
}

.dark-surface {
  background: linear-gradient(135deg, #111827, #1f2937);
  border-radius: 32px;
  padding: 56px 28px;
  color: #fff;
}

.section-head-on-dark h2,
.section-head-on-dark p {
  color: #fff;
}

.section-head-on-dark p {
  opacity: 0.84;
}

.corporate-timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.timeline-no {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 18px;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.timeline-item p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.why-us-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #efefef;
  box-shadow: var(--shadow);
}

.why-us-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.why-us-card p {
  margin: 0;
  color: #666;
  line-height: 1.75;
}

.premium-cta {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .corporate-hero,
  .corporate-grid,
  .corporate-card-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .corporate-hero-stats {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 820px) {
  .corporate-hero {
    padding: 36px 22px;
  }

  .corporate-hero-stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-no {
    margin-bottom: 4px;
  }
}

/* bröşür butonu */
.brosur-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 13px;
  color: #fff;
  background-color: #e30613; /* Logo kırmızısı */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brosur-btn:hover {
  background-color: #b0050f;
  transform: translateY(-2px);
}

/* index lat blok */
.value-section {
  background: #f3f3f3;
  padding: 100px 0;
}

.value-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.value-tag {
  display: inline-block;
  font-size: 13px;
  color: #111;
  margin-bottom: 14px;
}

.value-content h2 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin: 0 0 22px;
  max-width: 620px;
}

.value-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: #5c6370;
  max-width: 580px;
  margin-bottom: 32px;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-box {
  width: 42px;
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2c5cff;
  background: #fff;
  flex-shrink: 0;
}

.value-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #111;
}

.value-item p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.value-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary2,
.btn-secondary2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary2 {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(213, 0, 0, 0.18);
}

.btn-primary2:hover {
  transform: translateY(-2px);
}

.btn-secondary2 {
  border: 1px solid #d5d9e2;
  color: #111;
  background: #fff;
}

.btn-secondary2:hover {
  background: #f8f8f8;
}

.value-images {
  position: relative;
  min-height: 520px;
}

.value-images img {
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.img-main {
  width: 100%;
  max-width: 470px;
  height: 520px;
  display: block;
  margin-left: auto;
}

.img-small {
  position: absolute;
  width: 220px;
  height: 150px;
}

.img-small-1 {
  left: 10px;
  bottom: 90px;
}

.img-small-2 {
  right: 40px;
  bottom: -20px;
}

@media (max-width: 991px) {
  .value-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .value-content h2 {
    font-size: 36px;
  }

  .value-images {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .img-main,
  .img-small {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 260px;
  }
}

/*alt yazı index*/
.support-transfer-section {
  background: #f3f3f3;
  padding: 100px 0;
}

.support-transfer-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-transfer-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.support-transfer-content h2 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #111111;
  margin: 0 0 24px;
  max-width: 700px;
}

.support-transfer-content p {
  font-size: 17px;
  line-height: 1.85;
  color: #6b7280;
  margin: 0 0 18px;
  max-width: 620px;
}

.support-transfer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-btn.primary3 {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(213, 0, 0, 0.18);
}

.support-btn.primary3:hover {
  transform: translateY(-2px);
}

.support-btn.secondary3 {
  background: #fff;
  color: #111;
  border: 1px solid #d7dce3;
}

.support-btn.secondary3:hover {
  background: #f9fafb;
}

.support-transfer-visual {
  display: flex;
  justify-content: center;
}

.support-card {
  width: 100%;
  max-width: 520px;
  background: #f7f7f7;
  border-radius: 28px;
  overflow: hidden;
  padding: 20px;
}

.support-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .support-transfer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-transfer-content h2 {
    font-size: 36px;
  }

  .support-transfer-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .support-transfer-section {
    padding: 70px 0;
  }
}

/* 
   HAMBURGER MENÜ
 */
.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.menu-toggle:hover {
  border-color: #d9d9d9;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #1d2f57;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-panel {
  display: contents;
}

body.menu-open {
  overflow: hidden;
}


@media (max-width: 900px) {
  .main-header-inner {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand-v2 {
    min-width: 0;
  }

  .brand-v2 img {
    height: 48px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-panel {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
    padding: 16px;
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .header-panel.is-open {
    display: grid;
    gap: 18px;
  }

  .main-nav-v2 {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .main-nav-v2 a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f7f7f7;
  }

  .main-nav-v2 a.active-link {
    background: rgba(213, 0, 0, 0.08);
    color: var(--red);
  }

  .header-right-v2 {
    padding-top: 4px;
    border-top: 1px solid #efefef;
  }
}

@media (min-width: 901px) {
  .header-panel {
    display: contents !important;
  }
}

@media (max-width: 700px) {
  .main-header-inner {
    padding: 12px 16px;
  }

  .top-contact-bar,
  .main-header-v2,
  .site-shell,
  .content-section,
  .cta-band,
  .site-footer,
  .hero-slider-wrap,
  .hero-banner {
    width: min(100%, calc(100% - 12px));
  }

  .top-contact-inner {
    padding: 12px 16px;
  }

  .top-center {
    font-size: 15px;
  }

  .contact-link {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .phone-label {
    font-size: 14px;
  }

  .header-panel {
    padding: 14px;
  }
}



/* HERO mobil çakışma düzeltmesi */
@media (max-width: 820px) {
  .hero-slider-wrap {
    border-radius: 0 0 20px 20px;
  }

  .slider {
    min-height: auto;
  }

  #heroSlides {
    position: relative;
  }

  .slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 18px 18px 10px;
    gap: 18px;
  }

  .slide.active {
    display: grid;
  }

  .left {
    order: 1;
  }

  .visual-wrap {
    order: 2;
  }

  .card-red {
    order: 3;
  }

  .left h1 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

  .left p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-tag {
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-block;
  }

  .main-visual {
    height: auto;
    max-height: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .bubble {
    top: 10px;
    right: 10px;
    width: 82px;
    height: 82px;
    border-width: 4px;
    font-size: 11px;
    padding: 8px;
  }

  .card-red {
    min-height: auto;
    padding: 20px;
  }

  .card-red h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .secondary-btn,
  .btn.btn-primary {
    width: 100%;
    justify-content: center;
  }

  .dots,
  .controls,
  .progress {
    position: static;
  }

  .dots {
    padding: 8px 18px 8px;
    justify-content: flex-start;
  }

  .controls {
    padding: 0 18px 14px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .counter {
    min-width: auto;
    font-size: 18px;
    order: 2;
    flex: 1 1 auto;
    text-align: center;
  }

  .arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .progress {
    margin: 0 18px 0;
  }
}

@media (max-width: 480px) {
  .slide {
    padding: 16px 14px 10px;
  }

  .left h1 {
    font-size: 24px;
  }

  .left p {
    font-size: 15px;
  }

  .main-visual {
    max-height: 240px;
  }

  .dots {
    padding: 8px 14px 8px;
  }

  .controls {
    padding: 0 14px 14px;
  }

  .progress {
    margin: 0 14px 0;
  }
}
