/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wine:      #5d2730;
  --wine-dark: #3d171e;
  --gold:      #b3884c;
  --gold-lt:   #d6b278;
  --cream:     #fbf8f4;
  --muted:     #f3ece5;
  --border:    #eadfd4;
  --text:      #321b21;
  --text-60:   rgba(50,27,33,.6);
  --text-50:   rgba(50,27,33,.5);
  --text-40:   rgba(50,27,33,.4);
  --wine-10:   rgba(93,39,48,.1);
  --wine-08:   rgba(93,39,48,.08);
  --wine-15:   rgba(93,39,48,.15);
  --r28: 28px;
  --r24: 24px;
  --r16: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); min-width: 320px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
button:active { transform: scale(.98); }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold-lt); color: var(--wine); }

.max-w { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5%, 48px); }

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,248,244,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--wine-10);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5%, 48px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .2s;
}
.logo-btn:hover { opacity: .85; }

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid rgba(179,136,76,.4);
  transition: transform .2s;
}
.logo-btn:hover .logo-img { transform: scale(1.06); }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: .18em;
  color: var(--wine);
  display: none;
}
.brand-events { color: var(--gold); }
@media (min-width: 480px) { .brand-name { display: block; } }

.desktop-nav {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.desktop-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(93,39,48,.7);
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 8px; }

.phone-link {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--wine-15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--wine);
  transition: border-color .2s;
}
.phone-link:hover { border-color: var(--gold); }
@media (min-width: 480px) { .phone-link { display: flex; } }

.menu-btn {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  padding: 8px;
}
@media (min-width: 768px) { .menu-btn { display: none; } }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--wine); border-radius: 1px; transition: .2s; }

.mobile-nav {
  display: none;
  padding: 16px clamp(20px, 5%, 48px);
  border-top: 1px solid var(--wine-10);
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
}

/* ===== HERO ===== */
.hero {
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5%, 48px);
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}

.hero-left { max-width: 560px; }

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--wine);
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: var(--gold); }

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-60);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.btn-wine {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  background: var(--wine);
  color: var(--cream);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-wine:hover { background: var(--wine-dark); }
.btn-wine.full { width: 100%; justify-content: center; padding: 16px 24px; }

.btn-outline-wine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--wine-15);
  color: var(--wine);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: border-color .2s;
}
.btn-outline-wine:hover { border-color: var(--gold); }

.hero-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-50);
}
.hero-steps strong { color: var(--text); font-weight: 400; margin-left: 6px; }
.step-line { display: block; width: 56px; height: 1px; background: var(--wine-15); }

/* oval visual */
.hero-right { display: flex; justify-content: center; }

.oval-wrap {
  position: relative;
  width: min(440px, 90vw);
  aspect-ratio: .9;
}

.deco-ring {
  position: absolute;
  border-radius: 48%;
  border: 1px solid var(--gold);
}
.ring-outer { inset: 20px; opacity: .5; transform: rotate(3deg); }
.ring-inner { inset: 48px; border-color: var(--wine-10); transform: rotate(-6deg); }

.hero-oval {
  position: absolute;
  inset: 0;
  border-radius: 47%;
  overflow: hidden;
  background: var(--border);
}
.hero-oval img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-multiply;
  opacity: .82;
}
.oval-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(93,39,48,.2), transparent);
}

.we-plan-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 32px rgba(179,136,76,.35);
}

/* ===== KONSEPTLER ===== */
.concepts-section {
  border-top: 1px solid var(--wine-10);
  background: rgba(255,255,255,.45);
  padding: clamp(64px, 8vw, 112px) 0;
}

.concepts-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .concepts-top { flex-direction: row; align-items: flex-end; } }

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -.03em;
  color: var(--wine);
}

.concepts-sub {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-50);
  max-width: 320px;
}

