:root {
  --bg: #FFFFFF;
  --surface: #F0F7EE;
  --ink: #1B2A1B;
  --accent: #E8572A;
  --accent-2: #2EC4B6;
  --line: rgba(27, 42, 27, 0.12);
  --header-h: 72px;
  --radius: 14px;
  --radius-sm: 8px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--bg); }

h1, h2, h3, h4, h5, h6 { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif; font-weight: 800; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 8px; }

.container {
  max-width: 1320px; margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  padding: 10px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 900; font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--ink); display: flex; align-items: center; gap: 8px;
}
.logo svg { width: 32px; height: 32px; }
.logo-accent { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px);
  }
  .nav-desktop a {
    font-size: 0.92rem; font-weight: 500; color: var(--ink);
    position: relative; transition: color 220ms;
  }
  .nav-desktop a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--accent); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 260ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--accent); }
  .nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta {
    background: var(--ink); color: var(--surface); padding: 10px 22px;
    border-radius: 40px; font-weight: 600; transition: background 220ms, color 220ms, transform 220ms;
  }
  .nav-desktop .nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
}

.nav-toggle {
  display: flex; flex-direction: column; gap: 6px; width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: none; padding: 4px; z-index: 1100;
  position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 3px; background: var(--ink);
  border-radius: 2px; transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }
@media (max-width: 1023px) {
  .site-header { background: rgba(255, 255, 255, 0.95); }
  .site-header.scrolled { background: rgba(255, 255, 255, 1); }
}

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%; z-index: 1; pointer-events: none;
}

/* ==================== DRAWER CLOSE ==================== */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 1.3rem; color: var(--ink);
  cursor: pointer; z-index: 10;
  transition: background 220ms cubic-bezier(.2,.7,.2,1), border-color 220ms, color 220ms;
}
.drawer-close:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* ==================== MOBILE DRAWER ==================== */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); background: var(--bg);
  z-index: 1050; transform: translateX(100%);
  visibility: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 320ms;
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), visibility 0ms 0ms;
}
.mobile-drawer a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid var(--line); transition: color 220ms, padding-left 220ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 16px; display: inline-block; background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 40px; font-weight: 600; text-align: center;
  border: none; transition: background 220ms, transform 220ms;
}
.mobile-drawer .drawer-cta:hover { background: var(--ink); color: var(--surface); transform: translateY(-2px); }

/* ==================== MAIN ==================== */
main { padding-top: var(--header-h); }

/* ==================== HERO ==================== */
.hero {
  padding: clamp(60px, 10vh, 100px) 0 clamp(40px, 6vh, 60px);
  position: relative; overflow: hidden; background: var(--surface);
}
.hero-content { text-align: center; position: relative; z-index: 2; }
.hero .eyebrow {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 20px;
  color: var(--ink);
  max-width: min(20ch, 90%); margin-left: auto; margin-right: auto;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); max-width: 600px; margin: 0 auto 32px;
  color: rgba(27, 42, 27, 0.75);
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 36px;
}
.hero-badges span {
  background: var(--bg); border: 1px solid var(--line); padding: 8px 18px;
  border-radius: 40px; font-size: 0.85rem; font-weight: 500;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; padding: 16px 36px;
  border-radius: 50px; font-size: 1.05rem; font-weight: 600; border: none;
  transition: background 220ms, transform 220ms, box-shadow 220ms, color 220ms;
  box-shadow: 0 8px 24px -8px rgba(232, 87, 42, 0.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--surface);
  transform: translateY(-3px); box-shadow: 0 12px 32px -8px rgba(27, 42, 27, 0.3);
}

/* ==================== MARQUEE ==================== */
.marquee-wrap {
  position: relative; overflow: hidden; padding: 24px 0;
  margin-top: 40px;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee-scroll 18s linear infinite;
}
.marquee-track svg { width: 56px; height: 56px; flex-shrink: 0; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==================== SECTIONS ==================== */
section { padding: clamp(48px, 8vh, 80px) 0; }
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: rgba(27, 42, 27, 0.7); max-width: 560px; margin: 0 auto; }

