/* ==========================================================================
   HERO (index.html)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-forest);
  overflow: hidden;
}

/* Scene — the whole decorative layer, nudged by mouse + scroll parallax (js/main.js) */
.hero__scene {
  position: absolute;
  inset: -6%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

/* Aurora — ambient color blooms, brighter + faster than a "flat" wash */
.hero__aurora {
  position: absolute;
  inset: 0;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.aurora--1 {
  top: -6%;
  left: -10%;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, var(--brand-green), transparent 70%);
  opacity: 0.55;
  filter: blur(32px);
  animation: aurora-drift-1 18s ease-in-out infinite;
}

.aurora--2 {
  bottom: -16%;
  left: 14%;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, var(--brand-lime), transparent 70%);
  opacity: 0.32;
  filter: blur(38px);
  animation: aurora-drift-2 21s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 7%) scale(1.18); }
}

@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.32; }
  50% { transform: translate(-6%, -8%) scale(1.22); opacity: 0.48; }
}

/* Particles — freshness sparkle, rising slowly with staggered timing */
.hero__particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  left: var(--x);
  bottom: -10px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--brand-lime);
  box-shadow: 0 0 8px 1px rgba(139, 195, 74, 0.75);
  opacity: 0;
  animation: particle-rise var(--dur) linear infinite;
  animation-delay: var(--delay);
}

@keyframes particle-rise {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 0.9; }
  85% { opacity: 0.45; }
  100% { transform: translateY(-92vh); opacity: 0; }
}

/*
 * Falling leaves — the hero's signature motion, lifted straight from the
 * logo's own leaf-scatter mark (assets/logo.svg) instead of an abstract
 * blob, so the motion reads as "Aybimaş" rather than generic gradient art.
 */
.hero__leaves {
  position: absolute;
  inset: 0;
}

.hero__leaf {
  position: absolute;
  left: var(--x);
  top: -18%;
  width: var(--size);
  height: var(--size);
  color: var(--leaf-color, var(--brand-leaf));
  opacity: 0;
  animation: leaf-fall var(--dur, 16s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes leaf-fall {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  8% { opacity: var(--leaf-opacity, 0.55); }
  85% { opacity: var(--leaf-opacity, 0.55); }
  100% { transform: translate(var(--drift, 60px), 148vh) rotate(var(--spin, 200deg)); opacity: 0; }
}

/* Faint grid texture, kept mainly behind the text column */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(250, 250, 247, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 250, 247, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(115deg, black 0%, black 38%, transparent 68%);
  mask-image: linear-gradient(115deg, black 0%, black 38%, transparent 68%);
}

/* Subtle grain for a crafted, non-flat feel */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (prefers-reduced-motion: reduce) {
  .hero__scene {
    transform: none !important;
  }

  .aurora,
  .particle,
  .hero__leaf {
    animation: none;
  }

  .hero__leaf {
    top: var(--y, 20%);
    opacity: var(--leaf-opacity, 0.5);
  }

  .particle {
    opacity: 0.5;
  }
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-block: calc(var(--header-height) + var(--space-8)) var(--space-10);
}

.hero__toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero__text { color: var(--brand-cream); }

.hero__text .eyebrow {
  color: var(--brand-leaf);
}

.hero__text .eyebrow::before {
  background: var(--brand-cream);
}

.hero__title--compact {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.2vw + 1rem, var(--text-3xl));
  line-height: 1.1;
  margin-top: var(--space-4);
  color: var(--brand-cream);
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  color: var(--brand-cream);
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-block: calc(var(--header-height) + var(--space-6)) var(--space-8);
    gap: var(--space-6);
  }

  .hero__toprow {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: var(--space-5);
  }

  .hero__text,
  .hero__actions {
    min-width: 0;
  }

  .hero__actions {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   KAMPANYA ŞERİDİ (index.html) — hero'nun altında, sitenin kart diline
   uyan çerçeveli slider (bkz. .application-panel, .poster-frame)
   ========================================================================== */

.campaign-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-cream);
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(20, 33, 15, 0.12);
}

.campaign-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.campaign-slider__track::-webkit-scrollbar {
  display: none;
}

