@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #0d0f14;
  --surface: #161921;
  --surface2: #1e2230;
  --border: #2a2f3d;
  --accent: #4f8ef7;
  --accent2: #f7c94f;
  --accent3: #6df2b0;
  --text: #e4e7f0;
  --muted: #7a8099;
  --qplus-page-bg:
    radial-gradient(circle at 12% 8%, rgba(79, 142, 247, 0.18), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(250, 180, 3, 0.14), transparent 24%),
    linear-gradient(135deg, #111722 0%, #202633 48%, #10141d 100%);
  --heading-font: 'Playfair Display', serif;
  --body-font: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--qplus-page-bg);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(79,142,247,0.25);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(79,142,247,0.35);
  border-radius: 999px;
}

main,
.main-content,
.main-content-with-padding {
  flex: 1 0 auto;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page-container {
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 90px);
  padding-bottom: 60px;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body-font);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--text);
  margin-bottom: 0.75rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

img, video {
  max-width: 100%;
  display: block;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-banner img,
.hero-image-wrapper video,
.hero-banner .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(1.22) contrast(1.02);
  transform: scale(1.02);
  transition: transform 12s ease;
}

.hero-banner:hover .hero-banner img,
.hero-banner:hover .hero-image-wrapper video,
.hero-banner:hover .hero-video {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  text-align: center;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,15,20,0.02) 0%, rgba(13,15,20,0.06) 100%);
}

.hero-content-box {
  width: 100%;
  max-width: 860px;
  padding: 32px 36px;
  background: rgba(10,14,24,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}

.hero-content-box h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #e4e7f0 30%, #4f8ef7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content-box p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(228,231,240,0.9);
  margin-bottom: 26px;
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.feature-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(23, 28, 41, 0.84);
  padding: 34px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  transition: transform 0.3s ease, background 0.25s ease, border-color 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(79,142,247,0.38);
  background: rgba(31, 40, 61, 0.96);
}

.feature-box i {
  font-size: 28px;
  color: var(--accent);
}

.feature-box span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.feature-box p {
  color: var(--muted);
  line-height: 1.75;
}

.animated-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, rgba(79,142,247,0) 0%, rgba(79,142,247,0.95) 50%, rgba(79,142,247,0) 100%);
}

.line.top {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.line.bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.line.left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
}

.line.right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
}

.banner-alt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.banner-alt .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.banner-alt h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.banner-alt h5 {
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banner-alt p {
  color: rgba(228,231,240,0.86);
  max-width: 720px;
  line-height: 1.85;
}

.banner-alt .button {
  width: fit-content;
}

.banner-alt .image.object {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-alt .image.object img {
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.32);
}

.section {
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .icon {
  font-size: 1.25rem;
}

.card,
.info-box,
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.card {
  padding: 26px;
}

.info-box {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(79,142,247,0.07);
}

.info-box.yellow {
  border-color: var(--accent2);
  background: rgba(247,201,79,0.08);
}

.info-box.green {
  border-color: var(--accent3);
  background: rgba(109,242,176,0.08);
}

.info-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

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

.detail-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.96rem;
}

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

.detail-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
}

.concepts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.concept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
}

.concept.green {
  background: rgba(109,242,176,0.08);
  border-color: rgba(109,242,176,0.25);
  color: var(--accent3);
}

