:root {
  /* Digitürk Partner — mor & altın vurgu */
  --primary: #5b1a7a;
  --primary-dark: #3d114f;
  --secondary: #e8c547;
  --accent-red: #c8102e;
  --dark: #1a0f24;
  --light: #f6f2f9;
  --white: #ffffff;
  --success: #1e8f4a;
  --error: #dc3545;
  --text: #1a1a1a;
  --text-muted: #5c5563;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 15px 35px rgba(45, 20, 70, 0.08);
  --shadow-hover: 0 22px 50px rgba(45, 20, 70, 0.12);
  --font-main: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

.section-padding {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

/* ── HEADER ──────────────────────────────────────────── */
.topbar {
  background: linear-gradient(105deg, #150822 0%, #2d0b40 35%, #5b1a7a 80%, #3d114f 100%);
  border-bottom: none;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Gold top accent line */
.topbar::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #e8c547 30%, #f0d060 50%, #e8c547 70%, transparent 100%);
}

/* Subtle grid overlay */
.topbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h1v40H0zm39 0h1v40h-1zM0 0v1h40V0zm0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.topbar__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 0.7rem 28px;
}

@media (min-width: 981px) {
  .topbar__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 24px;
    padding: 0.85rem 36px;
  }

  .topbar .brand {
    justify-self: start;
  }

  .topbar .nav {
    justify-self: center;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
  }

  .topbar-phone {
    justify-self: end;
  }
}

@media (min-width: 1280px) {
  .topbar__inner {
    max-width: 1560px;
    column-gap: 28px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.topbar .brand {
  flex-shrink: 0;
}

/* Desktop phone link in header */
.topbar-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: #e8c547;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.38rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(232,197,71,0.3);
  background: rgba(232,197,71,0.08);
  transition: background 0.2s, border-color 0.2s;
}
.topbar-phone:hover {
  background: rgba(232,197,71,0.18);
  border-color: rgba(232,197,71,0.6);
}
.topbar-phone svg { flex-shrink: 0; }

@media (min-width: 1024px) {
  .topbar-phone { display: flex; }
}

/* Nav */
.topbar .nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  order: 2;
}

.topbar .brand {
  order: 1;
}

.topbar-phone {
  order: 3;
}

.navToggle {
  order: 4;
}

.topbar .nav::-webkit-scrollbar { display: none; }
.topbar .nav .nav-cta { flex-shrink: 0; white-space: nowrap; }

.brand {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white) !important;
  text-decoration: none;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

.brand-logo {
  display: block;
  width: 150px;
  max-width: 38vw;
  height: auto;
}

@media (min-width: 981px) and (max-width: 1279px) {
  .brand-logo {
    width: 138px;
  }

  .topbar .nav a:not(.nav-cta) {
    font-size: 0.72rem;
    padding: 0.38rem 0.32rem;
  }

  .nav-cta {
    padding: 0.48rem 0.85rem !important;
    font-size: 0.74rem !important;
    margin-left: 4px;
  }
}

@media (min-width: 1280px) {
  .brand-logo {
    width: 152px;
  }

  .nav a:not(.nav-cta) {
    font-size: 0.84rem;
    padding: 0.48rem 0.5rem;
  }

  .nav-cta {
    padding: 0.55rem 1.1rem !important;
    font-size: 0.84rem !important;
    margin-left: 6px;
  }
}

@media (max-width: 480px) {
  .brand { font-size: 1.32rem; }
  .brand-logo { width: 140px; max-width: 52vw; }
}

.brand span { color: var(--secondary); }

.nav a {
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0.48rem;
  font-weight: 500;
  transition: all 0.22s;
  text-decoration: none;
  font-size: 0.82rem;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}

.nav a:not(.nav-cta):hover {
  color: var(--secondary);
  background: rgba(255,255,255,0.07);
}

/* Gold underline on current page — add class="active" to the <a> */
.nav a.active:not(.nav-cta) {
  color: var(--secondary);
}
.nav a.active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.48rem;
  right: 0.48rem;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, #e8c547 0%, #d4a832 100%);
  color: #1a0f24 !important;
  border-radius: 50px;
  padding: 0.55rem 1.5rem !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  box-shadow: 0 4px 16px rgba(232, 197, 71, 0.4);
  letter-spacing: 0.02em;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.5) !important;
  filter: brightness(1.05);
  background: linear-gradient(135deg, #f0d060 0%, #e8c547 100%) !important;
}