.campaign-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.campaign-slider__slide picture,
.campaign-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(250, 250, 247, 0.9);
  color: var(--brand-ink);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.campaign-slider__arrow:hover {
  background: var(--brand-cream);
  transform: translateY(-50%) scale(1.06);
}

.campaign-slider__arrow--prev {
  left: var(--space-4);
}

.campaign-slider__arrow--next {
  right: var(--space-4);
}

.campaign-slider__dots {
  position: absolute;
  left: 50%;
  bottom: var(--space-4);
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
}

.campaign-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(250, 250, 247, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.campaign-slider__dot.is-active {
  background: var(--brand-cream);
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .campaign-slider__arrow {
    display: none;
  }
}

/* ==========================================================================
   PHOTO FRAME (index.html store-showcase, hakkimizda.html, kurumsal.html)
   ========================================================================== */

.photo-frame {
  position: relative;
  z-index: 1;
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: var(--space-4) calc(var(--space-4) * -1) calc(var(--space-4) * -1) var(--space-4);
  z-index: -1;
  background: var(--brand-lime);
  border-radius: var(--radius-lg);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.photo-frame figcaption {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--brand-muted);
}

@media (max-width: 640px) {
  .photo-frame::before {
    inset: var(--space-3) calc(var(--space-3) * -1) calc(var(--space-3) * -1) var(--space-3);
  }
}

/* ==========================================================================
   STATS ("Rakamlarla Aybimaş")
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  position: relative;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-soft);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
  color: var(--brand-forest);
}

.stat__label {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--brand-muted);
}

/* ==========================================================================
   VALUES ("Neden Aybimaş") — alternating rows
   ========================================================================== */

.value-row {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  padding-block: var(--space-8);
}

.value-row:not(:last-child) {
  border-bottom: 1px solid var(--border-soft);
}

.value-row:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 700px) {
  .value-row,
  .value-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
}

.value-row__icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.09);
  color: var(--brand-forest);
}

.value-row__icon svg {
  width: 42px;
  height: 42px;
}

.value-row__text h3 {
  margin-bottom: var(--space-2);
}

/* ==========================================================================
   KURUMSAL TEASER (index.html)
   ========================================================================== */

.corp-teaser {
  position: relative;
}

.corp-teaser .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.corp-teaser p {
  color: rgba(250, 250, 247, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ==========================================================================
   BRANCH STRIP (index.html teaser)
   ========================================================================== */

.branch-strip {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-4);
}

.branch-strip .card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(320px, 82vw);
  padding: var(--space-6);
}

.branch-strip h3 {
  margin-bottom: var(--space-2);
}

.branch-strip .badge {
  margin-top: var(--space-4);
}

/* ==========================================================================
   CTA BANNER (kariyer teaser on index.html)
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--brand-lime), var(--brand-leaf));
  color: var(--brand-ink);
  text-align: center;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.cta-banner p {
  color: rgba(20, 33, 15, 0.75);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* ==========================================================================
   NARRATIVE + TIMELINE + QUOTE (hakkimizda.html)
   ========================================================================== */

.narrative p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}

.timeline {
  position: relative;
  margin-left: var(--space-3);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 2px;
  background: var(--border-strong);
}

.timeline__item {
  position: relative;
  padding-left: var(--space-10);
  padding-bottom: var(--space-10);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-lime);
  border: 3px solid var(--brand-forest);
}

.timeline__year {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: var(--space-1);
}

.quote {
  position: relative;
  padding: var(--space-12);
  background: var(--surface-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quote p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--brand-ink);
  max-width: 60ch;
}

.quote--centered {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.quote__logo {
  position: relative;
  z-index: 1;
  height: 48px;
  width: auto;
  margin: 0 auto var(--space-6);
}

.quote--centered p {
  max-width: none;
  margin-inline: auto;
}

.quote cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: var(--space-6);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--brand-muted);
}

/* ==========================================================================
   AFİŞLER (afisler.html)
   ========================================================================== */

.poster-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: var(--space-8);
  max-width: 720px;
  margin: 0 auto;
}

.poster-gallery[hidden] {
  display: none;
}

.poster-frame {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface-white);
  box-shadow: 0 12px 30px rgba(20, 33, 15, 0.08);
}

.poster-gallery .poster-frame {
  max-width: none;
  margin: 0;
}