.concept.yellow {
  background: rgba(247,201,79,0.08);
  border-color: rgba(247,201,79,0.25);
  color: var(--accent2);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.mini-card {
  padding: 18px 20px;
}

.mini-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent3);
  margin-bottom: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f8ef7, #6df2b0);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(79,142,247,0.18);
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  outline: none;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(79,142,247,0.6);
  background: rgba(79,142,247,0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

th {
  text-align: left;
  font-weight: 700;
  color: var(--accent3);
  background: rgba(255,255,255,0.03);
}

tr:hover td {
  background: rgba(255,255,255,0.03);
}

.kampanya-tab {
  position: fixed;
  top: 50%;
  right: -95px;
  transform: translateY(-50%) rotate(270deg);
  background: linear-gradient(135deg, #4f8ef7, #6df2b0);
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 1000;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 10px 10px 0 0;
  box-shadow: -2px 0 12px rgba(0,0,0,0.18);
  transition: right 0.3s ease, background 0.25s ease;
}

.kampanya-tab:hover {
  right: -85px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #0f1420;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 30px;
  width: min(560px, calc(100% - 40px));
  box-shadow: 0 26px 80px rgba(0,0,0,0.35);
  transform: translateY(-24px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-content h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  color: #fff;
}

.modal-content p,
.modal-info {
  color: rgba(228,231,240,0.86);
}

.modal-info {
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
}

.modal-button {
  display: inline-flex;
  margin-top: 24px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4f8ef7, #6df2b0);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.modal-button:hover {
  background: linear-gradient(135deg, #62b5ff, #8af8c9);
}

@media (max-width: 900px) {
  .two-col,
  .banner-alt {
    grid-template-columns: 1fr;
  }

  .banner-alt {
    padding: 40px 24px;
  }

  .feature-bar {
    grid-template-columns: 1fr;
  }

  .hero-content-box {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .hero-banner {
    min-height: 64vh;
  }

  .hero-content-box h1 {
    font-size: 2.8rem;
  }

  .feature-box {
    padding: 24px;
  }

  .banner-alt {
    padding: 32px 24px;
  }

  .banner-alt .image.object img {
    width: 100%;
    max-width: 540px;
  }
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* ======================================================
   Banner (Hero ve Footer arası özel içerik bölümü)
   ====================================================== */

#banner,
.banner-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 24px 50px 24px;
    max-width: 1240px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.22);
    color: #ececec;
    backdrop-filter: blur(16px);
}

#banner .content,
.banner-alt .content {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    color: #ececec;
}

.banner-alt .content header h2 {
    margin-bottom: 10px;
}

#banner .content h1,
.banner-alt .content h2 {
    font-size: clamp(2.1rem, 3.5vw, 3.6rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

#banner .content h5,
.banner-alt .content h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #bfc7d3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#banner .content p,
.banner-alt .content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #d1d7e0;
    max-width: 720px;
}

#banner .actions {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

#banner .actions li {
    display: inline-flex;
}

/* Ortak buton stili */
.button,
.actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: linear-gradient(135deg, #feba11, #ffb703 48%, #d48d05);
    color: #101820ff;
    font-weight: 700;
    font-size: 0.96rem;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 18px 40px rgba(52, 120, 255, 0.22);
}

.button:hover,
.actions .button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3478ff, #2563eb 48%, #1e40af);
    box-shadow: 0 24px 55px rgba(52, 120, 255, 0.28);
}

#banner .image,
.banner-alt .image {
    flex: 1 1 44%;
    max-width: 520px;
}

#banner .image img,
.banner-alt .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.2);
}

/* Görselin sağda olmasını isteyenler için */
.sagresim {
    flex-direction: row-reverse;
}

/* Görselin solda kalmasını zorlamak için (varsayılan zaten böyle ama sınıf varsa override eder) */
.solgorsel {
    flex-direction: row;
}

/* ======================================================
   Responsive Ayarlar
   ====================================================== */
@media (max-width: 768px) {
    #banner,
    .banner-alt {
        text-align: center;
        padding: 40px 15px;
        gap: 25px;
    }

    #banner .content,
    #banner .image,
    .banner-alt .content,
    .banner-alt .image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    #banner .content h1,
    .banner-alt .content h2 {
        font-size: 28px;
    }

    #banner .content p,
    .banner-alt .content p {
        font-size: 15px;
    }

    .banner-alt .button {
        margin-top: 10px;
    }

    .banner-alt .image {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    #banner,
    .banner-alt {
        padding: 30px 10px;
    }

    #banner .content h1,
    .banner-alt .content h2 {
        font-size: 24px;
    }

    #banner .actions .button,
    .banner-alt .button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* ÖZELLİKLER BARI STİLLERİ */

/* REKLAMLARrrrrrrrrrrrrrrrrrrrrrrrrrrr */ 

.side-panel {
    position: fixed;
    top: 40%;
    transform: translateY(-50%);
    right: -360px;
    width: 360px;
    height: auto;
    background-color: #ffc107;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1002;
    transition: right 0.4s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}


.side-panel.is-open {
    right: 15px; /* Panelin ekranın en sağına yapışmasını engeller ve scrollbar için yer bırakır. */
}

.panel-tab {
    position: absolute;
    left: -18px;
    top: 70%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom left;
    background-color: #ffc107;
    color: #1e1e1e;
    padding: 15px 20px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 16px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 1;
    transition: left 0.4s ease-in-out;
}

.panel-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 25px;
    text-align: center;
    box-sizing: border-box;
    min-height: 100%;
}


.panel-content h2 {
    font-family: 'Oswald', sans-serif;
    color: #0056b3;
    margin-top: 0; /* Üstteki ekstra boşluğu kaldırır */
    margin-bottom: 10px;
}

body.menu-open .side-panel {
    display: none !important;
}

.panel-info { margin-top: 20px; background-color: #004494   ; padding: 15px; border-radius: 5px; font-size: 14px; }
.panel-button { display: inline-block; margin-top: 25px; padding: 12px 30px; background-color: #0056b3; color: white; text-decoration: none; font-weight: 700; border-radius: 5px; transition: background-color 0.3s; }
.panel-button:hover { background-color: #004494; }
.panel-close-button { position: absolute; top: 10px; right: 20px; font-size: 30px; color: #aaa; cursor: pointer; line-height: 1; }
.panel-close-button:hover { color: #333; }
.side-panel.is-open .panel-tab {left: 0;}



/* HERO BANNER VE ALT KARTLAR */

.feature-bar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  width: min(1120px, 100%);
  margin: 40px auto 20px;
  padding: 0 14px;
}

.feature-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  background: rgba(0, 74, 153, 0.95);
  padding: 28px 18px;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  flex: 1 1 260px;
  min-width: 220px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  margin-bottom: 15px;
  z-index: 2;
}

.feature-box span {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  z-index: 2;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  z-index: 2;
}

/* ANİMASYONLU BORDER (Değişiklik yok) */
.animated-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* --- YENİ KISIM BAŞLANGICI --- */

/* 1. ADIM: .animated-border::before içindeki eski animasyon satırını kaldırıp temel özellikleri ekliyoruz */
.animated-border::before {
  content: '';
  position: absolute;
  background-color: #ffdd57;
  /* Eski animasyon satırı silindi */
  animation-name: animate-border-sequentially; /* Yeni animasyon adını veriyoruz */
  animation-duration: 18s; /* Toplam döngü süresi (4 kart x 4.5s) */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* 2. ADIM: Her kart için negatif gecikme (delay) ekliyoruz */
.feature-bar > a:nth-child(2) .animated-border::before {
  animation-delay: -13.5s;
}

.feature-bar > a:nth-child(3) .animated-border::before {
  animation-delay: -9s;
}

.feature-bar > a:nth-child(4) .animated-border::before {
  animation-delay: -4.5s;
}

/* YENİ VE DOĞRU ANİMASYON KODLARI */

/* Her bir çizginin temel pozisyonu ve stili */
.animated-border .line {
    position: absolute;
    background-color: #ffdd57;
    opacity: 0; /* Animasyon başlayana kadar gizli */
}

.animated-border .line.top {
    top: 0; left: 0;
    width: 0; height: 3px;
}
.animated-border .line.right {
    top: 0; right: 0;
    width: 3px; height: 0;
}
.animated-border .line.bottom {
    bottom: 0; right: 0;
    width: 0; height: 3px;
}
.animated-border .line.left {
    bottom: 0; left: 0;
    width: 3px; height: 0;
}

/* JavaScript '.is-animating' sınıfını eklediğinde bu animasyonlar tetiklenir */
.feature-box.is-animating .line {
    opacity: 0.7; /* Çizgileri görünür yap */
}

.feature-box.is-animating .line.top {
    animation: animate-top 0.625s linear forwards;
}
.feature-box.is-animating .line.right {
    animation: animate-right 0.625s linear 0.625s forwards;
}
.feature-box.is-animating .line.bottom {
    animation: animate-bottom 0.625s linear 1.25s forwards;
}
.feature-box.is-animating .line.left {
    animation: animate-left 0.625s linear 1.875s forwards;
}

/* Her bir kenar için basit ve tekil animasyonlar */
@keyframes animate-top {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes animate-right {
    from { height: 0; }
    to { height: 100%; }
}

@keyframes animate-bottom {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes animate-left {
    from { height: 0; }
    to { height: 100%; }
}

@media (max-width: 1200px) { /* Daha büyük tabletler ve küçük masaüstü ekranlar */
  .feature-bar {
    width: min(980px, 100%);
    margin: 36px auto 16px;
    padding: 0 18px;
  }
}
@media (max-width: 767px) { /* Tabletler */
  .feature-bar {
    width: 100%;
    margin: 30px auto 14px;
    padding: 0 18px;
  }
}
@media (max-width: 576px) { /* Küçük tabletler ve büyük telefonlar */
  .feature-bar {
    width: 100%;
    margin: 26px auto 12px;
    padding: 0 12px;
    flex-direction: column; /* Kartları dikey sırala */
    align-items: center; /* Dikeyde ortala */
  }
  .feature-bar .feature-box {
    width: 100%;
    max-width: 480px;
  }
}


/* ==========================================================================
   Sosyal Medya İkonları (Genel) ve Animasyonlar
   ========================================================================== */
.ikonlar {
    display: flex;
    gap: 15px;
}

.ikonlar a {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.ikonlar i {
    font-size: 22px;
    color: #696969;
    transition: color 0.3s ease;
}

.ikonlar a.ig {
    background-color: transparent;
    border: 2px solid #696969;
    padding: 5px 15px;
    border-radius: 5px;
    width: auto;
    height: auto;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ececec;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ikonlar a.ig:hover {
    background-color: #c7255b;
    border-color: #c7255b;
    color: white;
}

/* Anahtar Kare Animasyonları */
@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Hero Bölümü Genel Stilleri (Masaüstü için varsayılan)
   ========================================================================== */

.hero-banner {
    position: relative;
    min-height: 82vh;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 22%),
                radial-gradient(circle at 80% 10%, rgba(52, 120, 255, 0.12), transparent 18%),
                linear-gradient(180deg, rgba(6, 9, 20, 0.95), rgba(10, 14, 24, 0.98));
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 18s ease;
}

.hero-banner:hover .hero-image-wrapper img {
    transform: scale(1.09);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 22, 0.02), rgba(6, 10, 20, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    z-index: 2;
}

.hero-content-box {
    max-width: 860px;
    width: 100%;
    padding: 38px 36px;
    background: rgba(7, 11, 19, 0.74);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    box-shadow: 0 28px 90px rgba(0,0,0,0.3);
    backdrop-filter: blur(18px);
    margin: 0 12px;
}

.hero-content-box h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 18px 40px rgba(0,0,0,0.36);
}

.hero-content-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.9vw, 1.3rem);
    line-height: 1.85;
    color: rgba(236,240,245,0.88);
    margin-bottom: 32px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-word {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
  animation-delay: var(--delay, 0s);
  display: inline-block;
  will-change: opacity, transform;
}

.animated-text {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.animated-word.is-visible,
.animated-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-content-box {
        padding: 30px 24px;
    }
    .hero-content-box h1 {
        font-size: clamp(2.5rem, 7vw, 3.8rem);
    }
    .hero-content-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-box {
        padding: 26px 18px;
    }
    .hero-content-box h1 {
        font-size: 2.6rem;
    }
    .hero-content-box p {
        font-size: 0.95rem;
    }
}
/* ==========================================================================
   Responsive Düzenlemeler (Masaüstü/Tablet/Mobil)
   ========================================================================== */

/* Tablet ve Büyük Mobil Cihazlar İçin Ayarlar (örneğin 992px altı) */
@media (max-width: 992px) {
    .hero-banner {
        height: 65vh; /* Ekran yüksekliğinin %65'ini kaplasın */
    }

    .hero-content-box h1 {
        font-size: 40px;
    }

    .hero-content-box p {
        font-size: 18px;
    }
}

/* Küçük ekranlar için responsive ayarlamalar */
@media (max-width: 768px) {
    .hero-content-box h1 {
        font-size: 40px; /* Daha küçük ekranlarda font boyutunu küçült */
    }
    .hero-content-box p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-content-box h1 {
        font-size: 32px;
    }
    .hero-content-box p {
        font-size: 16px;
    }
}

/* Daha küçük Mobil Cihazlar İçin Ekstra Ayarlar (örneğin 576px altı) */
@media (max-width: 576px) {
    .hero-banner {
        min-height: 55vh; /* Ekran yüksekliğinin en az %55'ini kaplasın */
    }

    .hero-content-box h1 {
        font-size: 30px;
    }

    .hero-content-box p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-overlay {
        padding: 0 15px;
    }
}
.main-wrapper {
  min-height: calc(100vh + 200px); /* Scroll oluşsun diye ekstra yükseklik */
}

/* ==========================================================================
   KVKK SAYFASI CSS
   ========================================================================== */

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;      /* Başlık üstte, kutu altta */
    align-items: center;
    padding: 80px 20px;
    background: var(--qplus-page-bg);
}

.kvkk-title {
    max-width: 1300px;
    width: 100%;
    padding: 0 50px;
    font-size: 51px;             /* 30px × 1.7 ≈ 51px */
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;         /* Başlık ile kutu arası boşluk */
    text-align: left;
}

.kvkk-section {
    background: transparent;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    max-width: 1300px;
    width: 100%;
}

.kvkk-box {
    background: #2e2f33;
    color: #fff;
    border-radius: 10px;
    padding: 60px 50px;
    font-size: 26px;             /* 20px × 1.3 = 26px */
    line-height: 1.9;
}

.kvkk-box p {
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.kvkk-box a {
    color: #FAB403;
    text-decoration: underline;
    font-size: 26px;
    font-weight: 500;
}

.kvkk-box a:hover {
    color: #FAB403;
}

/*KULLANIM KOŞULLARI*/

.kullanim-kosullari {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #f9f9f9;
  background-color: #2e2f33;
  border-radius: 10px;
  line-height: 1.7;
  font-size: 16px;
}

.kullanim-kosullari h1 {
text-align: center;
}

.kullanim-kosullari h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f9f9f9;
  text-align: left;
  font-weight: 600;
}

.kullanim-kosullari h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #2e2f33;
  border-left: 5px solid #FAB403;
  padding-left: 10px;
}

.kullanim-kosullari p {
  margin-bottom: 15px;
  text-align: justify;
}

@media (max-width: 768px) {
  .kullanim-kosullari {
    padding: 20px 15px;
    font-size: 15px;
  }

  .kullanim-kosullari h2 {
    font-size: 26px;
  }

  .kullanim-kosullari h3 {
    font-size: 20px;
  }
}

/* Değişmeyen genel stiller zaten kullanıcı tarafından tanımlanmış */

.iletisim-section {
  padding: 80px 20px;
  background: var(--qplus-page-bg);
  color: #fff;
}

.iletisim-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
}

.iletisim-section h1 {
  font-size: 2.4rem;
  margin-bottom: 34px;
  text-align: center;
  font-weight: 600;
  color: #FAB403;
}

.contact-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.contact-location-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(79, 142, 247, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.20);
}

.contact-location-card-primary {
  border-left: 5px solid #FAB403;
}

.contact-location-card-secondary {
  border-left: 5px solid #4f8ef7;
}

.contact-location-header {
  margin-bottom: 22px;
}

.contact-location-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(250, 180, 3, 0.14);
  color: #FAB403;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.contact-location-card-secondary .contact-location-badge {
  background: rgba(79, 142, 247, 0.16);
  color: #8fc0ff;
}

.contact-location-header h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
}

.contact-location-header p {
  margin: 0;
  color: rgba(228, 231, 240, 0.78);
  line-height: 1.55;
}

.iletisim-section .info-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 0.98rem;
  min-height: 150px;
}

