/* Ankara Et Kurban — Landing */

:root {
  --green: #c62828;
  --green-bright: #e53935;
  --green-dark: #8e0000;
  --dark: #1a1a1a;
  --dark-2: #222826;
  --dark-3: #2c2c2c;
  --charcoal: #1d2421;
  --red: #c62828;
  --gold: #c9a227;
  --beige: #efe8d8;
  --beige-dark: #e0d5c0;
  --text: #222;
  --text-muted: #5a5a5a;
  --white: #fff;
  --gray-bg: #f4f5f4;
  --gray-bar: #eceeec;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: 1140px;
  --header-h: 80px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --whatsapp: #25d366;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.text-green {
  color: var(--green-bright);
}

/* Placeholder: dosya yoksa renkli zemin; assets/ altına eklenince arka plan görseli görünür */
.ph-bg {
  background-color: #9aada0;
  background-image: var(--ph-img);
  background-size: cover;
  background-position: center;
  position: relative;
}

.ph-bg[data-ph]::before {
  content: attr(data-ph);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  background: rgba(20, 35, 25, 0.45);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
}

/* Görselleri ekledikten sonra etiketleri gizlemek için body'ye class="assets-ready" verin */
body.assets-ready .ph-bg[data-ph]::before {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.35);
}

.btn-primary:hover {
  background: var(--green-bright);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

.btn-outline-gold {
  background: rgba(20, 20, 20, 0.55);
  color: var(--white);
  border: 2px solid var(--gold);
  backdrop-filter: blur(4px);
}

.btn-outline-gold:hover {
  background: rgba(20, 20, 20, 0.75);
}

.btn-beige {
  width: 100%;
  background: var(--beige);
  color: var(--dark);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

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

.btn-lg {
  padding: 0.95rem 1.35rem;
  text-align: left;
}

.btn-lg span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.btn-lg small {
  font-weight: 500;
  font-size: 0.72rem;
  opacity: 0.9;
  letter-spacing: 0;
}

.btn-wide {
  min-width: min(100%, 360px);
  text-align: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
}

.badge-green {
  background: var(--green);
  color: var(--white);
}

.badge-red {
  background: var(--red);
  color: var(--white);
}

.eyebrow {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  color: var(--dark);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  height: var(--header-h);
  padding: 0;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.site-header .logo {
  align-items: stretch;
  align-self: stretch;
  height: 100%;
}

.logo-img {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  margin: 0;
}

.site-header .logo-img {
  height: 100%;
}

.site-footer .logo-img {
  height: 56px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--green);
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--dark);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-phone .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(198, 40, 40, 0.12);
  color: var(--green);
  display: grid;
  place-items: center;
}

.header-phone .icon-wrap svg {
  width: 16px;
  height: 16px;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-phone-text strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.header-phone-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ========== HERO SLIDER 1920x800 ========== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: visible;
}

.hero-slider {
  position: relative;
  width: 100%;
  background: #1a1a1a;
}

.hero-slider-viewport {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1920 / 800;
  max-height: min(800px, calc(100vw * 800 / 1920));
}

.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  position: relative;
  background: #2a2a2a;
  overflow: hidden;
}

.hero-slide-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slide 1 — yazı overlay (örnek banner stili) */
.hero-slide-content .hero-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 28%,
    rgba(0, 0, 0, 0.22) 52%,
    rgba(0, 0, 0, 0) 72%
  );
}

.hero-slide-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.25rem, 4vw, 3.5rem) clamp(1.25rem, 5vw, 5rem);
  max-width: min(720px, 55%);
  box-sizing: border-box;
}

.hero-badge {
  display: inline-block;
  background: #e30613;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.65rem, 1.1vw, 0.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(227, 6, 19, 0.35);
}