.poster-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.poster-frame__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  background: var(--surface-cream);
}

.poster-frame__empty svg {
  width: 64px;
  height: 64px;
  color: var(--brand-lime);
}

.poster-frame__empty p {
  color: var(--brand-muted);
  font-size: var(--text-lg);
}

.poster-frame__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
}

.poster-lightbox {
  width: min(720px, calc(100% - var(--space-8)));
  max-height: min(92vh, 900px);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: transparent;
}

.poster-lightbox::backdrop {
  background: rgba(20, 33, 15, 0.75);
  backdrop-filter: blur(2px);
}

.poster-lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-cream);
  border: 1px solid var(--border-soft);
  color: var(--brand-muted);
  transition: background var(--transition), color var(--transition);
}

.poster-lightbox__close:hover {
  background: var(--brand-lime);
  color: var(--brand-ink);
  border-color: var(--brand-lime);
}

.poster-lightbox__close svg {
  width: 16px;
  height: 16px;
}

.poster-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(92vh, 900px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(20, 33, 15, 0.35);
}

@media (max-width: 640px) {
  .poster-lightbox {
    width: calc(100% - var(--space-6));
  }
}

/* ==========================================================================
   KURUMSAL — always-visible sections (kurumsal.html)
   ========================================================================== */

.corp-sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.corp-section h2 {
  margin-bottom: var(--space-6);
}

/* ==========================================================================
   VİZYON & MİSYON BAND (kurumsal.html)
   ========================================================================== */

.vm-band {
  z-index: 1;
}

.vm-band__head {
  text-align: center;
  margin-inline: auto;
}

.vm-band__head .eyebrow {
  justify-content: center;
}

.vm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: stretch;
}

.vm-col {
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid rgba(250, 250, 247, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition), background var(--transition);
}

.vm-col:hover {
  transform: translateY(-4px);
  background: rgba(250, 250, 247, 0.13);
}

.vm-col h3 {
  margin-bottom: var(--space-3);
}

.vm-col__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 247, 0.14);
  color: var(--brand-lime);
  margin-bottom: var(--space-5);
}

.vm-col__icon svg {
  width: 26px;
  height: 26px;
}

.vm-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(250, 250, 247, 0.35), transparent);
}

@media (max-width: 700px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(250, 250, 247, 0.35), transparent);
  }
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 68ch;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--brand-muted);
}

.check-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--brand-green);
}

/* ==========================================================================
   ACCORDION (kariyer.html)
   ========================================================================== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.accordion__item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface-white);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion__item.is-open {
  border-color: var(--brand-lime);
}

.accordion__heading {
  margin: 0;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  text-align: left;
}

.accordion__trigger .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.accordion__item.is-open .accordion__trigger .icon {
  transform: rotate(45deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion__panel-inner {
  padding: 0 var(--space-6) var(--space-6);
}

.accordion__meta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

/* ==========================================================================
   BRANCHES (subelerimiz.html)
   ========================================================================== */

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

[data-branch-groups] .section-head:not(:first-child) {
  margin-top: var(--space-4);
}

[data-branch-groups] .section-head {
  scroll-margin-top: calc(var(--header-height) + var(--space-6));
}

@media (max-width: 700px) {
  .branch-grid {
    grid-template-columns: 1fr;
  }
}

.branch-card {
  padding: 0;
  overflow: hidden;
}

.branch-card__header {
  position: relative;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-forest);
  overflow: hidden;
}

.branch-card__header .leaf-decor {
  --leaf-size: 150px;
  top: 50%;
  right: -8%;
  left: auto;
  bottom: auto;
  opacity: 0.16;
  transform: translateY(-50%) rotate(-14deg);
}

.branch-card__index {
  position: absolute;
  left: var(--space-5);
  bottom: -0.18em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(250, 250, 247, 0.16);
}

.branch-card__icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: var(--brand-cream);
}

.branch-card__body {
  padding: var(--space-6);
}

.branch-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}

.branch-card__toggle {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--brand-green);
}

.branch-card__toggle:hover {
  color: var(--brand-forest);
}

.branch-card__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.branch-card__detail p {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
}

.branch-map-wrap {
  margin-top: var(--space-4);
}

.branch-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface-white);
  cursor: pointer;
}