/* category tabs */
.cat-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 40px;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.tab {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--wine-15);
  color: rgba(93,39,48,.6);
  background: transparent;
  transition: all .2s;
}
.tab:hover { border-color: var(--gold); color: var(--wine); }
.tab.active { background: var(--wine); border-color: var(--wine); color: #fff; }

/* cards */
.concepts-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

.concept-card {
  background: #fff;
  border-radius: var(--r28);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(93,39,48,.08);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.concept-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(93,39,48,.13); }

.card-img-wrap {
  position: relative;
  aspect-ratio: .82;
  overflow: hidden;
  background: var(--border);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.concept-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-img-placeholder {
  width: 100%;
  aspect-ratio: .82;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* Card Image Slider */
.card-img-wrap.slider-wrap {
  position: relative;
  user-select: none;
  width: 100%;
  aspect-ratio: .82;
  overflow: hidden;
}

.slider-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #5d2730;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0.85;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.slider-btn:hover {
  opacity: 1;
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 6;
  padding: 4px 8px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  border-radius: 100px;
}
.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dots .dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

.slider-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  z-index: 6;
  letter-spacing: 0.5px;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(251,248,244,.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--wine);
}

.card-body { padding: 20px; }

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--wine);
  margin-bottom: 4px;
}

.card-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--wine);
}

/* empty state */
.empty-state {
  grid-column: 1 / -1;
  border: 2px dashed rgba(179,136,76,.4);
  background: #f7efe7;
  border-radius: var(--r28);
  padding: clamp(60px, 8vw, 80px) 24px;
  text-align: center;
}
.empty-icon {
  width: 28px; height: 28px;
  stroke: var(--gold);
  margin: 0 auto 20px;
}
.empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--wine);
  margin-bottom: 12px;
}
.empty-state p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-60);
  max-width: 380px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-section { padding: clamp(64px, 8vw, 112px) 0; }

.about-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: .8fr 1.2fr; align-items: start; } }

.about-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--wine);
  margin-top: 16px;
}
.about-h2 em { font-style: italic; font-weight: 400; color: var(--gold); }

.about-body { max-width: 520px; }
.about-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-60);
}
.about-body p + p { margin-top: 20px; }

/* ===== FOOTER ===== */
footer {
  background: var(--wine);
  padding: clamp(40px, 6vw, 56px) 0 0;
  color: var(--cream);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 36px;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--gold-lt); }
.footer-sub { font-size: 13px; color: rgba(255,255,255,.55); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .footer-links { align-items: flex-end; } }

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px clamp(20px, 5%, 48px);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* ===== CLICK INDICATOR ===== */
.click-indicator {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--wine);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 200;
  box-shadow: 0 6px 20px rgba(93,39,48,.25);
}
.click-indicator.show { opacity: 1; }

/* ===== TAB — bolder ===== */
.tab { font-weight: 700; font-size: 13px; }