.iletisim-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
}

.iletisim-section .info-item a {
  display: inline-flex;
  color: #FAB403;
  font-weight: 700;
  text-decoration: none;
}

.iletisim-section .info-item a:hover {
  text-decoration: underline;
}

.iletisim-section .info-item i {
  font-size: 1.05rem;
  color: #FAB403;
  min-width: 22px;
  margin-top: 4px;
  text-align: center;
}

.iletisim-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.contact-location-card .map-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
}

.map-click-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 12, 22, 0.28));
}

.map-click-layer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(24, 36, 58, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FAB403;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.map-click-layer:hover span {
  background: #FAB403;
  color: #1d2d49;
}

@media (max-width: 768px) {
  .iletisim-section .container {
    padding: 20px;
  }

  .iletisim-section h1 {
    font-size: 1.8rem;
  }

  .contact-locations-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-location-card {
    padding: 20px;
  }

  .iletisim-section .info-box {
    gap: 18px;
    min-height: auto;
  }

  .contact-location-card .map-wrapper {
    height: 300px;
  }
}

/* Navbar yüksekliği için ana içerik boşluk ayarlamaları */
.main-content-with-padding {
    /* Navbar'ın yüksekliği 90px varsayıldı (nav CSS'inde belirtildiği gibi),
       biraz da ek boşluk bırakarak içeriğin tam altında başlamasını sağlarız. */
    padding-top: 120px;
}

@media (max-width: 1400px) { /* Mobil menü breakpoint'i */
    .main-content-with-padding {
        /* Mobil menü aktif olduğunda veya açıldığında farklı bir boşluk değeri
           gerekebilir. Buradaki 90px, mobil navbar yüksekliğine eşittir. */
        padding-top: 90px;
    }
}

/* Tüm HTML'lerdeki manuel <br> etiketleri yerine genel bir çözüm:
   Eğer bir section veya main element navbar'dan sonra gelen ilk içerikse
   veya page-wrapper içinde değilse, üstten boşluk bırakırız. */
body > .main-content:first-of-type,
body > section:first-of-type:not(.hero-banner), /* Hero banner'lar genellikle farklı davranır */
body > div:first-of-type:not(.page-wrapper):not(#navbar-placeholder) {
    margin-top: 90px; /* Navbar yüksekliğine göre boşluk */
}

@media (max-width: 1400px) {
    body > .main-content:first-of-type,
    body > section:first-of-type:not(.hero-banner),
    body > div:first-of-type:not(.page-wrapper):not(#navbar-placeholder) {
        margin-top: 90px; /* Mobil görünüm için gerekirse farklı bir değer */
    }
}
/*bayilik başvuru formu*/
.bayilik-form-section .container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #3a3b3f;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.bayilik-form-section h1 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.bayilik-form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #FAB403;
  padding-bottom: 6px;
}