/* ==================== VITRIN (CATALOG) ==================== */
#vitrin { background: var(--bg); }
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px;
}
.filter-chip {
  padding: 8px 20px; border-radius: 40px; border: 1.5px solid var(--line);
  font-size: 0.85rem; font-weight: 500; background: var(--bg); color: var(--ink);
  cursor: pointer; transition: all 220ms;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

.catalog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.catalog-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(232, 87, 42, 0.2);
}
.catalog-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.catalog-body { padding: 20px; }
.catalog-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.catalog-body p { font-size: 0.88rem; color: rgba(27, 42, 27, 0.7); margin-bottom: 12px; }
.catalog-price {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--accent);
}
.catalog-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent-2); color: #fff; padding: 4px 12px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}

/* ==================== PAKETLER (PACKAGES) ==================== */
#paketler { background: var(--surface); }
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--bg); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; position: relative; overflow: hidden;
  border: 2px solid transparent;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), border-color 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
}
.package-card:hover {
  transform: translateY(-6px); border-color: var(--accent);
  box-shadow: 0 16px 40px -12px rgba(232, 87, 42, 0.18);
}
.package-card.featured { border-color: var(--accent); }
.package-card.featured::before {
  content: 'Popüler'; position: absolute; top: 16px; right: -28px;
  background: var(--accent); color: #fff; padding: 4px 36px;
  font-size: 0.72rem; font-weight: 700; transform: rotate(45deg);
}
.package-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.package-card .price {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 900; font-size: 2rem;
  color: var(--accent); margin-bottom: 4px;
}
.package-card .price-note { font-size: 0.82rem; color: rgba(27, 42, 27, 0.6); margin-bottom: 20px; }
.package-card ul {
  list-style: none; text-align: left; margin-bottom: 24px;
}
.package-card ul li {
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.package-card ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2); flex-shrink: 0;
}
.package-card .btn-ghost {
  display: inline-block; padding: 12px 28px; border-radius: 40px;
  border: 2px solid var(--ink); font-weight: 600; font-size: 0.9rem;
  background: transparent; color: var(--ink);
  transition: background 220ms, color 220ms, transform 220ms;
}
.package-card .btn-ghost:hover, .package-card .btn-ghost:focus-visible {
  background: var(--ink); color: var(--surface); transform: translateY(-2px);
}

/* ==================== GALERİ ==================== */
#galeri { background: var(--bg); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 27, 0.4), transparent 60%);
  opacity: 0; transition: opacity 260ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0, 0, 0, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; visibility: hidden;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity 300ms; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  background: rgba(255,255,255,0.15); border: none; border-radius: 50%;
  color: #fff; font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  transition: background 220ms;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(255,255,255,0.12);
  border: none; border-radius: 50%; color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 220ms;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==================== TESLİMAT (HOW IT WORKS) ==================== */
#teslimat { background: var(--surface); }
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px; text-align: center;
}
.step-item { position: relative; }
.step-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(27, 42, 27, 0.08);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
}
.step-item:hover .step-icon {
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(232, 87, 42, 0.15);
}
.step-icon svg { width: 32px; height: 32px; color: var(--accent); }
.step-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; color: rgba(27, 42, 27, 0.7); }
.step-number {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent-2);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==================== İLETİŞİM ==================== */
#iletisim { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 12px 16px; border-radius: var(--radius-sm);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.contact-row:hover { transform: translateX(4px); background: var(--surface); }
.contact-row svg {
  width: 20px; height: 20px; color: var(--ink);
  transition: color 240ms, transform 240ms;
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-row strong { display: block; font-size: 0.85rem; color: rgba(27, 42, 27, 0.6); margin-bottom: 2px; font-weight: 500; }
.contact-row span, .contact-row a { font-size: 0.95rem; word-break: break-word; overflow-wrap: anywhere; }

/* ==================== FORM ==================== */
.form-card {
  background: var(--surface); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
  background: var(--bg); color: var(--ink);
  transition: border-color 220ms, box-shadow 220ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 87, 42, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-field label { margin-bottom: 0; font-size: 0.82rem; line-height: 1.4; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-success, .form-error {
  padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px;
  font-size: 0.9rem; display: none;
}
.form-success { background: rgba(46, 196, 182, 0.12); color: #1a7a70; border: 1px solid rgba(46, 196, 182, 0.3); }
.form-error { background: rgba(232, 87, 42, 0.08); color: var(--accent); border: 1px solid rgba(232, 87, 42, 0.2); }
.form-success.is-visible, .form-error.is-visible { display: block; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.8); padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; margin-bottom: 32px;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a {
  display: block; padding: 4px 0; font-size: 0.88rem;
  transition: color 220ms, padding-left 220ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px; text-align: center; font-size: 0.82rem;
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px;
  margin: 0 auto; background: var(--bg); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: rgba(27, 42, 27, 0.7); margin-bottom: 16px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  padding: 10px 20px; border-radius: 40px; font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
  min-height: 44px; transition: background 220ms, color 220ms, border-color 220ms;
}
.cookie-actions button[data-consent="accept"] { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--ink); border-color: var(--ink); color: var(--surface); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--surface); border-color: var(--accent); }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface); }