/* ===== KAMPANYA BANNER ===== */
.kampanya {
  background: linear-gradient(135deg, #7a1e2d 0%, var(--wine) 55%, #3d1520 100%);
  color: #fff;
  padding: 15px 0;
}
.kampanya-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.kampanya-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.kampanya-tag {
  background: var(--gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.kampanya-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kampanya-title { font-size: .92rem; font-weight: 700; }
.kampanya-desc  { font-size: .8rem; opacity: .82; }
.kampanya-cta {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.kampanya-cta:hover { background: rgba(255,255,255,.32); }
.kampanya-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 8px;
  flex-shrink: 0;
  transition: color .2s;
}
.kampanya-close:hover { color: #fff; }

/* ===== CUSTOM TAB ===== */
.tab-custom {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.tab-custom.active { background: #8a6435 !important; border-color: #8a6435 !important; }

/* ===== BUILDER ===== */
.builder-intro { margin-bottom: 8px; }

.builder-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  margin-bottom: 32px;
}

.bilesen-card {
  background: #fff;
  border-radius: var(--r28);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(93,39,48,.07);
  transition: transform .25s, box-shadow .25s;
}
.bilesen-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(93,39,48,.12); }
.bilesen-card .card-img-wrap { aspect-ratio: 1.3; }

.qty-ctrl { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--wine-15);
  color: var(--wine);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: pointer;
  background: none;
  line-height: 1;
}
.qty-btn:hover { background: var(--wine); border-color: var(--wine); color: #fff; }
.qty-num { font-size: .95rem; font-weight: 700; color: var(--wine); min-width: 18px; text-align: center; }

/* Sepet */
.cart-box {
  background: #fff;
  border-radius: var(--r28);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(93,39,48,.1);
  border: 1px solid var(--wine-10);
  margin-top: 8px;
}
.cart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cart-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--wine); }
.cart-count { font-size: 12px; color: var(--text-60); font-weight: 500; }
.cart-items { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 14px;
}
.cart-item-name { color: var(--text); font-weight: 500; }
.cart-item-name small { color: var(--text-50); font-weight: 400; margin-left: 4px; }
.cart-item-price { font-weight: 600; color: var(--wine); white-space: nowrap; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--wine-10);
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-60);
}
.cart-total { font-size: 20px; font-weight: 700; color: var(--wine); }
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s;
  cursor: pointer;
  border: none;
  width: 100%;
  letter-spacing: .06em;
}
.btn-wa:hover { background: #1db954; }
.builder-empty {
  border: 2px dashed rgba(179,136,76,.4);
  background: #f7efe7;
  border-radius: var(--r28);
  padding: 60px 24px;
  text-align: center;
  color: var(--text-50);
  font-size: 14px;
}

/* ===== DARK HERO ===== */
.hero {
  background: #0c0408;
  position: relative;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero .hero-grid { position: relative; z-index: 1; }
.hero .eyebrow-row { color: var(--gold-lt); }
.hero .eyebrow-line { background: var(--gold); }
.hero .hero-h1 { color: #fff; }
.hero .hero-desc { color: rgba(255,255,255,.55); }
.hero .hero-steps { color: rgba(255,255,255,.38); }
.hero .hero-steps strong { color: rgba(255,255,255,.65); }
.hero .step-line { background: rgba(255,255,255,.1); }
.hero .btn-outline-wine {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
}
.hero .btn-outline-wine:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.05);
}
.hero .hero-oval {
  box-shadow: 0 0 80px rgba(179,136,76,.2), 0 0 200px rgba(93,39,48,.35);
}
.hero .we-plan-badge {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
}

/* Header karanlık → aydınlık geçişi */
#header {
  background: rgba(12,4,8,.82);
  border-bottom-color: rgba(255,255,255,.06);
  transition: background .35s, border-color .35s;
}
#header.header-light {
  background: rgba(251,248,244,.96);
  border-bottom-color: var(--wine-10);
}
#header:not(.header-light) .desktop-nav a { color: rgba(255,255,255,.68); }
#header:not(.header-light) .desktop-nav a:hover { color: #fff; }
#header:not(.header-light) .nav-teklif { color: #fff !important; }
#header:not(.header-light) .brand-name { color: #fff; }
#header:not(.header-light) .brand-events { color: var(--gold); }
#header:not(.header-light) .phone-link { color: rgba(255,255,255,.6); }
#header:not(.header-light) .menu-btn span { background: #fff; }

/* Typewriter imleci */
.tw-word::after {
  content: '|';
  animation: twBlink .75s step-end infinite;
  color: var(--gold);
  font-style: normal;
  margin-left: 2px;
}
@keyframes twBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Paketler daha dramatik */
.packages-section {
  background: linear-gradient(150deg, #090306 0%, #3d171e 48%, #0c0408 100%) !important;
}
.pkg-card:not(.pkg-featured) {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ===== ANİMASYONLAR ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .65; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes srFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero soldan sağa yükleme */
.hero-left .eyebrow-row { opacity: 0; animation: heroFadeUp .7s ease forwards .1s; }
.hero-left .hero-h1     { opacity: 0; animation: heroFadeUp .75s ease forwards .25s; }
.hero-left .hero-desc   { opacity: 0; animation: heroFadeUp .7s ease forwards .42s; }
.hero-left .hero-cta    { opacity: 0; animation: heroFadeUp .7s ease forwards .58s; }
.hero-left .hero-steps  { opacity: 0; animation: heroFadeUp .7s ease forwards .72s; }
.hero-right .oval-wrap  { opacity: 0; animation: heroScaleIn .85s ease forwards .3s; }

/* Yüzen oval ve dönen halkalar */
.hero-oval              { animation: floatY 5s ease-in-out infinite; }
.deco-ring.ring-outer   { animation: ringRotate 30s linear infinite; }
.deco-ring.ring-inner   { animation: ringRotate 20s linear infinite reverse; }

/* Scroll reveal */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--sd, 0s);
}
.sr.sr-left  { transform: translateX(-48px); }
.sr.sr-right { transform: translateX(48px); }
.sr.visible  { opacity: 1; transform: none; }