.bayilik-form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.bayilik-form .form-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bayilik-form .form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bayilik-form label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bayilik-form input,
.bayilik-form textarea {
  padding: 10px;
  border: 1px solid #555;
  background-color: #2e2f33;
  color: #fff;
  border-radius: 6px;
  font-size: 0.95rem;
}

.bayilik-form textarea {
  resize: vertical;
  min-height: 80px;
}

.bayilik-form button[type="submit"] {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 10px 20px; /* Buton iç boşluğunu küçült */
  border-radius: 6px;
  font-size: 0.9rem; /* Buton yazı boyutunu küçült */
  cursor: pointer;
  transition: background 0.3s;
  height: fit-content; /* Butonun yüksekliğini içeriğine göre ayarla */
}

.bayilik-form button[type="submit"]:hover {
  background-color: #d62828;
}

.bayilik-form button[type="submit"] {
  margin-left: 180px; /* veya 20px — sağa ne kadar kaymasını istiyorsan */

}

@media (max-width: 768px) {
  .bayilik-form {
    flex-direction: column;
  }

  .bayilik-form .captcha-group-inline {
    flex-direction: column; /* Küçük ekranlarda alt alta sırala */
    align-items: flex-start; /* Sola hizala */
  }

  .bayilik-form .captcha-group-inline input {
    width: 100%; /* Küçük ekranlarda input genişliğini ayarla */
  }

  .bayilik-form button[type="submit"] {
    width: 100%; /* Küçük ekranlarda butonu tam genişlik yap */
  }
}


/* İş Başvuru Formu Section Stilleri (Bayilik formuyla benzerlik artırıldı) */
.job-application-section .container {
    max-width: 900px; /* Max genişlik */
    margin: 40px auto; /* Üstten/alttan 40px, sağdan/soldan otomatik marj ile yatayda ortalama */
    background-color: #3a3b3f; /* Belirtilen form arka plan rengi */
    padding: 40px;
    border-radius: 12px; /* Bayilik formuyla aynı radius */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4); /* Bayilik formuyla aynı gölge */
    display: flex;
    flex-direction: column;
}

/* Başlık Stilleri (Bayilik formuyla benzerlik artırıldı) */
.job-application-section h1 {
    text-align: center;
    font-size: 2.4rem; /* Bayilik formuyla aynı font boyutu */
    margin-bottom: 30px; /* Bayilik formuyla aynı marjin */
    color: #FAB403; /* Başlık rengi sarı */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.job-application-section h2 {
    font-size: 1.5rem; /* Bayilik formuyla aynı font boyutu */
    margin-bottom: 20px; /* Bayilik formuyla aynı marjin */
    border-bottom: 2px solid #FAB403; /* Alt çizgi sarı ve aynı kalınlık */
    padding-bottom: 6px; /* Bayilik formuyla aynı padding */
    color: #fff;
    text-transform: uppercase;
}

/* Form Yapısı (Bayilik formuyla benzerlik artırıldı) */
.job-application-form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Bayilik formuyla aynı boşluk */
    margin-bottom: 30px; /* Form altındaki boşluk */
}

.job-application-form .form-left,
.job-application-form .form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Bayilik formuyla aynı boşluk */
    min-width: 300px;
}

/* Label Stilleri (Bayilik formuyla aynı) */
.job-application-form label {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
}

/* Input ve Textarea Stilleri (Bayilik formuyla aynı) */
.job-application-form input[type="text"],
.job-application-form input[type="email"],
.job-application-form input[type="tel"],
.job-application-form input[type="date"],
.job-application-form select,
.job-application-form textarea {
    padding: 10px;
    border: 1px solid #555;
    background-color: #2e2f33;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.job-application-form input:focus,
.job-application-form select:focus,
.job-application-form textarea:focus {
    border-color: #FAB403;
    box-shadow: 0 0 0 3px rgba(250, 180, 3, 0.3);
    outline: none;
}

.job-application-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Dosya Yükleme Stilleri */
.file-upload-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px; /* Padding ayarı */
    border: 1px solid #555;
    background-color: #2e2f33;
    color: #FAB403;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 0.95rem;
}

.file-upload-label:hover {
    background-color: #3e3f43;
    border-color: #FAB403;
}

.file-upload-label input[type="file"] {
    display: none;
}

.file-upload-label .file-name {
    flex-grow: 1;
    color: #fff;
    font-size: 0.95rem;
}

.file-upload-label::before {
    content: '📁';
    font-size: 1.1rem;
    margin-right: 5px;
}

.file-info {
    font-size: 0.85rem;
    color: #bbb;
    margin-left: 5px;
}

/* Checkbox Stilleri */
.form-bottom-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #2e2f33;
    border: 1px solid #555;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #3e3f43;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #FAB403;
    border-color: #FAB403;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #3a3b3f;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Gönder Butonu (Bayilik formuyla uyumlu kırmızı buton) */
.job-application-form button[type="submit"] {
    background-color: #e63946; /* Kırmızı ton */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-application-form button[type="submit"]:hover {
    background-color: #d62828;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .job-application-form {
        flex-direction: column;
        gap: 30px;
    }

    .job-application-section .container {
        padding: 30px;
        margin: 20px;
    }

    .job-application-section h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .job-application-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .job-application-form label,
    .job-application-form input,
    .job-application-form textarea,
    .job-application-form button[type="submit"] {
        font-size: 0.95rem;
    }

    .file-upload-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .job-application-section .container {
        padding: 20px;
        margin: 10px;
    }

    .job-application-section h1 {
        font-size: 1.8rem;
    }

    .job-application-form button[type="submit"] {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* Ürün Listesi */
.product-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  align-items: stretch;
}

.product {
  flex: 1 1 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  display: flex;
  flex-direction: column;
  background-color: #2e2f33;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-left {
  max-width: 1500px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}



.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.product img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product:hover iframe {
  transform: scale(1.05);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.altbaslik {
  padding: 10px 0 20px;
  background-color: transparent;
}

.altbaslik h3 {
  margin: 0;
  color: #f4f4f4;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s;
  text-decoration: none;
}

.altbaslik h3 a {
  text-decoration: none;
  color: #f4f4f4;
  display: inline-block;
}

.altbaslik h3 a:hover {
  color: #fab403;
}

.cizgi {
  flex: 1;
  border: none;
  height: 2px;
  background-color: #fff;
  margin: 30px 0;
}

.yazi-cizgi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 0 20px;
}



