/* ============================================
   Digiturk Europe – ASMEE GmbH
   Main stylesheet – light theme
   ============================================ */

:root {
  /* Brand palette (admin-editable via :root override) */
  --c-red: #e51735;
  --c-red-700: #c10f2c;
  --c-red-50: #fdecef;
  --c-purple: #632a96;
  --c-purple-700: #4a1f72;
  --c-purple-50: #f3edf9;
  --c-purple-deep: #290e39;
  --c-purple-deep-90: rgba(41, 14, 57, 0.92);

  /* Neutrals (light, warm) */
  --c-bg: #faf8fb;
  --c-bg-alt: #ffffff;
  --c-bg-soft: #f4f1f6;
  --c-text: #1a1023;
  --c-text-soft: #5a4f66;
  --c-text-muted: #8c8195;
  --c-border: #e8e2ee;
  --c-border-strong: #d4cbdc;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(41, 14, 57, 0.06), 0 1px 3px rgba(41, 14, 57, 0.04);
  --shadow-md: 0 4px 10px rgba(41, 14, 57, 0.06), 0 2px 6px rgba(41, 14, 57, 0.05);
  --shadow-lg: 0 20px 40px -12px rgba(41, 14, 57, 0.18), 0 8px 16px -8px rgba(41, 14, 57, 0.1);
  --shadow-red: 0 8px 24px -8px rgba(229, 23, 53, 0.4);

  /* Type & spacing */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --font-display: "Google Sans Flex", "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Google Sans Flex", "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-variation-settings: "wdth" 100, "GRAD" 0, "opsz" 16;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR (Bireysel / Kurumsal + Language)
   ============================================ */
.topbar {
  background: var(--c-purple-deep);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.audience-toggle {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100%;
}
.audience-toggle button {
  padding: 0 18px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  font-size: 13px;
  transition: color 0.18s;
}
.audience-toggle button.active {
  color: #fff;
}
.audience-toggle button.active::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 2px;
  background: var(--c-red);
}
.audience-toggle .sep {
  width: 1px;
  background: rgba(255,255,255,0.18);
  margin: 8px 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
}
.lang-switch button {
  padding: 4px 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: lowercase;
}
.lang-switch button.active {
  color: #fff;
  font-weight: 600;
}
.lang-switch .sep {
  color: rgba(255,255,255,0.3);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--c-purple);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(41, 14, 57, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-logo {
  height: 38px;
  display: flex;
  align-items: center;
}
.brand-logo svg { height: 100%; width: auto; }

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 2px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  align-items: center;
}
.main-nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  position: relative;
  transition: background 0.18s;
  white-space: nowrap;
}
.main-nav a:hover {
  background: rgba(255,255,255,0.08);
}
.main-nav a.active {
  background: rgba(255,255,255,0.12);
}
.main-nav a.has-badge::after {
  content: attr(data-badge);
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--c-red);
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-actions .contact-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.18s;
}
.icon-btn:hover { background: rgba(255,255,255,0.18); }
.icon-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--c-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.18s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--c-red-700); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-dark {
  background: var(--c-purple-deep);
  color: #fff;
}
.btn-dark:hover { background: #1c0827; }

.btn-outline {
  background: transparent;
  color: var(--c-purple-deep);
  border-color: var(--c-border-strong);
}
.btn-outline:hover { border-color: var(--c-purple); color: var(--c-purple); }

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  padding: 24px 0 0;
  background: var(--c-bg);
}
.slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  background: linear-gradient(135deg, #1a0826 0%, #4a1f72 50%, #290e39 100%);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 64px;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.slide-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(41,14,57,0.85) 0%, rgba(41,14,57,0.6) 40%, rgba(41,14,57,0.2) 100%);
}
.slide-bg.placeholder-sport {
  background: 
    radial-gradient(circle at 20% 30%, rgba(229,23,53,0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(99,42,150,0.5) 0%, transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1a0826, #4a1f72);
}
.slide-bg.placeholder-film {
  background: 
    radial-gradient(circle at 70% 30%, rgba(229,23,53,0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(99,42,150,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #290e39, #1a0826);
}
.slide-bg.placeholder-corp {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #4a1f72, #290e39);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}
.slide-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-red);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.slide-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 100, "GRAD" 100, "opsz" 48;
}
.slide-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff4264, var(--c-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slide-desc {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.88);
  max-width: 460px;
}
.slide-actions {
  display: flex;
  gap: 12px;
}

.slide-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.placeholder-card {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: rgba(255,255,255,0.7);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.placeholder-card .ph-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.slider-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.slider-arrows button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.slider-arrows button:hover { background: rgba(255,255,255,0.3); }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dots button {
  width: 32px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: all 0.18s;
}
.slider-dots button.active {
  background: #fff;
  width: 48px;
}

/* ============================================
   PROMO CARDS (3-up)
   ============================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.promo-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.promo-card.purple { background: linear-gradient(135deg, var(--c-purple), var(--c-purple-deep)); }
.promo-card.red { background: linear-gradient(135deg, #ff3859, var(--c-red-700)); }
.promo-card.dark { background: linear-gradient(135deg, #3a1454, var(--c-purple-deep)); }

.promo-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
.promo-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.25;
  max-width: 80%;
  position: relative;
  z-index: 1;
}
.promo-card .promo-btn {
  align-self: flex-start;
  background: #fff;
  color: var(--c-purple-deep);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 72px 0;
}
.section-tight { padding: 48px 0; }
.section-soft { background: var(--c-bg-soft); }
.section-dark { background: var(--c-purple-deep); color: #fff; }

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-variation-settings: "wdth" 100, "GRAD" 100, "opsz" 36;
}
.section-head p {
  font-size: 17px;
  color: var(--c-text-soft);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}

/* Category icons row */
.cat-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s;
  position: relative;
}
.cat-item:hover { background: var(--c-bg-soft); }
.cat-item.active { background: var(--c-purple-50); }
.cat-item.active::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--c-red);
  border-radius: 2px;
}
.cat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-purple);
  margin-bottom: 10px;
}
.cat-item.active .cat-icon { color: var(--c-red); }
.cat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  text-align: center;
  line-height: 1.25;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
  border-color: var(--c-red);
  box-shadow: 0 0 0 1px var(--c-red), var(--shadow-lg);
}
.pkg-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--c-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pkg-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pkg-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.pkg-sub {
  font-size: 14px;
  color: var(--c-text-soft);
  margin: 0 0 24px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.pkg-price .currency { font-size: 24px; font-weight: 600; color: var(--c-text-soft); }
.pkg-price .amount { font-size: 48px; font-weight: 700; letter-spacing: -0.03em; color: var(--c-text); line-height: 1; }
.pkg-price .period { font-size: 14px; color: var(--c-text-soft); margin-left: 4px; }
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--c-text);
}
.pkg-features li svg {
  flex-shrink: 0;
  color: var(--c-red);
  margin-top: 2px;
}