/* Nav teklif butonu */
.nav-teklif {
  background: var(--wine);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  transition: background .2s;
}
.nav-teklif:hover { background: var(--wine-dark); }

/* ===== SABİT WA BUTONU ===== */
.wa-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform .22s, box-shadow .22s;
}
.wa-fixed:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-fixed-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.5);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

/* ===== PAKETLER ===== */
.packages-section {
  padding: 100px 0 90px;
  background: var(--wine);
  position: relative;
}
.packages-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 52px;
}
@media (min-width: 860px) {
  .packages-grid {
    grid-template-columns: 1fr 1.08fr 1fr;
    align-items: start;
  }
}
.pkg-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r28);
  padding: 36px 28px;
  position: relative;
  transition: transform .3s, background .3s;
}
.pkg-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.12); }
.pkg-featured {
  background: #fff;
  border-color: transparent;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.pkg-featured:hover { background: #fff; }
.pkg-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-header { text-align: center; margin-bottom: 28px; }
.pkg-icon   { font-size: 38px; display: block; margin-bottom: 14px; }
.pkg-name   { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 6px; }
.pkg-name-dark { color: var(--wine); }
.pkg-tagline { font-size: 13px; color: rgba(255,255,255,.55); }
.pkg-tagline-dark { color: var(--text-60); }
.pkg-features { list-style: none; margin-bottom: 32px; }
.pkg-features li {
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pkg-features-dark li { color: var(--text-60); border-bottom-color: var(--border); }
.pkg-features-dark li::before { color: var(--wine); }
.pkg-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  transition: background .2s, border-color .2s, transform .15s;
}
.pkg-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); transform: scale(1.02); }
.pkg-btn-wine {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}
.pkg-btn-wine:hover { background: var(--wine-dark); border-color: var(--wine-dark); }

/* ===== TEKLİF FORMU ===== */
.quote-section {
  padding: 100px 0;
  background: var(--cream);
}
.quote-inner {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 860px) { .quote-inner { grid-template-columns: 1fr 1.2fr; } }
.quote-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--wine);
  line-height: 1.18;
  margin: 10px 0 18px;
}
.quote-h2 em { color: var(--gold); font-style: italic; }
.quote-desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-60);
  margin-bottom: 36px;
}
.quote-socials { display: flex; flex-direction: column; gap: 14px; }
.quote-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wine);
  transition: color .2s;
}
.quote-social-item svg { stroke: var(--gold); flex-shrink: 0; }
.quote-social-item:hover { color: var(--gold); }
.quote-form-card {
  background: #fff;
  border-radius: var(--r28);
  padding: 36px;
  box-shadow: 0 24px 64px var(--wine-08);
}
.q-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 500px) { .q-row { grid-template-columns: 1fr; } }
.q-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-60);
  margin-bottom: 8px;
}
.q-field input,
.q-field select,
.q-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.q-field input:focus,
.q-field select:focus,
.q-field textarea:focus { border-color: var(--gold); }
.q-field-full { margin-bottom: 14px; }
.q-submit-btn { margin-top: 6px; font-size: 14px; }

/* ===== BAKIM MODU ===== */
#maintenanceOverlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.maint-content {
  text-align: center;
  max-width: 480px;
}
.maint-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  outline: 1px solid rgba(179,136,76,.35);
}
.maint-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.maint-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  color: var(--wine);
  margin-bottom: 16px;
}
.maint-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-60);
  margin-bottom: 32px;
}
.btn-wa-maint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: opacity .2s;
}
.btn-wa-maint:hover { opacity: .88; }

/* ===== SABİT MESAJ BUTONU ===== */
.msg-fixed-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 100;
}

.msg-fixed-tooltip {
  background: var(--wine);
  color: #fff;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(93,39,48,.25);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s, transform .22s;
  pointer-events: none;
}

.msg-fixed-wrap:hover .msg-fixed-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.msg-fixed {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(93,39,48,.38);
  transition: transform .22s, box-shadow .22s;
}

.msg-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(93,39,48,.48);
}

/* WA alternatif bağlantı */
.q-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-40);
}

.q-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #25d366;
  transition: opacity .2s;
}
.q-wa-link:hover { opacity: .8; }
.q-wa-link svg { flex-shrink: 0; }