/* Duyurular sayfasında geçici olarak boş bırakılan kartlar */
.product.empty-duyuru-card {
  background-color: #2e2f33;
  min-height: 190px;
  cursor: default;
}

.product.empty-duyuru-card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.product.empty-duyuru-card::after {
  content: "";
  display: block;
  min-height: 58px;
}

.product.empty-duyuru-card:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* EPDK canlı duyuru kartı */
.product.epdk-duyuru-product {
  color: #fff;
}

.product.epdk-duyuru-product:hover .epdk-duyuru-top {
  transform: scale(1.03);
}

.epdk-duyuru-link {
  color: inherit;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.epdk-duyuru-top {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 13px 14px;
  box-sizing: border-box;
  background: radial-gradient(circle at top left, rgba(0, 132, 255, 0.95), rgba(7, 34, 62, 0.98) 58%, #111827 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.4s ease;
}

.epdk-duyuru-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.epdk-duyuru-header i {
  color: #fab403;
  font-size: 22px;
}

.epdk-duyuru-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.epdk-duyuru-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: start;
  font-size: 11px;
  line-height: 1.2;
  color: #f5f7fb;
}

.epdk-duyuru-date {
  color: #fab403;
  font-weight: 800;
  white-space: nowrap;
}

.epdk-duyuru-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.epdk-duyuru-status {
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.9;
}

/* responsive görünüm için */
@media (max-width: 1024px) {
  .product {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .product {
    width: 100%;
  }
}

.urunler-baslik {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin: 40px 0 20px;
  letter-spacing: 0.5px;
}


/*ÇEREZLER*/
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.cookie-consent-overlay.show {
    display: flex;
}

.cookie-consent-box {
    background-color: #0056b3;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.cookie-consent-box h2 {
    margin-bottom: 10px;
    font-size: 36px;
    color: #ffffff;
}

.cookie-consent-box a {

    color: #5d8dff;
    text-decoration: none;

}
.cookie-consent-box a:hover {

    color: #2e6aea;
    text-decoration: none;

}

.cookie-consent-box p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-consent-box .cookie-buttons button {
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #0056b3;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-consent-box .cookie-buttons button:hover {
    background-color: #3c7eff;
}


/*bayilerimiz css*/

.map-wrapper {
  position: relative; /* İçindeki absolute konumlandırılmış öğeler için referans noktası */
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1200 / 657;
  padding-top: 20px;  /* Üst boşluğu azalt */
  padding-bottom: 0px;
  border-radius: 5px;
  overflow: hidden; /* Taşmaları engeller */
}

/* 2. Arka plan resmini ekliyoruz */
.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;   /* Alanı tam doldurur, oranı korur */
  background-position: center;
  opacity: 0.1;             /* Üstteki haritayı belirginleştirir */
}

#svg-harita-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: 400px; /* ✨ mobilde bile yer kaplamasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}


/* SVG Türkiye Haritası */
#svg-turkiye {
    width: 100%;
    height: auto;
    display: block;
    fill: #9aa1ab !important;
    stroke: rgba(112, 112, 112, 0.6);
    stroke-width: 1px;
    transition: fill 0.2s ease, stroke 0.2s ease;
    margin-bottom: 0;
    z-index: 15;
}

footer, #footer-placeholder {
    margin-top: auto;
  flex-shrink: 0;
}


/* Hover Etkisi */
#svg-turkiye g:not(.is-selected) path:hover {
    fill: rgba(55, 121, 255, 0.42);
}

/* Seçilen İl */
#svg-turkiye g.is-selected path {
    fill: #3c7eff !important;
    stroke: #ffffff;
    stroke-width: 2px;
}
/* Harita Başlığı */
.map-title {
    text-align: center; /* Başlığı ortala */
    color: #f9f9f9; /* Beyaz veya sayfanın genel yazı rengi */
    font-family: 'Oswald', sans-serif; /* Navbar veya diğer başlıklarınızla uyumlu font */
    font-size: em; /* Başlık boyutunu ayarlayın, istediğiniz gibi değiştirebilirsiniz */
    font-weight: 700; /* Kalınlık */
    text-transform: uppercase; /* Tüm harfleri büyüt */
    letter-spacing: 2px; /* Harfler arasında boşluk */
    padding-top: 0px; /* Üstten boşluk */
}

/* Responsive Düzenlemeler (isteğe bağlı) */
@media (max-width: 768px) {
    .map-title {
        font-size: 2.5em;
        margin-bottom: 0px;
    }
}

@media (max-width: 480px) {
    .map-title {
        font-size: 2em;
        margin-bottom: 0px;
    }
}

/* Hover İl Adı */
#hover-il-adi {
    position: absolute;
    bottom: 20px; /* Haritanın altından yukarı doğru 20px boşluk */
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e2f33; /* bayi-card ile aynı arka plan */
    color: #f9f9f9; /* bayi-card ile aynı yazı rengi */
    padding: 15px 20px; /* bayi-card padding'ine benzer */
    border-radius: 8px; /* bayi-card ile aynı border-radius */
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.2s ease-in-out, transform 0.2s ease; /* yumuşak geçiş */
    pointer-events: none; /* Üzerine tıklanamaz, harita etkileşimlerini engellemez */
    z-index: 10; /* Diğer harita öğelerinin üzerinde olsun */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* bayi-card ile aynı gölge */
    border: 1px solid rgba(250, 180, 3, 0.3); /* Sarı tonlarda hafif bir kenarlık ekleyebiliriz */
}

/* ----- Mevcut Bayi Listesi CSS Kodlarınız Olduğu Gibi Kalabilir ----- */
#bayi-listesi-kapsayici {
    width: 100%;                      /* Genişliği %90'a düşürdük */
    max-width: 780px;                /* Ekran çok büyüse bile en fazla 750px olsun */
    margin-left: auto;               /* Bu ve altındaki satır, kutuyu ortalar */
    margin-right: auto;
    margin-top: 20px; 
    margin-bottom: 20px; 
    padding: 20px;
    background-color: #3a3b3f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
}

#bayi-listesi-kapsayici.hidden {
    display: none;
}

#secilen-il-adi {
    margin-bottom: 30px;
    font-size: 32px;
    color: #5d8dff;
    font-weight: 700;
}

/* Bayi Kartları İçin Grid Yapısı */
.bayi-grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Sadece bu satırı değiştirin */
    gap: 25px; 
    justify-content: center; 
    padding: 20px 0;
}

/* Her Bir Bayi Kartı */
.bayi-card {
    background-color: #4a4c51; /* Daha açık koyu gri kart arka planı */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bayi-card:hover {
    transform: translateY(-5px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.bayi-card h3 {
    color: #5d8dff; /* Mavi başlık */
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px solid rgba(93, 141, 255, 0.3);
    padding-bottom: 10px;
}

.bayi-card p {
    color: #ccc; /* Açık gri yazı */
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}

.bayi-card p i {
    color: #5d8dff; /* İkon mavi */
    margin-right: 8px;
    font-size: 16px;
}

.bayi-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.route-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
background: linear-gradient(135deg, #2f79ff, #5aa9ff);
    color: #101820;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.route-button:hover {
    background: linear-gradient(135deg, #4f8cff, #3b76ff);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(47, 115, 255, 0.18);
}

.route-button.disabled {
    display: inline-flex;
    justify-content: center;
    cursor: not-allowed;
    background: rgba(255,255,255,0.08);
    color: #c7c7c7;
    border-color: rgba(255,255,255,0.08);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    #bayi-listesi-kapsayici {
        padding: 15px;
        margin-top: 30px;
    }

    #secilen-il-adi {
        font-size: 28px;
    }

    .bayi-grid-container {
        grid-template-columns: 1fr; /* Küçük ekranlarda tek kolon */
        gap: 20px;
    }

    .bayi-card {
        padding: 20px;
    }

    .bayi-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #secilen-il-adi {
        font-size: 24px;
    }

    .bayi-card p {
        font-size: 14px;
    }
}