/* ==================== REVEAL ==================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

.catalog-card.reveal.is-in,
.package-card.reveal.is-in {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), opacity 600ms cubic-bezier(.2,.7,.2,1);
}
.catalog-card.reveal.is-in:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(232, 87, 42, 0.22), 0 0 0 1px rgba(232, 87, 42, 0.06);
}
.package-card.reveal.is-in:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(232, 87, 42, 0.18);
}
.package-card.featured.reveal.is-in:hover {
  box-shadow: 0 20px 48px -8px rgba(232, 87, 42, 0.24);
}

/* ==================== TABLE SCROLL ==================== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 340px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table { border-collapse: collapse; width: 100%; }
table th, table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
table th { font-weight: 600; background: var(--surface); }

/* ==================== PAGE CONTENT ==================== */
.page-hero {
  background: var(--surface); padding: clamp(40px, 6vh, 60px) 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-content {
  padding: clamp(40px, 6vh, 60px) 0;
}
.page-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--ink); }
.page-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.page-content p { margin-bottom: 16px; color: rgba(27, 42, 27, 0.8); }
.page-content ul, .page-content ol { margin-bottom: 16px; padding-left: 24px; }
.page-content li { margin-bottom: 8px; font-size: 0.92rem; color: rgba(27, 42, 27, 0.8); }
.prose { max-width: 740px; margin: 0 auto; line-height: 1.7; }
.prose h2 {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.prose h2 + p, .prose h2 + ul, .prose h2 + .table-scroll {
  margin-top: 14px;
}
.prose h3 {
  color: var(--accent-2);
}

section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ==================== NICHE ANIMATIONS ==================== */
/* 1. Confetti burst on CTA */
@keyframes confetti-pop {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  60% { opacity: 1; }
  100% { transform: scale(1) rotate(var(--r, 45deg)) translate(var(--tx, 20px), var(--ty, -30px)); opacity: 0; }
}
.btn-primary { position: relative; overflow: visible; }
.confetti-particle {
  position: absolute; width: 8px; height: 8px; border-radius: 2px;
  pointer-events: none; opacity: 0;
}
.btn-primary:hover .confetti-particle {
  animation: confetti-pop 700ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* 2. Balloon float ambient */
@keyframes balloon-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.balloon-deco {
  animation: balloon-float 4s ease-in-out infinite;
}
.balloon-deco:nth-child(2) { animation-delay: -1.2s; animation-duration: 4.5s; }
.balloon-deco:nth-child(3) { animation-delay: -2.4s; animation-duration: 5s; }

/* 3. Ribbon wave on packages */
@keyframes ribbon-wave {
  0%, 100% { transform: scaleX(1) skewX(0deg); }
  50% { transform: scaleX(1.02) skewX(-1deg); }
}
.package-card.featured::before {
  animation: ribbon-wave 3s ease-in-out infinite;
}

/* 4. Confetti drift in hero */
@keyframes confetti-drift {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(calc(100% + 40px)) rotate(var(--spin, 360deg)); opacity: 0; }
}
.hero-confetti {
  position: absolute; pointer-events: none;
  animation: confetti-drift var(--dur, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}

/* 5. Balloon pop scale on card hover */
@keyframes balloon-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.catalog-card:hover .catalog-badge {
  animation: balloon-pop 400ms cubic-bezier(.2,.7,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  .balloon-deco, .hero-confetti, .package-card.featured::before, .marquee-track {
    animation: none !important;
  }
  .btn-primary:hover .confetti-particle { animation: none !important; }
}

/* ==================== FOCUS ==================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ==================== SITEMAP PAGE ==================== */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { padding: 8px 0; }
.sitemap-list a { color: var(--accent); font-weight: 500; }
.sitemap-list a:hover { text-decoration: underline; }

/* ==================== 404 ==================== */
.page-404 { text-align: center; padding: 80px 0; }
.page-404 h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--accent); }
.page-404 p { font-size: 1.2rem; margin: 16px 0 32px; }

/* ==================== ENHANCED MOBILE NAV ==================== */
@media (max-width: 1023px) {
  .nav-toggle {
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 2px solid var(--ink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: background 200ms, border-color 200ms, box-shadow 200ms, transform 200ms;
  }
  .nav-toggle:hover {
    background: var(--surface);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(232, 87, 42, 0.15);
  }
  .nav-toggle:active {
    background: var(--surface);
    transform: scale(0.95);
  }
  .nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--ink);
  }
}