/* ===== MESAJ PANELİ ===== */
.msg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(50,27,33,.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.msg-overlay.open { opacity: 1; pointer-events: auto; }

.msg-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  background: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(50,27,33,.18);
}
.msg-panel.open { transform: translateX(0); }

.msg-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.msg-panel-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.msg-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--wine);
}

.msg-panel-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-60);
  transition: background .18s;
  flex-shrink: 0;
}
.msg-panel-close:hover { background: var(--border); }

.msg-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
}

.msg-panel-desc {
  font-size: 14px;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: 24px;
}

.msg-field {
  margin-bottom: 16px;
}
.msg-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-60);
  margin-bottom: 8px;
}
.msg-field input,
.msg-field select,
.msg-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.msg-field input:focus,
.msg-field select:focus,
.msg-field textarea:focus { border-color: var(--gold); background: #fff; }

.msg-panel-submit {
  width: 100%;
  padding: 14px;
  background: var(--wine);
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
  margin-top: 4px;
}
.msg-panel-submit:hover { background: var(--wine-dark); }
.msg-panel-submit:disabled { opacity: .6; cursor: not-allowed; }

.mp-success {
  text-align: center;
  padding: 40px 16px;
}
.mp-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eaf6ee;
  color: #2d7a47;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.mp-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--wine);
  margin-bottom: 8px;
}
.mp-success p {
  font-size: 14px;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== SAYFA HERO (hava.html gibi iç sayfalar) ===== */
.page-hero {
  background: var(--cream);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 680px;
}

.page-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--wine);
  line-height: 1.15;
  margin: 10px 0 14px;
}

.page-hero-desc {
  font-size: 15px;
  color: var(--text-60);
  line-height: 1.7;
  max-width: 520px;
}

.nav-active {
  color: var(--wine) !important;
  font-weight: 600;
}

/* ===== HAVA DURUMU ===== */
.weather-section {
  padding: 80px 0;
  background: var(--cream);
}

.weather-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 20px 60px rgba(93,39,48,.08);
}

.weather-top {
  text-align: center;
  margin-bottom: 36px;
}

.weather-intro {
  font-size: 15px;
  color: var(--text-60);
  max-width: 480px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.weather-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.weather-selects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 680px) {
  .weather-selects { grid-template-columns: 1fr; }
}

.weather-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  align-self: flex-start;
}

.weather-result {
  margin-top: 28px;
  background: var(--cream);
  border-radius: 16px;
  padding: 22px;
}

.wx-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.wx-icon { font-size: 46px; line-height: 1; flex-shrink: 0; }

.wx-info { flex: 1; min-width: 0; }

.wx-city {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--wine);
  margin-bottom: 3px;
}

.wx-condition {
  font-size: 13px;
  color: var(--text-60);
}

.wx-temps {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}

.wx-tmax {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.wx-tmin {
  font-size: 13px;
  color: var(--text-50);
}

.wx-precip {
  font-size: 13px;
  color: var(--text-60);
  margin-bottom: 12px;
}

.wx-precip strong { color: var(--text); }

.wx-status {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.wx-ok      { background: #eaf6ee; color: #2d7a47; }
.wx-caution { background: #fffbea; color: #896609; }
.wx-warn    { background: #fef0ec; color: #9d4a2a; }

.wx-note {
  font-size: 11px;
  color: var(--text-40);
  margin-top: 10px;
  margin-bottom: 0;
}

.wx-err {
  font-size: 14px;
  color: #9d4a4a;
  text-align: center;
  padding: 16px;
}

/* ===== FORM BAŞARI EKRANI (index.html) ===== */
.quote-success {
  text-align: center;
  padding: 32px 16px;
}
.quote-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf6ee;
  color: #2d7a47;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.quote-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--wine);
  margin-bottom: 8px;
}
.quote-success p {
  font-size: 14px;
  color: var(--text-60);
  line-height: 1.6;
}

.weather-section-page {
  padding-top: 48px;
}

/* Bilgi kutusu */
.wx-info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .wx-info-box { grid-template-columns: 1fr; }
}

.wx-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(93,39,48,.05);
}

.wx-info-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wx-info-item strong {
  display: block;
  font-size: 14px;
  color: var(--wine);
  margin-bottom: 6px;
}

.wx-info-item p {
  font-size: 13px;
  color: var(--text-60);
  line-height: 1.6;
  margin: 0;
}