.hidden {
    display: none !important;
}   

/*bizkimiz.css*/

#grup-sirketler h2 {
    text-align: center;
    margin-top: 10px; /* Üst boşluğu ayarlayın */
    margin-bottom: 10px; /* Alt boşluğu ayarlayın */
}

#grup-sirketler.banner-alt {
    padding-top: 10px; /* Örnek değer, üst iç boşluğu ayarlayın */
    padding-bottom: 20px; /* Örnek değer, alt iç boşluğu ayarlayın */
}

.grup-sirket-container { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.grup-sirket {
    flex-basis: calc(33.333% - 27px);
    max-width: 280px; 
    text-align: center; 
}

@media (max-width: 992px) { 
    .grup-sirket {
        flex-basis: calc(50% - 20px); 
        max-width: unset; 
    }
}

@media (max-width: 600px) { 
    .grup-sirket {
        flex-basis: 100%; 
        max-width: unset;
    }
}

.harita-arka-plan {
    color: #004494;
    background-size: 100% 100%;           /* SVG ile aynı ölçek */
    background-position: center center;   /* Orta konumlandırma */
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1200px;                    /* Görsel boyutuna sabitlenmiş */
    aspect-ratio: 3 / 2;                  /* 1536 / 1024 = 1.5 */
    margin: 0 auto;
    position: relative;
}


.harita-arka-plan svg {
    position: relative;
    z-index: 2;
    width: 100%;
}

.map-subtitle {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #f1f1f1;
  margin-top: 12px;
  margin-bottom: 28px;
  line-height: 1.8; /* 🔹 Satır yüksekliği artırıldı */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
}

.bestcard-ayricaliklari {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.bestcard-ayricaliklari .container {
  max-width: 1200px;
  width: 100%;
}

.bestcard-ayricaliklari h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f1f1f1;
  text-align: center;
}

.bestcard-ayricaliklari p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 9999;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.popup-box {
    text-align: center;
}

.popup-buttons button {
    margin: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-buttons button:first-child { background-color: #ffffff; color: white; }
.popup-buttons button:nth-child(2) { background-color: #28a745; color: white; }
.popup-buttons button:last-child { background-color: #dc3545; color: white; }


.vision-mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
  }

  .vision-box, .mission-box {
    flex: 1 1 45%;
    background-color: #2e2f33;
    padding: 20px;
    border-radius: 8px;
  }

  .vision-box h2, .mission-box h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .vision-box p, .mission-box p {
    color: #ffffff;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .vision-box, .mission-box {
      flex: 1 1 100%;
    }
  }

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: auto;
}

main {
  flex: 1;
}
#footer-placeholder {
  margin-top: auto;
}

/* Bayiler sayfası: sabit 100vh yerine akışa göre uzasın */
.page-wrapper.page-scroll {
  height: auto;        /* 100vh sabiti kalkıyor */
  min-height: 100vh;   /* yine de en az tam ekran kadar olsun */
  overflow-y: auto; /* içerik taşınca görünür kalsın */
}

/* Harita alanı güvenli yükseklik + responsive */
.map-wrapper {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  min-height: 520px;    /* footer'ın "yutmasını" engeller */
}

#svg-harita-container {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 380px;    /* SVG yüklenene kadar da yer tut */
}

/* SVG tam genişlik, orantılı yükseklik */
#svg-harita-container svg,
#svg-turkiye {
  width: 100%;
  height: auto;
  display: block;
}

/* Küçük ekranlarda biraz daha yüksek tutalım */
@media (max-width: 768px) {
  .map-wrapper { min-height: 620px; }
  #svg-harita-container { min-height: 420px; }
}

/* Duyurular sayfası güncel kart yapısı */
.duyuru-grid-guncel {
  align-items: stretch;
}

.live-duyuru-product {
  position: relative;
}

.live-duyuru-link {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.live-duyuru-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #08172e;
}

.live-duyuru-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-duyuru-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(5, 12, 25, 0.58), rgba(5, 12, 25, 0.88));
  backdrop-filter: blur(3px);
  box-sizing: border-box;
}

.live-duyuru-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(250, 180, 3, 0.96);
  color: #07182b;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.live-duyuru-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}

.live-duyuru-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  color: #fff;
  font-size: 10.5px;
  line-height: 1.15;
}

.live-duyuru-date {
  color: #fab403;
  font-weight: 800;
  white-space: nowrap;
}

.live-duyuru-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.live-duyuru-status {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  line-height: 1.25;
}

.product.empty-duyuru-card {
  order: 50;
  opacity: 0.72;
}


/* Bayilerimiz - canlı harita alanı */
.bayiler-page-modern {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px 60px;
  box-sizing: border-box;
}

.bayi-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  margin: 10px auto 28px;
}

.bayi-hero-text,
.bayi-stats,
.bayi-map-section,
.modern-bayi-list {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border-radius: 24px;
}

.bayi-hero-text {
  padding: 34px 38px;
  position: relative;
  overflow: hidden;
}

.bayi-hero-text::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(32, 131, 255, 0.28), transparent 65%);
  pointer-events: none;
}

.bayi-eyebrow {
  display: inline-flex;
  color: #fab403;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bayi-hero-text h1 {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: 1.5px;
}

.bayi-hero-text p {
  color: rgba(255,255,255,0.82);
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.bayi-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px;
}

.bayi-stat-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
}

.bayi-stat-card span {
  display: block;
  color: #48a7ff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.bayi-stat-card small {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  margin-top: 8px;
  display: block;
}

.bayi-map-section {
  padding: 24px;
  margin: 0 auto 30px;
  width: 100%;
  box-sizing: border-box;
}

.bayi-map-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  padding: 6px 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bayi-map-toolbar h2 {
  color: #ffffff;
  margin: 0 0 6px;
  font-size: 28px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.8px;
}

.bayi-map-toolbar p {
  color: rgba(255,255,255,0.66);
  margin: 0;
  font-size: 14px;
}

.il-select-wrap {
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(72, 167, 255, 0.32);
  border-radius: 999px;
  padding: 12px 16px;
  color: #fab403;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.il-select-wrap select {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: 0;
  outline: 0;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.il-select-wrap select option {
  color: #101820;
}

.modern-map-wrapper {
  max-width: 1240px !important;
  aspect-ratio: auto !important;
  min-height: 560px !important;
  padding: 22px !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(46, 143, 255, 0.16), transparent 36%),
    radial-gradient(circle at 15% 20%, rgba(250, 180, 3, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 27, 48, 0.96), rgba(5, 9, 18, 0.98));
  border: 1px solid rgba(72, 167, 255, 0.2);
  overflow: visible !important;
}