/* ==================== STAGGER REVEAL ==================== */
.catalog-grid .catalog-card:nth-child(3n+2) { transition-delay: 80ms; }
.catalog-grid .catalog-card:nth-child(3n+3) { transition-delay: 160ms; }
.packages-grid .package-card:nth-child(2) { transition-delay: 80ms; }
.packages-grid .package-card:nth-child(3) { transition-delay: 160ms; }
.packages-grid .package-card:nth-child(4) { transition-delay: 240ms; }
.steps-row .step-item:nth-child(2) { transition-delay: 120ms; }
.steps-row .step-item:nth-child(3) { transition-delay: 240ms; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 60ms; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 120ms; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
  .catalog-grid .catalog-card,
  .packages-grid .package-card,
  .steps-row .step-item,
  .gallery-grid .gallery-item { transition-delay: 0ms !important; }
}

/* ==================== CTA CARD ==================== */
.cta-card {
  background: var(--surface); border-radius: var(--radius);
  padding: clamp(32px, 5vw, 48px);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  border: 2px solid rgba(232, 87, 42, 0.18);
  transition: border-color 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1), transform 260ms cubic-bezier(.2,.7,.2,1);
}
.cta-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 36px -8px rgba(232, 87, 42, 0.18);
  transform: translateY(-4px);
}
.cta-icon { margin-bottom: 20px; }
.cta-icon svg {
  animation: balloon-float 4s ease-in-out infinite;
}
.cta-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.cta-card p {
  font-size: 0.95rem; color: rgba(27, 42, 27, 0.7);
  margin-bottom: 28px; max-width: 320px; line-height: 1.6;
}

/* ==================== WARM GLOW HOVER EFFECTS ==================== */
.catalog-card { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.catalog-card:hover {
  box-shadow: 0 20px 48px -12px rgba(232, 87, 42, 0.22), 0 0 0 1px rgba(232, 87, 42, 0.06);
}
.package-card.featured {
  box-shadow: 0 4px 24px -4px rgba(232, 87, 42, 0.12);
}
.package-card.featured:hover {
  box-shadow: 0 20px 48px -8px rgba(232, 87, 42, 0.2);
}
.gallery-item {
  transition: box-shadow 260ms cubic-bezier(.2,.7,.2,1), transform 260ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover {
  box-shadow: 0 12px 32px -8px rgba(232, 87, 42, 0.2);
  transform: translateY(-3px);
}
.step-icon {
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1), background 260ms cubic-bezier(.2,.7,.2,1);
}
.step-item:hover .step-icon {
  background: rgba(232, 87, 42, 0.06);
  box-shadow: 0 8px 28px rgba(232, 87, 42, 0.18);
}
.contact-row:hover {
  box-shadow: 0 4px 16px -4px rgba(232, 87, 42, 0.1);
}
.hero-badges span {
  transition: background 250ms cubic-bezier(.2,.7,.2,1), border-color 250ms, transform 250ms;
}
.hero-badges span:hover {
  background: var(--surface); border-color: var(--accent);
  transform: translateY(-2px);
}

/* ==================== COOKIE BANNER IMPROVEMENTS ==================== */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    max-width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1; min-width: 0; padding: 12px 14px; }
}
.cookie-actions button[data-consent="reject"] {
  border-color: var(--ink);
  font-weight: 700;
}
.cookie-actions button[data-consent="reject"]:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ==================== FILTER CHIP HOVER ==================== */
.filter-chip {
  transition: all 220ms cubic-bezier(.2,.7,.2,1), transform 220ms;
}
.filter-chip:hover {
  transform: translateY(-1px);
}