.hero-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.6vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero-desc {
  margin: 0 0 1rem;
  font-size: clamp(0.85rem, 1.25vw, 1.05rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 36ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-trust-icon {
  width: clamp(28px, 2.4vw, 38px);
  height: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(0.65rem, 1.5vw, 1.15rem);
}

.hero-cta-img {
  display: block;
  line-height: 0;
  transition: transform 0.25s ease;
}

.hero-cta-img:hover {
  transform: translateY(-3px);
}

.hero-cta-img img {
  height: clamp(72px, 9vw, 110px);
  width: auto;
  max-width: min(320px, 42vw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-nav:hover {
  background: #e30613;
}

.hero-nav.prev {
  left: 1rem;
}

.hero-nav.next {
  right: 1rem;
}

.hero-nav svg {
  width: 22px;
  height: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
}

.hero-dots .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots .slider-dot.is-active {
  background: #e30613;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .hero-slider-viewport {
    aspect-ratio: 1 / 1;
    max-height: min(1000px, 100vw);
    width: 100%;
  }

  .hero-slide-content .hero-slide-shade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0.78) 72%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }

  .hero-slide-inner {
    max-width: 100%;
    width: 100%;
    padding: 1rem 1rem 3.25rem;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero-badge {
    font-size: 0.62rem;
    padding: 0.45rem 0.75rem;
    margin-bottom: 0.65rem;
    align-self: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(1.25rem, 6.2vw, 1.75rem);
    margin-bottom: 0.55rem;
  }

  .hero-desc {
    font-size: 0.82rem;
    max-width: none;
    margin-bottom: 0.65rem;
  }

  .hero-trust-line {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .hero-trust-icon {
    width: 28px;
  }

  .hero-cta-row {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
  }

  .hero-cta-img {
    flex: 1 1 0;
    max-width: 48%;
  }

  .hero-cta-img img {
    height: auto;
    width: 100%;
    max-width: none;
  }

  .hero-nav {
    width: 38px;
    height: 38px;
    top: 42%;
  }

  .hero-nav.prev {
    left: 0.4rem;
  }

  .hero-nav.next {
    right: 0.4rem;
  }

  .hero-dots {
    bottom: 0.65rem;
  }
}

.feature-bar {
  position: relative;
  z-index: 4;
  margin-top: -2.75rem;
  margin-bottom: 0;
  padding-bottom: 0.25rem;
  background: transparent;
  color: var(--dark);
}

.feature-bar-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.25rem;
  align-items: center;
  background: #f7f7f5;
  border: 1px solid #e6e8e5;
  border-radius: 18px;
  padding: 1.35rem 1.75rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: #c62828;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
  color: #2a2a2a;
}

/* ========== HOW ========== */
.how {
  background: #fff;
  padding-top: 3.5rem;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
  padding-top: 0.85rem;
}

.step-card {
  background: #f3f3f1;
  border-radius: 14px;
  box-shadow: none;
  padding: 1.85rem 1.1rem 1.5rem;
  text-align: center;
  width: min(100%, 230px);
  flex: 1 1 0;
  max-width: 240px;
  position: relative;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  cursor: default;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(198, 40, 40, 0.18);
  background: #fff;
}

.step-card:hover .step-icon img {
  transform: scale(1.08);
}

.step-card:hover .step-num {
  transform: scale(1.08);
}

.step-num {
  position: absolute;
  top: -14px;
  left: -14px;
  transform: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(198, 40, 40, 0.35);
  z-index: 2;
  transition: transform 0.35s ease;
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 0.35rem auto 0.85rem;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
}

.step-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.step-card p {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.45;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  align-self: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.15rem;
  flex-shrink: 0;
}

.step-arrow svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 960px) {
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem 0.85rem;
    padding-top: 1rem;
    padding-inline: 0.35rem;
  }

  .step-arrow {
    display: none;
  }

  .step-card {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 1.5rem 0.75rem 1.15rem;
  }

  .step-icon {
    width: 72px;
    height: 72px;
    margin: 0.25rem auto 0.65rem;
  }

  .step-icon img {
    width: 64px;
    height: 64px;
  }

  .step-card h3 {
    font-size: 0.82rem;
  }

  .step-num {
    width: 28px;
    height: 28px;
    top: -10px;
    left: -8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.65rem;
    align-items: stretch;
  }

  .step-card {
    width: 100%;
    max-width: none;
  }
}

/* ========== BRANCHES (Şubelerimiz) ========== */
.branches {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(198, 40, 40, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(198, 40, 40, 0.06), transparent 50%),
    #faf8f6;
  overflow: hidden;
}

.branches-head .branches-lead {
  margin-top: 0.75rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-inline: auto;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.branch-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #ff7043);
}

.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(198, 40, 40, 0.14);
}

.branch-card-accent {
  background: linear-gradient(165deg, #1a1a1a 0%, #2c1818 100%);
  color: var(--white);
  border-color: transparent;
}

.branch-card-accent .branch-phone {
  color: #ff8a80;
}

.branch-card-accent .branch-phone:hover {
  color: #ffcdd2;
}

.branch-index {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(198, 40, 40, 0.12);
  pointer-events: none;
}

.branch-card-accent .branch-index {
  color: rgba(255, 255, 255, 0.1);
}

.branch-pin {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(198, 40, 40, 0.1);
  color: var(--green);
  display: grid;
  place-items: center;
}

.branch-card-accent .branch-pin {
  background: rgba(255, 255, 255, 0.1);
  color: #ff8a80;
}

.branch-pin svg {
  width: 24px;
  height: 24px;
}

.branch-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  max-width: 16ch;
}