/* ============================================
   STATS / FEATURES STRIP
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--c-border);
}
.stat:last-child { border-right: none; }
.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--c-text-soft);
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-purple-deep);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.18s;
}
.footer-links a:hover { color: #fff; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 16px 0;
  max-width: 280px;
  line-height: 1.6;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 8px 0;
}
.contact-line svg { color: var(--c-red); flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal a { margin-left: 18px; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.18s;
}
.socials a:hover { background: var(--c-red); }

/* ============================================
   FORMS
   ============================================ */
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-text);
}
.field .hint {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 4px;
}
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--c-text);
  transition: all 0.15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px var(--c-purple-50);
}
.textarea { resize: vertical; min-height: 96px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a4f66' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.row { display: grid; gap: 14px; }
.row.cols-2 { grid-template-columns: 1fr 1fr; }
.row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

/* i18n field pair */
.bilingual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bilingual .lang-flag {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--c-bg-soft);
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
}
.bilingual .input-wrap, .bilingual .textarea-wrap {
  position: relative;
}

/* ============================================
   CARD
   ============================================ */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}
.card-sub {
  font-size: 14px;
  color: var(--c-text-soft);
  margin: 0 0 20px;
}

/* ============================================
   Misc
   ============================================ */
.divider {
  height: 1px;
  background: var(--c-border);
  margin: 24px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--c-bg-soft);
  color: var(--c-text);
}
.chip.red { background: var(--c-red-50); color: var(--c-red-700); }
.chip.purple { background: var(--c-purple-50); color: var(--c-purple); }
.chip.green { background: #e8f7ee; color: #1f7a3d; }
.chip.yellow { background: #fff4d6; color: #8a5b00; }

/* Edit-mode hint */
.editable-hint {
  outline: 1px dashed rgba(99, 42, 150, 0.25);
  outline-offset: 4px;
  position: relative;
}
.editable-hint::before {
  content: "✎ admin'den düzenlenebilir";
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 10px;
  background: var(--c-purple);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
body.show-cms-hints .editable-hint::before { opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .header-inner { gap: 20px; }
  .main-nav a { padding: 10px 10px; font-size: 13px; }
  .header-actions .contact-link { display: none; }
}
@media (max-width: 1100px) {
  .header-inner { gap: 12px; }
  .main-nav a { padding: 8px 8px; font-size: 12.5px; }
  .slide-title { font-size: 40px; }
  .promo-grid, .packages-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-row { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; padding: 16px; }
}
@media (max-width: 720px) {
  .slide { padding: 32px 24px; }
  .slide-title { font-size: 32px; }
  .slide-visual { display: none; }
  .promo-grid, .packages-grid, .footer-grid { grid-template-columns: 1fr; }
  .header-inner { height: 64px; }
  .main-nav { display: none; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 28px; }
}