.modern-svg-container {
  max-width: 1180px !important;
  min-height: 500px !important;
  padding: 0 !important;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,0.4));
}

.map-loading,
.map-error {
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

#svg-harita-container #svg-turkiye,
#svg-harita-container svg {
  width: 100% !important;
  max-height: 540px;
  height: auto !important;
}

#svg-turkiye g path {
  fill: #6f7a8a !important;
  stroke: rgba(8, 12, 22, 0.78) !important;
  stroke-width: 0.8px !important;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
}

#svg-turkiye g.no-bayi path {
  fill: #6d7582 !important;
  opacity: 0.72;
}

#svg-turkiye g.has-bayi path {
  fill: #1579d7 !important;
  stroke: rgba(255,255,255,0.62) !important;
  filter: drop-shadow(0 0 8px rgba(32, 145, 255, 0.55));
}

#svg-turkiye g.has-bayi:hover path,
#svg-turkiye g.has-bayi.is-selected path {
  fill: #27a3ff !important;
  stroke: #ffffff !important;
  stroke-width: 1.4px !important;
  filter: drop-shadow(0 0 14px rgba(39, 163, 255, 0.92));
}

#bayi-pin-layer {
  pointer-events: none;
}

.bayi-pin-dot {
  fill: #fab403;
  stroke: #ffffff;
  stroke-width: 1.2px;
  filter: drop-shadow(0 0 5px rgba(250,180,3,0.8));
}

.bayi-pin-pulse {
  fill: rgba(250, 180, 3, 0.28);
  stroke: rgba(250, 180, 3, 0.75);
  stroke-width: 0.8px;
  transform-origin: center;
  animation: qplusPinPulse 1.8s ease-out infinite;
}

@keyframes qplusPinPulse {
  0% { transform: scale(0.65); opacity: 0.95; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

#hover-il-adi {
  bottom: 26px !important;
  background: rgba(8, 13, 24, 0.92) !important;
  border: 1px solid rgba(72, 167, 255, 0.36) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.38), 0 0 18px rgba(32, 145, 255, 0.16) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 150px;
}

#hover-il-adi strong {
  color: #ffffff;
  font-size: 16px;
}

#hover-il-adi span {
  color: #fab403;
  font-size: 12px;
  font-weight: 800;
}

.modern-bayi-list {
  max-width: 1120px !important;
  width: 100% !important;
  padding: 30px !important;
  background: linear-gradient(145deg, rgba(13, 24, 42, 0.98), rgba(7, 12, 23, 0.98)) !important;
  border: 1px solid rgba(72, 167, 255, 0.18) !important;
}

#secilen-il-adi {
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

.secilen-il-ozet {
  color: rgba(255,255,255,0.68);
  margin: 0 0 18px;
}

.modern-bayi-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}

.modern-bayi-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)) !important;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px !important;
  padding: 22px !important;
}

.bayi-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.bayi-card-pin {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #101820;
  background: linear-gradient(135deg, #fab403, #ffd86f);
  box-shadow: 0 14px 26px rgba(250, 180, 3, 0.18);
  flex: 0 0 auto;
}

.modern-bayi-card h3 {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 19px !important;
}

.modern-bayi-card small {
  color: #48a7ff;
  font-weight: 800;
}

.bayi-empty-message {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}

@media (max-width: 900px) {
  .bayi-hero-panel {
    grid-template-columns: 1fr;
  }
  .bayi-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .bayi-map-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .il-select-wrap {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .bayiler-page-modern {
    padding: 0 14px 40px;
  }
  .bayi-hero-text {
    padding: 26px 22px;
  }
  .bayi-stats {
    grid-template-columns: 1fr;
  }
  .modern-map-wrapper {
    min-height: 430px !important;
    padding: 10px !important;
  }
  .modern-svg-container {
    min-height: 360px !important;
  }
}

/* ==========================================================================
   QPLUS ÜRÜNLER SAYFASI - sade kullanım alanları ve ürün kartları
   ========================================================================== */
.urunler-page.main-content {
  align-items: stretch;
  padding: 70px 24px 90px;
  background: var(--qplus-page-bg);
}

.urunler-products-section {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.urunler-section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}

.urunler-section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fab403;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.urunler-section-heading h1,
.urunler-section-heading h2 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 10px;
}

.urunler-section-heading p {
  color: #c7cfdd;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.urunler-section-heading-compact {
  margin-bottom: 34px;
}

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

.qplus-product-card {
  overflow: hidden;
  border-radius: 24px;
  background: #151b27;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.qplus-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(250, 180, 3, 0.36);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.qplus-product-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.qplus-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f1520;
}

.qplus-product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 16, 0.22), transparent 45%);
  pointer-events: none;
}

.qplus-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.qplus-product-card:hover .qplus-product-image img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.qplus-product-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #10141d;
  background: rgba(250, 180, 3, 0.96);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
}

.qplus-product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.qplus-product-content h3 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.qplus-product-content p {
  color: #b9c1d1;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

@media (max-width: 700px) {
  .urunler-page.main-content {
    padding: 46px 16px 70px;
  }

  .urunler-products-section {
    padding: 24px;
    border-radius: 22px;
  }

  .urunler-grid {
    grid-template-columns: 1fr;
  }

}

/* İlk kart özel tasarım - En Yakın İstasyon */
.feature-box.feature-box-station {
  flex: 0 0 455px;
  max-width: 455px;
  min-width: 455px;
  min-height: 256px;
  padding: 26px 28px;
  border-radius: 24px;
  align-items: stretch;
  text-align: left;
  justify-content: space-between;
  background:
    radial-gradient(circle at 86% 18%, rgba(84, 183, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #123160 0%, #15447c 56%, #1769bd 100%);
  border: 1px solid rgba(110, 184, 255, 0.25);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.feature-box.feature-box-station::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 86%, rgba(255, 213, 79, 0.12), transparent 26%),
    linear-gradient(120deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(145deg, rgba(102, 190, 255, 0.20), rgba(0,0,0,0) 42%);
  pointer-events: none;
}

.feature-box.feature-box-station::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: #f6c332;
  box-shadow: 0 0 16px rgba(246, 195, 50, 0.35);
  pointer-events: none;
}

.feature-box-station .station-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 58%;
  min-height: 100%;
}

.feature-box-station .station-card-content span {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0;
}

.feature-box-station .station-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 235px;
}

.feature-box-station .station-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 6px;
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
}

.feature-box-station .station-card-action i {
  margin: 0;
  font-size: 13px;
  color: #f6c332;
}

.feature-box-station .station-card-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-box-station .station-card-q {
  position: absolute;
  right: -8px;
  top: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 190px;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  font-weight: 700;
}