/* ==================== BTN-GHOST ENHANCED ==================== */
.package-card .btn-ghost {
  transition: background 220ms cubic-bezier(.2,.7,.2,1), color 220ms, transform 220ms, box-shadow 220ms;
}
.package-card .btn-ghost:hover, .package-card .btn-ghost:focus-visible {
  box-shadow: 0 6px 20px -4px rgba(27, 42, 27, 0.2);
}

/* ==================== FOOTER LINK HOVER ==================== */
.footer-col a {
  transition: color 220ms cubic-bezier(.2,.7,.2,1), padding-left 280ms cubic-bezier(.2,.7,.2,1);
}

/* ==================== HAKKIMIZDA PAGE SECTIONS ==================== */
.page-content .prose > p.reveal {
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: border-color 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
}
.page-content .prose > p.reveal:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px -4px rgba(232, 87, 42, 0.1);
}

/* ==================== ENHANCED GALLERY HOVER ==================== */
@keyframes gallery-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.gallery-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover::before {
  opacity: 1;
  animation: gallery-shimmer 800ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover::before { animation: none; }
}

/* ==================== STEP ICON PULSE ==================== */
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(27, 42, 27, 0.08); }
  50% { box-shadow: 0 4px 16px rgba(232, 87, 42, 0.22), 0 0 0 8px rgba(232, 87, 42, 0.04); }
}
.step-item:hover .step-icon {
  animation: step-pulse 1.6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .step-item:hover .step-icon { animation: none; }
}

/* ==================== PAGE HERO DECORATION ==================== */
.page-hero {
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 100%;
  animation: hero-bar-slide 4s linear infinite;
}
@keyframes hero-bar-slide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero::after { animation: none; background-size: 100% 100%; }
}

/* ==================== MOBILE COOKIE BUTTON SIZE ==================== */
@media (max-width: 767px) {
  .cookie-actions button { font-size: 0.85rem; min-height: 48px; }
}

/* ==================== THEME: BALLOON PARTY MICRO-EFFECTS ==================== */
.catalog-price {
  display: inline-block;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), color 260ms cubic-bezier(.2,.7,.2,1);
}
.catalog-card:hover .catalog-price {
  transform: scale(1.08);
}
.package-card .price {
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}
.package-card:hover .price {
  transform: scale(1.06);
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 24px -8px rgba(232, 87, 42, 0.35); }
  50% { box-shadow: 0 8px 32px -4px rgba(232, 87, 42, 0.5); }
}
.btn-primary {
  animation: cta-glow 3s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
}
.step-number {
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
}
.step-item:hover .step-number {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 4px 12px rgba(46, 196, 182, 0.3);
}
.hero-badges span {
  position: relative;
  overflow: hidden;
}
.hero-badges span::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(232, 87, 42, 0.08) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 240ms cubic-bezier(.2,.7,.2,1);
}
.hero-badges span:hover::after {
  opacity: 1;
  animation: gallery-shimmer 800ms ease-out;
}
.nav-desktop .nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-desktop .nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(232, 87, 42, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop .nav-cta:hover::before { opacity: 1; }
.filter-chip.active {
  box-shadow: 0 4px 12px -2px rgba(232, 87, 42, 0.3);
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none !important; }
  .hero-badges span:hover::after { animation: none; }
  .step-item:hover .step-number { transform: translateX(-50%); }
}