.branch-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.branch-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.branch-address span {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

.branch-card-accent h3 {
  color: #ffffff !important;
}

.branch-card-accent .branch-name {
  color: #ffb4a8;
}

.branch-card-accent .branch-address,
.branch-card-accent .branch-address span {
  color: rgba(255, 255, 255, 0.78);
}

.branch-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
  transition: color 0.2s;
}

.branch-phone:hover {
  color: var(--green-bright);
}

.branch-map-btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

@media (max-width: 960px) {
  .branches-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .branch-card h3 {
    max-width: none;
  }
}

/* ========== PACKAGES (legacy unused) ========== */
.packages {
  background: var(--charcoal);
  color: var(--white);
}

.packages-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 2.5rem;
  align-items: center;
}

.packages-intro .eyebrow {
  color: var(--green-bright);
}

.packages-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.packages-intro > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.package-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.package-card-head {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 0.5rem;
  color: var(--white);
}

.head-green {
  background: var(--green);
}

.head-dark {
  background: var(--dark-3);
}

.head-tan {
  background: #a67c52;
}

.package-media {
  aspect-ratio: 4 / 3;
  background-color: #7d917f;
}

.package-list {
  padding: 1rem 1.15rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.package-list li {
  font-size: 0.82rem;
  padding-left: 1.35rem;
  position: relative;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.package-card .btn-beige {
  margin: 0.75rem 1rem 1rem;
  width: calc(100% - 2rem);
}

/* ========== SLIDER (galeri) ========== */
.slider {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 360px;
  background: var(--white);
}

.slide-media {
  min-height: 280px;
  background-color: #6f8572;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 2rem 2.25rem;
}

.slide-eyebrow {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.slide-content h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--dark);
}

.slide-content > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 36ch;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c5cfc7;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}

.gallery-nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-nav:hover {
  background: var(--green-bright);
}

.gallery-nav svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .slide-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .slide-content {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* ========== PARTNERS LOGO SLIDER ========== */
.partners {
  background: #fff;
}

.partners-slider {
  position: relative;
  --partners-visible: 4;
}

.partners-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
}

.partners-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.partner-item {
  flex: 0 0 calc(100% / var(--partners-visible));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  box-sizing: border-box;
  min-height: 160px;
}

.partner-item img {
  max-height: 140px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.1);
  opacity: 0.95;
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}

.partner-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.partners-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.partners-nav:hover {
  background: var(--green-bright);
}

.partners-nav.prev {
  left: -0.35rem;
}

.partners-nav.next {
  right: -0.35rem;
}

.partners-nav svg {
  width: 20px;
  height: 20px;
}

.partners-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.partners-dots .slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cfcfcf;
  cursor: pointer;
}

.partners-dots .slider-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

@media (max-width: 960px) {
  .partners-slider {
    --partners-visible: 2;
  }
}

@media (max-width: 640px) {
  .partners-slider {
    --partners-visible: 1;
  }

  .partner-item {
    padding: 1.25rem 2rem;
    min-height: 180px;
  }

  .partner-item img {
    max-height: 160px;
  }

  .partners-nav.prev {
    left: 0;
  }

  .partners-nav.next {
    right: 0;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #111513;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.footer-badge-img {
  height: 72px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.logo-light .logo-text {
  color: var(--white);
}

.site-footer h3 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-branches-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.footer-branch {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.footer-branch strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-branch p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-branch a {
  color: #ff8a80;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.footer-branch a:hover {
  color: #ffcdd2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .header-phone-text small {
    display: none;
  }

  .packages-inner {
    grid-template-columns: 1fr;
  }

  .packages-intro {
    text-align: center;
  }

  .packages-intro > p {
    max-width: none;
    margin-inline: auto;
  }

  .feature-bar-card {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    padding: 1.25rem 1.35rem;
  }

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

  .footer-branches {
    grid-column: 1 / -1;
  }

  .footer-branches-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .feature-bar {
    margin-top: -1.75rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }
}

@media (max-width: 640px) {
  .feature-bar-card {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .feature-text {
    font-size: 0.82rem;
  }

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

  .footer-branches-list {
    grid-template-columns: 1fr;
  }

  .header-phone-text strong {
    font-size: 0.82rem;
  }
}

/* Mobil sabit WhatsApp butonu */
.whatsapp-float {
  display: none;
}

@media (max-width: 860px) {
  .whatsapp-float {
    display: block;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 200;
    width: 64px;
    height: 64px;
    line-height: 0;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: scale(1.06);
  }

  .whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
}