.branch-map__hint {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--brand-muted);
  text-align: center;
}

/* Renkli, marka bazlı (Aybimaş / Aybimaş Tanzim) daire pin */
.branch-map__pin span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--brand-white);
  box-shadow: 0 1px 4px rgba(20, 33, 15, 0.4);
}

.branch-map .leaflet-popup-content {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.branch-map .leaflet-popup-content a {
  color: var(--brand-green);
  font-weight: 600;
}

@media (max-width: 700px) {
  .branch-map {
    height: 320px;
  }
}

/* ==========================================================================
   PERKS + POSITIONS (kariyer.html)
   ========================================================================== */

.perk-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.perk-card__icon {
  position: relative;
  width: 100%;
  height: 84px;
  background: var(--gradient-forest);
  color: var(--brand-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.perk-card__icon .leaf-decor {
  --leaf-size: 130px;
  top: 50%;
  right: -10%;
  left: auto;
  bottom: auto;
  transform: translateY(-50%) rotate(-14deg);
}

.perk-card__icon svg:not(.leaf-decor) {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}

.perk-card h3 {
  margin: 0;
  padding: var(--space-5) var(--space-6) 0;
}

.perk-card p {
  margin: 0;
  padding: var(--space-3) var(--space-6) var(--space-6);
}

/* ==========================================================================
   FORMS (kariyer.html, iletisim.html)
   ========================================================================== */

.brand-choice-intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}

.brand-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.brand-choice__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6);
  font-family: inherit;
  cursor: pointer;
}

.brand-choice__card img {
  height: 52px;
  width: auto;
}

.brand-choice__card span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--brand-muted);
}

@media (max-width: 560px) {
  .brand-choice {
    grid-template-columns: 1fr;
  }
}

.application-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.application-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-forest);
}

.application-panel__step {
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .application-panel {
    padding: var(--space-6) var(--space-5);
  }
}

.cv-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin: 0 auto var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: var(--surface-cream);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-md);
}

.cv-note__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gradient-forest);
  color: var(--brand-white);
}

.cv-note__icon svg {
  width: 20px;
  height: 20px;
}

.cv-note__title {
  font-weight: 600;
  color: var(--brand-ink);
  margin-bottom: var(--space-3);
}

.cv-note__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cv-note__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--surface-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.cv-note__link:hover {
  border-color: var(--brand-lime);
  transform: translateY(-1px);
}

.cv-note__region {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-green);
  background: rgba(46, 125, 50, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.cv-note__email {
  font-size: var(--text-sm);
  color: var(--brand-ink);
  font-weight: 500;
}

@media (max-width: 560px) {
  .cv-note {
    flex-direction: column;
  }
}

.form-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--brand-green);
  margin-bottom: var(--space-5);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.form-back-link:hover {
  color: var(--brand-forest);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid--full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.field[hidden] {
  display: none;
}

.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}

.field-optional {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--brand-muted);
}

.field input,
.field select,
.field textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-cream);
  font-size: var(--text-base);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--brand-lime);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-green);
  background: var(--surface-white);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
  outline: none;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 18px;
  padding-right: var(--space-10);
}

.field select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field--invalid input,
.field--invalid select,
.field--invalid textarea {
  border-color: #b3402a;
}

.field-error {
  min-height: 1.2em;
  font-size: var(--text-xs);
  color: #b3402a;
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
}

.field--checkbox input {
  margin-top: 3px;
  width: auto;
  accent-color: var(--brand-green);
}

.field--checkbox label {
  font-weight: 400;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--brand-muted);
}

.field--checkbox label a {
  color: var(--brand-forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field--checkbox label a:hover {
  color: var(--brand-green);
}

.form-success {
  margin-bottom: var(--space-6);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-sm);
  background: rgba(139, 195, 74, 0.16);
  border: 1px solid var(--brand-lime);
  color: var(--brand-forest);
  font-weight: 600;
  font-size: var(--text-sm);
}

/* ==========================================================================
   CONTACT (iletisim.html)
   ========================================================================== */

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-block: var(--space-8);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info__item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--brand-forest);
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--brand-forest);
  transition: border-color var(--transition), transform var(--transition);
}

.social-links a:hover {
  border-color: var(--brand-lime);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}