.hero-premium {
  background: linear-gradient(135deg, #3d114f 0%, #5b1a7a 42%, #4a1565 70%, #2a0b3a 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Card & Form Premium Look */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  display: block;
  text-align: left;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #edf2f7;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #fdfdfd;
  color: var(--text);
  line-height: normal;
  /* Fix vertical alignment in some browsers */
}

.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 79, 177, 0.08);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-family: var(--font-main);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0, 79, 177, 0.15);
}

.btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: var(--light);
  color: var(--primary);
}

/* Campaign Cards Ultra-Premium */
.campaign {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.campaign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 79, 177, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.campaign:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 79, 177, 0.12);
  border-color: rgba(0, 79, 177, 0.1);
}

.campaign:hover::before {
  opacity: 1;
}

.campaign__icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.campaign:hover .campaign__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}

.campaign__body {
  padding: 30px 17px !important;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pill {
  display: inline-block;
  background: rgba(0, 79, 177, 0.06);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  width: fit-content;
}

.campaign h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.price {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
}

.price small {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 2px;
}

.price span {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}

.btn-premium {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 0.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 79, 177, 0.15);
  font-size: 0.85rem;
}

.btn-premium:hover {
  background: var(--dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}


.btn-detail {
  background: #f0f4f8;
  color: var(--primary);
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 79, 177, 0.1);
  font-size: 0.85rem;
}


.btn-detail:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-call {
  background: #f6c200;
  /* Brand Yellow */
  color: #0b2d57;
  /* Dark text for contrast */
  padding: 0.8rem 0.5rem;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 0.82rem;
  transition: all 0.3s;
  border: none;
}

.btn-call:hover {
  background: #e5b300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 194, 0, 0.3);
}


.actions-row-stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 1.2rem;
}

.btn-group-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.campaign-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campaign-sidebar .card {
  position: relative !important;
  top: 0 !important;
  margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.breadcrumbs li {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li::after {
  content: "/";
  color: #ccc;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .breadcrumbs {
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
  }

  .breadcrumbs ul {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .breadcrumbs li {
    font-size: 0.8rem;
  }
}

/* Page Header */
.page-header {
  padding: 3rem 0;
  background: linear-gradient(to right, #f8faff, var(--white));
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

/* Mobile sticky footer bar — mor & altın tema */
.footer-mobile-sticky {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .footer-mobile-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #2d0b40 0%, #150822 100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .footer-mobile-sticky::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary) 30%, #f0d060 50%, var(--secondary) 70%, transparent 100%);
  }

  .footer-mobile-sticky-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    min-height: 68px;
  }

  .footer-mobile-sticky-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 4px 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: none;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .footer-mobile-sticky-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }

  .footer-mobile-sticky-item:active {
    background: rgba(255, 255, 255, 0.06);
  }

  .footer-mobile-sticky-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(232, 197, 71, 0.22);
    color: var(--secondary);
    transition: transform 0.15s, box-shadow 0.15s;
  }

  .footer-mobile-sticky-item:active .footer-mobile-sticky-icon {
    transform: scale(0.94);
  }

  .footer-mobile-sticky-icon svg {
    display: block;
  }

  .footer-mobile-sticky-label {
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
  }

  /* Satın Al — altın CTA vurgusu */
  .footer-mobile-sticky-item--cta .footer-mobile-sticky-icon {
    background: linear-gradient(135deg, #e8c547 0%, #d4a832 100%);
    border: none;
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(232, 197, 71, 0.35);
  }

  .footer-mobile-sticky-item--cta .footer-mobile-sticky-label {
    color: var(--secondary);
    font-weight: 800;
  }

  /* WhatsApp */
  .footer-mobile-sticky-item--whatsapp .footer-mobile-sticky-icon {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #25d366;
  }

  .footer-mobile-sticky-item--whatsapp .footer-mobile-sticky-label {
    color: #6ee7a0;
  }

  .footer-mobile-sticky-item--narrow .footer-mobile-sticky-label {
    font-size: 0.58rem;
  }

  .call-btn {
    display: none !important;
  }
}

/* Legacy call button (hidden when sticky bar active) */
.call-btn {
  display: none;
}

@media (min-width: 769px) {
  .footer-mobile-sticky {
    display: none !important;
  }
}

/* Mobile Menu */
.navToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px 11px;
  z-index: 1001;
  transition: background 0.2s;
}
.navToggle:hover {
  background: rgba(255,255,255,0.18);
}

.navToggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.navToggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navToggle.active span:nth-child(2) {
  opacity: 0;
}

.navToggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navPanel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: linear-gradient(160deg, #2d0b40 0%, #150822 100%);
  border-left: 1px solid rgba(232,197,71,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  transition: 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1000;
  padding: 80px 28px 32px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}

.navPanel[data-open="1"] {
  right: 0;
}

.navPanel a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  width: 100%;
  text-align: left;
}

.navPanel a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

/* Menü içi kapatma butonu */
.navPanel__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.navPanel__close:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 980px) {
  .nav {
    display: none !important;
  }

  .navToggle {
    display: flex !important;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Refined Footer Styles */
footer {
  background: #f8fafc;
  padding: 5rem 0 0;
  border-top: 1px solid #eef2f6;
  margin-top: 50px;
}

.footer__brand-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__brand {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1.5px;
}

.footer__info {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer__section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.footer__section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer__links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.95rem;
  color: #475569;
}

.footer__contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer__contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-info label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.footer__contact-info a,
.footer__contact-info span {
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
}

.footer__copyright {
  background: #f1f5f9;
  padding: 2rem 0;
  text-align: center;
  margin-top: 5rem;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid #eef2f6;
}

@media (max-width: 991px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 50px;
  }

  .footer__section-title::after {
    left: 0;
  }

  .footer__contact-item {
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
    margin: 0;
  }

  .footer__links a:hover {
    transform: none;
  }

  footer {
    padding-top: 3.5rem;
  }

  .footer__info,
  .footer__contact {
    font-size: 0.9rem;
  }
}

/* Online application form responsiveness */
@media (max-width: 640px) {
  .section-padding .card {
    padding: 2rem 1.5rem;
  }

  /* Left-align the online application container on mobile */
  .section-padding .wrap>div {
    margin: 0 !important;
  }
}

/* Campaign detail pages mobile layout */
@media (max-width: 768px) {

  /* Ana layout grid'ini tek kolona dÃ¼ÅŸÃ¼r */
  .section-padding .wrap>div[style*="grid-template-columns: 400px 1fr"] {
    display: block !important;
  }

  .campaign {
    margin-top: 30px;
  }

  .campaign-sidebar {
    margin-bottom: 2rem;
  }

  .campaign-sidebar .card {
    padding: 1.75rem 1.5rem !important;
  }

  .campaign-detail h1 {
    font-size: 2rem !important;
  }

  .campaign-detail>div[style*="display: grid;"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .campaign-detail>div[style*="display: grid;"][style*="grid-template-columns: 1fr 1fr"]>div:last-child {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* Homepage "Neden Fiber Internet" section responsiveness */
@media (max-width: 900px) {

  /* 1fr 1fr grid kullanan ana blok (homepage about section) */
  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"]>div:first-child {
    margin-bottom: 2.5rem;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] h2 {
    font-size: 2rem !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] p {
    font-size: 1rem !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] ul {
    gap: 12px !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] li {
    align-items: flex-start !important;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"] svg {
    flex-shrink: 0;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"]>div:last-child {
    max-width: 480px;
    margin: 0 auto;
  }

  .section-padding .wrap>div[style*="grid-template-columns: 1fr 1fr"]>div:last-child>div[style*="position: absolute"] {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Digitürk Partner — ana sayfa grid */
.hero-digiturk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-form-card {
  position: relative;
  z-index: 2;
}

.hero-digiturk-visual {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: #ffffff;
  border: 1px solid rgba(91, 26, 122, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(91, 26, 122, 0.06);
}

.hero-digiturk-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 55%, #c8102e 100%);
  border-radius: 23px 23px 0 0;
  z-index: 1;
}

.hero-digiturk-visual__inner {
  padding: 2.5rem 2rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Hero — beyaz değer kartı (formun yanı) */
.hero-value-card {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 1.6rem;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.hero-value-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.hero-value-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.hero-value-card__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-value-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-value-list__mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(91, 26, 122, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-value-list__head {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}

.hero-value-list__text {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Ana sayfa — alt CTA + süreç özeti */
.home-final-cta {
  background: linear-gradient(180deg, #f4eef9 0%, #ffffff 42%, #ffffff 100%);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-how,
.home-topics,
.home-faq {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.home-final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 1rem;
}

.home-final-cta__panel {
  background: linear-gradient(155deg, #4a1565 0%, #5b1a7a 48%, #3d114f 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 48px rgba(61, 17, 79, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-final-cta__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.home-final-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.4vw, 1.85rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-final-cta__intro {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.62;
  opacity: 0.94;
}

.home-final-cta__tel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.95rem 1.2rem;
  background: #fff;
  color: var(--primary-dark) !important;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
  max-width: 100%;
}

.home-final-cta__tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.home-final-cta__tel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(91, 26, 122, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-final-cta__tel-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.home-final-cta__tel-lines small {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  color: inherit;
}

.home-final-cta__tel-lines strong {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: inherit;
}

.home-final-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 26, 122, 0.1);
  box-shadow: 0 8px 28px rgba(91, 26, 122, 0.06);
  overflow: hidden;
}

.home-final-cta__list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.1rem;
  padding: 1.15rem 1.35rem;
  align-items: start;
  border-bottom: 1px solid rgba(91, 26, 122, 0.07);
}

.home-final-cta__list > li:last-child {
  border-bottom: none;
}

.home-final-cta__step {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--secondary);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  padding-top: 2px;
  min-width: 2ch;
}

.home-final-cta__list strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.home-final-cta__list p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-final-cta__legal {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  background: rgba(91, 26, 122, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(91, 26, 122, 0.08);
}

@media (max-width: 900px) {
  .hero-digiturk-grid {
    grid-template-columns: 1fr;
  }

  .home-final-cta__layout {
    grid-template-columns: 1fr;
  }

  .home-final-cta__tel {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .iletisim-page-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Ana sayfa — ek içerik blokları */
.home-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.home-section-head__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-section-head__lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.home-section-head__lead a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-section-head__lead a:hover {
  text-decoration: none;
}

.home-how {
  background: #fff;
}

.home-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.home-how-step {
  position: relative;
  padding: 1.1rem 1rem;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 26, 122, 0.08);
}

.home-how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.home-how-step__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.home-how-step__text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-how-step__text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-topics {
  background: linear-gradient(180deg, #f4eef9 0%, #fdfcfe 100%);
}

.home-topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-topic {
  padding: 1.25rem 1.35rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 26, 122, 0.1);
  box-shadow: 0 4px 18px rgba(91, 26, 122, 0.05);
}

.home-topic__h {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.home-topic__p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-topics__note {
  max-width: 820px;
  margin: 1.15rem auto 0;
  padding: 0 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.home-faq {
  background: #fff;
  border-top: 1px solid rgba(91, 26, 122, 0.07);
}

.home-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.home-faq__item {
  border-bottom: 1px solid rgba(91, 26, 122, 0.1);
}

.home-faq__item:first-of-type {
  border-top: 1px solid rgba(91, 26, 122, 0.1);
}

.home-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0.25rem 0.85rem 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: '+';
  float: right;
  font-weight: 900;
  color: var(--secondary);
  font-size: 1.15rem;
  line-height: 1;
}

.home-faq__item[open] summary::after {
  content: '–';
}

.home-faq__body {
  padding: 0 0 0.85rem;
}

.home-faq__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .home-how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-how__steps {
    grid-template-columns: 1fr;
  }
}

/* Utilities */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── HEMEN BAŞVUR SAYFASI ───────────────────────────── */
.basvuru-page {
  padding: 48px 0 72px;
}

.basvuru-page__grid {
  max-width: 980px;
  margin: 0 auto;
}

.basvuru-page__form {
  padding: 32px !important;
  border-top: 5px solid var(--secondary) !important;
}

.basvuru-form-head {
  margin-bottom: 24px;
}

.basvuru-form-head__title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--primary);
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1.2;
}

.basvuru-form-head__lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.basvuru-form-head__campaign {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid var(--secondary);
}

.basvuru-form-head__campaign strong {
  color: var(--primary);
}

.basvuru-page__eyebrow {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.basvuru-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 14px;
}

.basvuru-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.basvuru-steps li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232,197,71,0.15);
  color: #e8c547;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basvuru-steps li strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.basvuru-steps li p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.basvuru-consent {
  display: flex;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.basvuru-form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}

.basvuru-submit-btn {
  width: 100%;
  border-radius: 12px !important;
  font-weight: 800 !important;
  padding: 1.05rem !important;
  box-shadow: none !important;
}

.basvuru-call-box {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eef2f6;
  text-align: center;
}

.basvuru-call-box p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.basvuru-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}

.basvuru-page__visual {
  min-height: 100%;
}

/* ── KATEGORİ PAKET LİSTESİ (anasayfa uyumlu) ───────── */
.breadcrumbs--dark {
  background: #2a0d3a;
  border-bottom: 1px solid rgba(232,197,71,0.1);
}

.breadcrumbs--dark a,
.breadcrumbs--dark li {
  color: rgba(255,255,255,0.55);
}

.breadcrumbs--dark a {
  color: #e8c547;
}

.category-packages {
  background: linear-gradient(180deg, #1a0f24 0%, #2d0b40 60%, #1a0f24 100%);
  padding: 36px 0 64px;
}

.category-packages__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.category-packages__head h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 900;
  margin: 0 0 10px;
}

.category-packages__head p {
  color: rgba(255,255,255,0.62);
  margin: 0;
  font-size: 1rem;
}

.category-packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.category-packages__grid--portrait {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* beIN CONNECT — masaüstünde yan yana, mobilde alt alta */
.category-packages__grid--beinconnect {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .category-packages__grid--beinconnect {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
  }

  .category-pkg-card--beinconnect {
    flex-direction: column;
  }

  .category-pkg-card--beinconnect .category-pkg-card__media {
    flex: none;
    max-width: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 360 / 300;
  }

  .category-pkg-card--beinconnect .category-pkg-card__media::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(to bottom, transparent, #2a0d3a);
  }

  .category-pkg-card--beinconnect .category-pkg-card__media img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .category-pkg-card--beinconnect .category-pkg-card__body {
    padding: 18px 18px 20px;
  }

  .category-pkg-card--beinconnect .category-pkg-card__actions {
    flex-direction: column;
  }
}

.category-pkg-card--beinconnect {
  flex-direction: row;
  align-items: stretch;
  min-height: 0;
}

@media (max-width: 899px) {
  .category-pkg-card--beinconnect {
    flex-direction: row;
  }
}

.category-pkg-card--beinconnect .category-pkg-card__media {
  flex: 0 0 42%;
  max-width: 320px;
  aspect-ratio: auto;
  min-height: 260px;
  position: relative;
}

.category-pkg-card--beinconnect .category-pkg-card__media::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, transparent, #2a0d3a);
  pointer-events: none;
}

.category-pkg-card--beinconnect .category-pkg-card__media img {
  object-fit: cover;
  object-position: center top;
  min-height: 260px;
}

.category-pkg-card--beinconnect .category-pkg-card__body {
  padding: 22px 22px 20px;
  justify-content: center;
}

.category-pkg-card--beinconnect .category-pkg-card__body h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.category-pkg-card--beinconnect .category-pkg-card__sub {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.category-pkg-card--beinconnect .category-pkg-card__price strong {
  font-size: 1.65rem;
}

.category-pkg-card--beinconnect .category-pkg-card__features li {
  font-size: 0.78rem;
}

.category-pkg-card--beinconnect .category-pkg-card__actions {
  flex-direction: row;
  gap: 10px;
  margin-top: 4px;
}

.category-pkg-card--beinconnect .category-pkg-card__btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .category-pkg-card--beinconnect {
    flex-direction: column;
  }

  .category-pkg-card--beinconnect .category-pkg-card__media {
    flex: none;
    max-width: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 360 / 280;
  }

  .category-pkg-card--beinconnect .category-pkg-card__media::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 56px;
    background: linear-gradient(to bottom, transparent, #2a0d3a);
  }

  .category-pkg-card--beinconnect .category-pkg-card__media img {
    min-height: 0;
    aspect-ratio: 360 / 280;
  }

  .category-pkg-card--beinconnect .category-pkg-card__actions {
    flex-direction: column;
  }
}

.category-pkg-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #2a0d3a 0%, #1f0930 100%);
  border: 1px solid rgba(232,197,71,0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: border-color .25s, transform .25s;
}

.category-pkg-card:hover {
  border-color: rgba(232,197,71,0.45);
  transform: translateY(-3px);
}

.category-pkg-card--portrait {
  flex-direction: row;
  min-height: 220px;
}

.category-pkg-card--portrait .category-pkg-card__media {
  flex: 0 0 42%;
  max-width: 180px;
  aspect-ratio: auto;
  min-height: 100%;
}

.category-pkg-card__media {
  aspect-ratio: 520 / 300;
  overflow: hidden;
  background: #000;
}

.category-pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-pkg-card--portrait .category-pkg-card__media img {
  object-fit: cover;
  min-height: 100%;
}

.category-pkg-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.category-pkg-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.category-pkg-card__tags span {
  background: rgba(232,197,71,0.1);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(232,197,71,0.2);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
}

.category-pkg-card__body h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.3;
}

.category-pkg-card__sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin: 0 0 8px;
  line-height: 1.4;
}

.category-pkg-card__period {
  color: #e8c547;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.category-pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.category-pkg-card__old {
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-size: 0.8rem;
}

.category-pkg-card__price strong {
  color: #e8c547;
  font-size: 1.45rem;
  font-weight: 900;
}

.category-pkg-card__price small {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.category-pkg-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex: 1;
}

.category-pkg-card__features li {
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
  margin-bottom: 4px;
}

.category-pkg-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e8c547;
  font-size: 0.68rem;
}

.category-pkg-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-pkg-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: filter .2s;
}

.category-pkg-card__btn--primary {
  background: linear-gradient(135deg, #e8c547 0%, #d4a832 100%);
  color: #1a0f24;
}

.category-pkg-card__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.22);
}