.feature-box-station .station-card-route {
  position: absolute;
  inset: 22px 26px 24px 18px;
  border-radius: 18px;
  opacity: 0.55;
  background:
    radial-gradient(circle at 26% 34%, rgba(255,255,255,0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 68%, rgba(255,255,255,0.13) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 28%, rgba(255,255,255,0.12) 0 2px, transparent 3px),
    linear-gradient(125deg, transparent 0 28%, rgba(120, 203, 255, 0.16) 29%, transparent 30%),
    linear-gradient(155deg, transparent 0 58%, rgba(120, 203, 255, 0.15) 59%, transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, auto, 26px 26px, 26px 26px;
}

.feature-box-station > .station-card-visual > i {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 84px;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(79, 200, 255, 0.35);
}

.feature-box.feature-box-station:hover {
  background:
    radial-gradient(circle at 86% 18%, rgba(92, 193, 255, 0.48), transparent 30%),
    linear-gradient(135deg, #173a6f 0%, #18508f 56%, #1c77d0 100%);
  border-color: rgba(137, 207, 255, 0.36);
}

@media (max-width: 1200px) {
  .feature-box.feature-box-station {
    flex: 1 1 455px;
  }
}

@media (max-width: 767px) {
  .feature-box.feature-box-station {
    min-width: 100%;
    max-width: 100%;
    min-height: 256px;
  }
}

/* Diğer kartlar özel tasarım */
.feature-box.feature-box-prices,
.feature-box.feature-box-magazine {
  flex: 0 0 455px;
  max-width: 455px;
  min-width: 455px;
  min-height: 256px;
  padding: 26px 28px;
  border-radius: 24px;
  align-items: stretch;
  text-align: left;
  justify-content: space-between;
  border: 1px solid rgba(110, 184, 255, 0.25);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.feature-box.feature-box-prices {
  background:
    radial-gradient(circle at 84% 16%, rgba(82, 189, 255, 0.40), transparent 30%),
    linear-gradient(135deg, #142e58 0%, #164678 54%, #1761a9 100%);
}

.feature-box.feature-box-magazine {
  background:
    radial-gradient(circle at 86% 16%, rgba(98, 190, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #153260 0%, #174577 50%, #175d9f 100%);
}

.feature-box.feature-box-prices::before,
.feature-box.feature-box-magazine::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
}

.feature-box.feature-box-prices::before {
  background:
    radial-gradient(circle at 18% 86%, rgba(255, 213, 79, 0.10), transparent 26%),
    linear-gradient(120deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(145deg, rgba(102, 190, 255, 0.20), rgba(0,0,0,0) 42%);
}

.feature-box.feature-box-magazine::before {
  background:
    radial-gradient(circle at 18% 86%, rgba(255, 213, 79, 0.08), transparent 24%),
    linear-gradient(120deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(145deg, rgba(118, 200, 255, 0.20), rgba(0,0,0,0) 44%);
}

.feature-box.feature-box-prices::after,
.feature-box.feature-box-magazine::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: #f6c332;
  box-shadow: 0 0 16px rgba(246, 195, 50, 0.35);
  pointer-events: none;
}

.price-card-content,
.magazine-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  width: 58%;
  min-height: 100%;
}

.price-card-content span,
.magazine-card-content span {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0;
  color: #ffffff;
}

.price-card-content p,
.magazine-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 245px;
}

.price-card-action,
.magazine-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 6px;
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
}

.price-card-action i,
.magazine-card-action i {
  margin: 0;
  font-size: 13px;
  color: #f6c332;
}

.price-card-visual,
.magazine-card-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.price-card-q,
.magazine-card-q {
  position: absolute;
  right: -8px;
  top: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 190px;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  font-weight: 700;
}

.price-card-bars {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price-card-bars em {
  display: block;
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(66, 184, 255, 0.95), rgba(255,255,255,0.15));
  box-shadow: 0 0 16px rgba(66, 184, 255, 0.20);
}

.price-card-bars em:nth-child(1) { height: 34px; }
.price-card-bars em:nth-child(2) { height: 54px; }
.price-card-bars em:nth-child(3) { height: 76px; }

.price-card-visual > i {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 78px;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(79, 200, 255, 0.35);
}

.feature-box.feature-box-prices:hover {
  background:
    radial-gradient(circle at 84% 16%, rgba(94, 199, 255, 0.48), transparent 30%),
    linear-gradient(135deg, #183c6e 0%, #1a558e 54%, #1e72be 100%);
  border-color: rgba(137, 207, 255, 0.36);
}

.magazine-card-cover,
.magazine-card-back {
  position: absolute;
  width: 118px;
  height: 148px;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

.magazine-card-cover {
  right: 38px;
  top: 48px;
  z-index: 2;
  background:
    radial-gradient(circle at 70% 18%, rgba(86, 194, 255, 0.30), transparent 30%),
    linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04) 28%),
    linear-gradient(145deg, #0b4ca0 0%, #082956 100%);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 18px 16px;
}

.magazine-card-cover b {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.magazine-card-cover small {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.magazine-card-back {
  right: 18px;
  top: 68px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04) 28%), linear-gradient(145deg, #0a3f82, #072444);
  opacity: 0.75;
  transform: rotate(10deg);
}

.feature-box.feature-box-magazine:hover {
  background:
    radial-gradient(circle at 86% 16%, rgba(105, 205, 255, 0.46), transparent 30%),
    linear-gradient(135deg, #183c70 0%, #1a5289 50%, #1d6daf 100%);
  border-color: rgba(137, 207, 255, 0.36);
}

@media (max-width: 1200px) {
  .feature-box.feature-box-prices,
  .feature-box.feature-box-magazine {
    flex: 1 1 455px;
  }
}

@media (max-width: 767px) {
  .feature-box.feature-box-prices,
  .feature-box.feature-box-magazine {
    min-width: 100%;
    max-width: 100%;
    min-height: 256px;
  }
}

/* Kartları masaüstünde yan yana hizalama düzeltmesi */
.feature-bar {
  max-width: 1455px;
  grid-template-columns: repeat(3, 455px);
  justify-content: center;
  align-items: stretch;
  gap: 22px;
}

@media (max-width: 1450px) {
  .feature-bar {
    max-width: 954px;
    grid-template-columns: repeat(2, 455px);
  }
}

@media (max-width: 980px) {
  .feature-bar {
    max-width: 455px;
    grid-template-columns: 1fr;
  }
}


/* Kartları 3'lü yan yana sabitleme düzeltmesi */
.feature-bar {
  width: min(1455px, calc(100% - 48px)) !important;
  max-width: 1455px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 455px) !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 22px !important;
  flex-wrap: nowrap !important;
}

/* Önceki 1450px kırılımını geçersiz kılar: masaüstünde 3 kart yan yana kalır */
@media (max-width: 1450px) and (min-width: 1101px) {
  .feature-bar {
    width: min(1455px, calc(100% - 48px)) !important;
    max-width: 1455px !important;
    grid-template-columns: repeat(3, 455px) !important;
  }
}

/* Tablet ve telefonda tek sütuna düşer */
@media (max-width: 1100px) {
  .feature-bar {
    width: min(455px, calc(100% - 24px)) !important;
    max-width: 455px !important;
    grid-template-columns: 1fr !important;
  }

  .feature-box.feature-box-station,
  .feature-box.feature-box-prices,
  .feature-box.feature-box-magazine {
    min-width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
}


/* Ana sayfa alt bölümleri kart genişliğiyle hizalama */
.banner-alt {
  max-width: 1455px !important;
  width: min(1455px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.banner-alt .content {
  min-width: 0;
}

.home-contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-contact-actions .career-button {
  background: linear-gradient(135deg, #1e63b6, #2f85df);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.home-contact-actions .career-button:hover {
  background: linear-gradient(135deg, #2a76cf, #3b98f1);
}

.banner-alt .image.object {
  width: 100%;
}

.banner-alt .image.object img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .banner-alt {
    width: min(100% - 24px, 720px) !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 640px) {
  .banner-alt {
    width: calc(100% - 20px) !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