.category-pkg-card__btn:hover {
  filter: brightness(1.06);
}

.category-packages__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  max-width: 900px;
  margin: 32px auto 0;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .category-pkg-card--portrait {
    flex-direction: column;
  }
  .category-pkg-card--portrait .category-pkg-card__media {
    flex: none;
    max-width: none;
    width: 100%;
    aspect-ratio: 360 / 240;
  }
}

/* Taraftar paketleri — kompakt logo şeridi */
.category-packages__grid--taraftar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
  gap: 20px;
}

.category-pkg-card--taraftar {
  text-align: center;
}

.category-pkg-card--taraftar .category-pkg-card__media,
.category-pkg-card__media--taraftar-logo {
  aspect-ratio: auto;
  min-height: 0;
  height: 88px;
  padding: 0 16px;
  background: radial-gradient(circle at 50% 55%, rgba(232,197,71,0.1) 0%, transparent 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-pkg-card--taraftar .category-pkg-card__media img,
.category-pkg-card__media--taraftar-logo img {
  width: auto;
  height: auto;
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

.category-pkg-card--taraftar .category-pkg-card__body {
  padding: 12px 18px 20px;
  align-items: center;
}

.category-pkg-card--taraftar .category-pkg-card__tags {
  justify-content: center;
  margin-bottom: 6px;
}

.category-pkg-card--taraftar .category-pkg-card__body h2 {
  font-size: 0.98rem;
  line-height: 1.25;
  margin-bottom: 4px;
}

.category-pkg-card--taraftar .category-pkg-card__sub {
  text-align: center;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.category-pkg-card--taraftar .category-pkg-card__period {
  font-size: 0.72rem;
}

.category-pkg-card--taraftar .category-pkg-card__price {
  margin: 6px 0 10px;
}

.category-pkg-card--taraftar .category-pkg-card__price strong {
  font-size: 1.35rem;
}

.category-pkg-card--taraftar .category-pkg-card__features {
  text-align: left;
  width: 100%;
  margin-bottom: 4px;
}

.category-pkg-card--taraftar .category-pkg-card__features li {
  font-size: 0.72rem;
  padding-left: 14px;
}

.category-pkg-card--taraftar .category-pkg-card__actions {
  width: 100%;
  margin-top: auto;
}

.category-pkg-card--taraftar .category-pkg-card__btn--primary {
  width: 100%;
  padding: 11px 14px;
}

@media (max-width: 640px) {
  .category-packages__grid--taraftar {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .category-pkg-card--taraftar .category-pkg-card__media,
  .category-pkg-card__media--taraftar-logo {
    height: 80px;
  }

  .category-pkg-card--taraftar .category-pkg-card__media img,
  .category-pkg-card__media--taraftar-logo img {
    max-width: 56px;
    max-height: 56px;
  }
}

/* ── PAKET DETAY SAYFASI ─────────────────────────────── */
.pkg-detail {
  background: linear-gradient(180deg, #1a0f24 0%, #2d0b40 55%, #1a0f24 100%);
  padding: 40px 0 72px;
}

.pkg-detail__hero {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.pkg-detail__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232,197,71,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  background: #0d0612;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pkg-detail__media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.pkg-detail__media--landscape img {
  max-height: 420px;
}

.pkg-detail__media--portrait {
  max-width: 360px;
}

.pkg-detail__media--portrait img {
  max-height: 540px;
}

.pkg-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pkg-detail__tags span {
  background: rgba(232,197,71,0.1);
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(232,197,71,0.22);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

.pkg-detail__tag {
  display: inline-block;
  background: rgba(232,197,71,0.12);
  color: #e8c547;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pkg-detail__intro h1 {
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 12px;
}

.pkg-detail__subtitle {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 24px;
}

.pkg-detail__price-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,197,71,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.pkg-detail__period {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pkg-detail__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pkg-detail__old {
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-size: 1rem;
}

.pkg-detail__price strong {
  color: #e8c547;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.pkg-detail__price small {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
}

.pkg-detail__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pkg-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: filter .2s, transform .2s;
}

.pkg-detail__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.pkg-detail__btn--primary {
  background: linear-gradient(135deg, #e8c547 0%, #d4a832 100%);
  color: #1a0f24;
}

.pkg-detail__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}

.pkg-detail__features h2 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0 0 20px;
}

.pkg-detail__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pkg-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pkg-detail__features li::before {
  content: '✓';
  flex-shrink: 0;
  color: #e8c547;
  font-weight: 900;
}

.pkg-detail__bottom-cta {
  margin-top: 48px;
  padding: 28px 32px;
  text-align: center;
  background: rgba(232,197,71,0.08);
  border: 1px solid rgba(232,197,71,0.22);
  border-radius: 20px;
}

.pkg-detail__bottom-cta p {
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .pkg-detail__hero {
    grid-template-columns: 1fr;
  }

  .pkg-detail__media {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}
