/* ═══════════════════════════════════════════
   Kelebek Ankara — Premium Design System
   Dark Luxury · Gold · Glassmorphism
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:       #0E0D0B;
  --surface:  #161411;
  --card:     #1D1B17;
  --card2:    #232019;
  --gold:     #C9A84C;
  --gold-l:   #E8D5A3;
  --gold-dim: rgba(201,168,76,0.12);
  --border:   rgba(201,168,76,0.16);
  --cream:    #F5F0E8;
  --text:     rgba(245,240,232,0.88);
  --muted:    rgba(245,240,232,0.42);
  --accent:   #2C4A3E;
  --green:    #22c55e;
  --red:      #e53e3e;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', 'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }
a { text-decoration: none; }

/* ── Animasyonlar ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.shake { animation: shake 0.4s ease; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── VIP BAR ── */
#vip-bar {
  display: none;
  background: linear-gradient(90deg, var(--accent), #142a22);
  color: var(--gold-l);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 100;
}
#vip-bar span { color: var(--gold); font-weight: 500; }

/* ── HEADER ── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 22px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease);
}
#main-header.scrolled {
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(16px);
  padding: 14px 52px;
  border-bottom: 1px solid var(--border);
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 3px; color: var(--cream); text-decoration: none; }
.logo em { font-style: italic; color: var(--gold); }
.logo-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; display: inline-block; vertical-align: middle; }

nav { display: flex; gap: 32px; align-items: center; }
nav a { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
nav a:hover { color: var(--gold); }
.nav-vip {
  background: var(--gold); color: var(--bg) !important;
  padding: 9px 22px; font-weight: 500; letter-spacing: 1.2px;
  transition: background 0.2s !important;
}
.nav-vip:hover { background: var(--gold-l) !important; }

/* Hamburger */
#hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
#hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: all 0.3s var(--ease);
}
#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px; background: var(--card); z-index: 200;
  padding: 80px 36px 40px;
  flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
}
#mobile-menu.open { transform: translateX(0); }
#menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 195;
  opacity: 0; transition: opacity 0.3s;
}
#menu-overlay.show { opacity: 1; }
.mobile-nav-link {
  display: block; padding: 14px 0;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-vip { margin-top: 20px; background: var(--gold); color: var(--bg); padding: 14px 24px; text-align: center; letter-spacing: 1.5px; font-size: 12px; text-transform: uppercase; border: none; width: 100%; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 64px 80px; z-index: 2; position: relative;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

/* Google Rating badge */
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-dim); border: 1px solid var(--border);
  padding: 8px 16px; margin-bottom: 28px; width: fit-content;
}
.google-badge .stars { color: #FCD34D; font-size: 14px; letter-spacing: 1px; }
.google-badge .rating-text { font-size: 12px; color: var(--gold-l); letter-spacing: 0.5px; }
.google-badge .rating-count { font-size: 11px; color: var(--muted); }

.hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 72px);
  font-weight: 300; line-height: 1.08; color: var(--cream); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub { font-size: 15px; color: var(--muted); max-width: 420px; line-height: 1.75; margin-bottom: 44px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  background: var(--gold); color: var(--bg);
  padding: 15px 36px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; border: none; font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 15px 36px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; border: 1px solid var(--border);
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 48px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--cream); display: block; }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); animation: heroZoom 7s var(--ease) forwards;
  filter: brightness(0.75);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 35%);
}

/* Mağaza badge */
.store-badge {
  position: absolute; bottom: 40px; right: 40px; z-index: 3;
  background: rgba(14,13,11,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); padding: 16px 20px;
  text-align: center;
}
.store-badge-name { font-family: var(--serif); font-size: 20px; color: var(--cream); letter-spacing: 1px; }
.store-badge-sub { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

/* ── SOSYAL KANIT BAR ── */
.social-proof-bar {
  background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 52px; display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.sp-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.sp-item strong { color: var(--gold-l); }
.sp-divider { width: 1px; height: 24px; background: var(--border); }

/* ── SEGMENT SEÇİMİ ── */
.segment-section { padding: 100px 52px; background: var(--surface); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.section-title h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 300; line-height: 1.12; color: var(--cream); }
.section-title h2 em { font-style: italic; color: var(--gold); }
.section-title p { font-size: 15px; color: var(--muted); max-width: 480px; margin: 14px auto 0; line-height: 1.7; }

.segment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
.segment-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4; background: var(--card);
}
.segment-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; transition: all 0.55s var(--ease); }
.segment-card:hover img, .segment-card.active img { opacity: 0.35; transform: scale(1.06); }

.segment-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 36px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
}
.seg-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.seg-name { font-family: var(--serif); font-size: 38px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.seg-desc {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
  margin-bottom: 0;
}
.segment-card:hover .seg-desc, .segment-card.active .seg-desc { max-height: 72px; margin-bottom: 16px; }
.seg-cta {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-l); opacity: 0; transform: translateY(8px);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.segment-card:hover .seg-cta, .segment-card.active .seg-cta { opacity: 1; transform: translateY(0); }

/* ── ÜRÜNLER ── */
.products-section { padding: 100px 52px; background: var(--bg); }

.products-filter {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 24px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; border: 1px solid var(--border);
  background: transparent; color: var(--muted);
  transition: all 0.2s; font-family: var(--sans);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--bg); background: var(--gold); }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.no-products { grid-column: 1/-1; text-align: center; padding: 64px; color: var(--muted); font-family: var(--serif); font-size: 24px; }

.product-card { cursor: pointer; transition: transform 0.3s var(--ease); }
.product-card:hover { transform: translateY(-5px); }

.product-img {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--card); margin-bottom: 18px;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.06); }

.badge-teslim {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: #16a34a; color: #fff;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px;
}
.badge-type {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--accent); color: var(--gold-l);
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px;
}

.product-overlay {
  position: absolute; inset: 0; background: rgba(14,13,11,0.88);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay button {
  border: none; padding: 12px 28px; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.2s;
}
.product-overlay button:first-child { background: transparent; color: var(--gold-l); border: 1px solid var(--border); }
.product-overlay button:first-child:hover { border-color: var(--gold); color: var(--gold); }
.product-overlay button:last-child { background: var(--gold); color: var(--bg); font-weight: 500; }
.product-overlay button:last-child:hover { background: var(--gold-l); }

.product-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.product-dims { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.product-monthly { font-size: 13px; color: var(--muted); }
.product-monthly strong { color: var(--gold-l); font-size: 15px; }

/* ── SİMÜLATÖR ── */
.simulator-section { padding: 100px 52px; background: var(--surface); }
.simulator-section .section-title h2 { color: var(--cream); }

.simulator-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}

.sim-canvas {
  position: relative; aspect-ratio: 16/10;
  overflow: hidden; border: 1px solid var(--border);
}
.sim-bg { position: absolute; inset: 0; transition: background-color 0.5s var(--ease); }
.sim-product {
  position: absolute; inset: 0; display: flex;
  align-items: flex-end; justify-content: center; padding-bottom: 4%;
}
.sim-product img {
  max-height: 78%; max-width: 82%; object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
  transition: opacity 0.3s var(--ease);
}
.sim-product-info {
  position: absolute; top: 16px; left: 16px;
  background: rgba(14,13,11,0.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border); padding: 12px 16px;
}
.sim-product-name-label { font-family: var(--serif); font-size: 16px; color: var(--cream); display: block; }
.sim-dims-label { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; }

#sim-teslim {
  position: absolute; top: 16px; right: 16px;
  background: #16a34a; color: #fff;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 10px;
  display: none;
}

#sim-tip {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold-l); padding: 10px 14px; font-size: 12px; line-height: 1.5;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}

.sim-controls {}
.control-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.control-group { margin-bottom: 28px; }

.room-width-wrap { display: flex; align-items: center; gap: 12px; }
#room-width-input {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  color: var(--cream); padding: 10px 14px; font-family: var(--sans);
  font-size: 16px; outline: none; flex: 1;
  -moz-appearance: textfield;
}
#room-width-input:focus { border-color: var(--gold); }
#room-width-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.width-unit { font-size: 12px; color: var(--muted); white-space: nowrap; }

.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid transparent;
  transition: all 0.2s; cursor: pointer;
}
.swatch:hover, .swatch.active { border-color: var(--gold); transform: scale(1.15); }

.product-selector { display: flex; flex-direction: column; gap: 6px; max-height: 220px; overflow-y: auto; }
.product-selector::-webkit-scrollbar { width: 2px; }
.product-selector::-webkit-scrollbar-thumb { background: var(--border); }
.prod-option {
  padding: 10px 14px; border: 1px solid rgba(201,168,76,0.1);
  cursor: pointer; transition: all 0.2s;
  display: flex; justify-content: space-between; align-items: center;
}
.prod-option:hover, .prod-option.active { border-color: var(--gold); background: var(--gold-dim); }
.prod-option-name { font-family: var(--serif); font-size: 15px; color: var(--cream); }
.prod-option-size { font-size: 11px; color: var(--muted); }

/* Sığar/Sığmaz sonuç */
#sim-result { margin-top: 20px; transition: opacity 0.3s; }
.fit-result {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1px solid; margin-bottom: 14px;
  font-size: 13px; line-height: 1.6;
}
.fit-result .fit-icon { font-size: 18px; flex-shrink: 0; }
.fit-result strong { display: block; color: var(--cream); margin-bottom: 4px; }
.fit-result span { color: var(--muted); }
.fit-yes { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); }
.fit-tight { border-color: rgba(234,179,8,0.3); background: rgba(234,179,8,0.06); }
.fit-no { border-color: rgba(229,62,62,0.3); background: rgba(229,62,62,0.06); }

.sim-vip-btn {
  width: 100%; background: var(--gold); color: var(--bg);
  border: none; padding: 14px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; transition: background 0.2s;
}
.sim-vip-btn:hover { background: var(--gold-l); }

/* ── VIP FORM (FAZ 4) ── */
.form-section { padding: 100px 52px; background: var(--bg); }
.form-wrap {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.form-left h2 { font-family: var(--serif); font-size: 52px; font-weight: 300; line-height: 1.08; color: var(--cream); margin-bottom: 20px; }
.form-left h2 em { font-style: italic; color: var(--gold); }
.form-left p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.form-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.form-perks li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.form-perks li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; }

.form-card { background: var(--card); padding: 40px; border: 1px solid var(--border); }
.form-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--cream); margin-bottom: 8px; }
.form-sub { font-size: 12px; color: var(--muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); background: var(--surface);
  font-family: var(--sans); font-size: 14px; color: var(--cream);
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--muted); opacity: 0.6; }
.form-group select option { background: var(--card); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--bg);
  border: none; padding: 16px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; transition: background 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-l); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 300;
  align-items: center; justify-content: center; backdrop-filter: blur(6px);
}
.modal-overlay.show { display: flex; }
.modal-card {
  background: var(--card); padding: 52px 48px;
  max-width: 460px; width: 90%; text-align: center;
  position: relative; animation: modalIn 0.4s var(--ease);
  border: 1px solid var(--border);
}
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 18px; color: var(--muted); }
.modal-close:hover { color: var(--cream); }
.modal-icon { font-size: 36px; margin-bottom: 16px; }
.modal-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--cream); margin-bottom: 8px; }
.modal-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.vip-card-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 220px;
  margin: 0 auto 24px;
  perspective: 1000px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.4);
}
.vip-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.vip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0d0d0d 0%, #151515 40%, #201a0d 85%, #0d0d0d 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  overflow: hidden;
}
.vip-card-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 55%, transparent 60%);
  z-index: 3;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.vip-card-container:hover .vip-card-inner::after {
  transform: translateX(100%);
}
.vip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vip-card-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vip-card-logo {
  width: 28px;
  height: 28px;
}
.vip-card-brand-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 1.5px;
}
.vip-card-brand-name em {
  color: var(--gold);
  font-style: italic;
}
.vip-card-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 500;
}
.vip-card-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3);
}
.vip-card-chip .chip-line {
  position: absolute;
  background: rgba(0,0,0,0.2);
}
.vip-card-chip .chip-line:nth-child(1) { top: 35%; left: 0; width: 100%; height: 1px; }
.vip-card-chip .chip-line:nth-child(2) { top: 65%; left: 0; width: 100%; height: 1px; }
.vip-card-chip .chip-line:nth-child(3) { top: 0; left: 35%; width: 1px; height: 100%; }
.vip-card-chip .chip-line:nth-child(4) { top: 0; left: 65%; width: 1px; height: 100%; }
.vip-card-code {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--gold-l);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  margin: 10px 0;
  text-align: left;
}
.vip-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}
.vip-card-holder, .vip-card-valid {
  display: flex;
  flex-direction: column;
}
.vip-card-label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
.vip-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}
.vip-card-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--gold-l);
  font-weight: 500;
}
.perks-list { list-style: none; text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.perks-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.perks-list li::before { content: '✦'; color: var(--gold); font-size: 9px; }
.modal-wa { width: 100%; background: #16a34a; color: #fff; border: none; padding: 15px; font-size: 13px; letter-spacing: 1px; transition: background 0.2s; margin-bottom: 10px; }
.modal-wa:hover { background: #15803d; }
.modal-note { font-size: 11px; color: var(--muted); }

/* ── FOOTER ── */
.main-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 60px 52px 0; color: var(--muted);
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.footer-left { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-wrapper .logo { font-family: var(--serif); font-size: 24px; font-weight: 300; letter-spacing: 3px; color: var(--cream); }
.footer-logo-wrapper .logo em { font-style: italic; color: var(--gold); }
.footer-desc { font-size: 13px; line-height: 1.6; }
.footer-social { display: flex; gap: 16px; margin-top: 10px; }
.footer-social a { color: var(--muted); transition: color 0.2s; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }

.footer-mid { display: flex; flex-direction: column; gap: 20px; }
.footer-title { font-family: var(--serif); font-size: 18px; color: var(--cream); font-weight: 400; letter-spacing: 1px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.5; }
.footer-contact-list .icon { flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: var(--muted); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-right { display: flex; flex-direction: column; }
.map-container { width: 100%; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
.fb-left { display: flex; align-items: center; gap: 20px; font-size: 12px; }
.footer-kvkk-link { color: var(--muted); text-decoration: underline; transition: color 0.2s; }
.footer-kvkk-link:hover { color: var(--gold); }

.fb-mid { display: flex; justify-content: center; }
.nextoria-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 20px;
  transition: all 0.3s;
}
.nextoria-badge:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.nd-text { font-size: 9px; letter-spacing: 1.5px; color: var(--muted); }
.nd-logo { font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 2px; color: var(--cream); }

.fb-right { display: flex; justify-content: flex-end; }
.live-support-btn {
  display: flex; align-items: center; gap: 8px;
  background: #22c55e; color: #fff;
  padding: 10px 20px; border-radius: 24px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.live-support-btn:hover { background: #16a34a; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .simulator-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  #main-header { padding: 16px 20px; }
  nav { display: none; }
  #hamburger { display: flex; }
  #mobile-menu { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 100px 24px 60px; }

  .segment-grid { grid-template-columns: 1fr; gap: 2px; }
  .segment-card { aspect-ratio: 5/3; }

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

  .form-wrap { grid-template-columns: 1fr; gap: 48px; }

  .segment-section, .products-section, .simulator-section, .form-section { padding: 60px 20px; }

  .social-proof-bar { flex-direction: column; gap: 16px; padding: 20px; }
  .sp-divider { display: none; }

  .main-footer { padding: 40px 20px 0; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-left, .footer-mid, .footer-right { align-items: center; }
  .footer-social, .footer-contact-list li { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 24px; }
  .fb-left, .fb-mid, .fb-right { justify-content: center; width: 100%; }
}

/* ═══════════════════════════════════════════
   HUNTER ENGINE — Avcı Mekanikleri CSS
═══════════════════════════════════════════ */

/* ── ACİLİYET BARI ── */
.urgency-bar {
  background: linear-gradient(90deg, #1a0a00 0%, #3a1800 50%, #1a0a00 100%);
  color: var(--gold-l);
  text-align: center;
  padding: 0 24px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.urgency-bar.show {
  max-height: 48px;
  padding: 12px 24px;
}
.urgency-bar strong { color: #ff8c00; }
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4444;
  animation: urgencyPulse 1.5s ease infinite;
  flex-shrink: 0;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.urgency-cta {
  background: rgba(255,140,0,0.15);
  border: 1px solid rgba(255,140,0,0.3);
  color: #ff8c00;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
}
.urgency-cta:hover { background: rgba(255,140,0,0.25); }

/* ── ÇEREZ BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-text { flex: 1; }
.cookie-text strong { color: var(--cream); font-size: 14px; display: block; margin-bottom: 4px; }
.cookie-text p { font-size: 12px; color: var(--muted);  margin: 0;
  line-height: 1.5;
}

/* Premium Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 110px; /* Moved up for AI Bot */
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1a1a1a;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 90px; /* Moved up for AI Bot */
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px; }
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  font-family: var(--sans);
  transition: all 0.2s;
}
.cookie-btn.accept { background: var(--gold); color: var(--bg); font-weight: 500; }
.cookie-btn.accept:hover { background: var(--gold-l); }
.cookie-btn.reject { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.cookie-btn.reject:hover { border-color: var(--gold); color: var(--cream); }

/* ── EXIT INTENT POPUP ── */
.exit-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 400;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeInOverlay 0.3s ease;
}
.exit-overlay.show { display: flex; }
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exit-card {
  background: linear-gradient(145deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--gold);
  padding: 52px 48px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalIn 0.5s var(--ease);
}
.exit-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff4444, #ff6600);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 24px;
  animation: urgencyPulse 2s ease infinite;
}
.exit-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.exit-card h3 em { font-style: italic; color: var(--gold); }
.exit-card > p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

.exit-perks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.exit-perks span {
  font-size: 12px;
  color: var(--gold-l);
  background: var(--gold-dim);
  padding: 6px 14px;
  border: 1px solid var(--border);
}

.exit-cta-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--gold), #d4b35a);
  color: var(--bg);
  border: none;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  margin-bottom: 16px;
}
.exit-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }

.exit-trust {
  font-size: 12px;
  color: var(--muted);
}
.exit-trust .stars { color: #FCD34D; letter-spacing: 2px; }

/* ── GOOGLE REVIEWS ── */
.reviews-section { padding: 100px 52px; background: var(--bg); }

.reviews-wrap { max-width: 700px; margin: 0 auto; }

.reviews-slider {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
}
.reviews-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  width: 100%;
}
.review-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 40px;
  opacity: 0.3;
  transition: opacity 0.5s;
}
.review-card.active { opacity: 1; }

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-size: 15px; color: var(--cream); font-weight: 500; }
.review-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-meta { color: #FCD34D; }

.review-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.review-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.review-dot.active, .review-dot:hover { background: var(--gold); transform: scale(1.3); }

.reviews-google-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.reviews-google-link:hover { color: var(--gold-l); }

/* ── KVKK MODAL ── */
.kvkk-modal-card {
  max-width: 600px !important;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left !important;
}
.kvkk-content { margin-top: 20px; }
.kvkk-content h4 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  margin: 20px 0 8px;
  font-weight: 400;
}
.kvkk-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.kvkk-content ul {
  margin: 8px 0 16px 20px;
  list-style-type: disc;
}
.kvkk-content li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-kvkk {
  font-size: 11px;
  color: var(--muted) !important;
  text-decoration: underline !important;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-kvkk:hover { opacity: 1; color: var(--gold) !important; }

/* ── RESPONSIVE — Hunter ── */
@media (max-width: 900px) {
  .cookie-content { flex-direction: column; padding: 16px 20px; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .exit-card { padding: 36px 24px; }
  .exit-card h3 { font-size: 24px; }
  .exit-perks { gap: 8px; }
  .exit-perks span { font-size: 10px; padding: 4px 10px; }
  .reviews-section { padding: 60px 20px; }
  .review-card { padding: 24px; }
  .review-text { font-size: 15px; }

}

/* �� FOMO TIMER (VIP Modal) �� */
.fomo-container {
  margin: 20px 0;
  padding: 15px;
  background: rgba(229, 62, 62, 0.05);
  border: 1px solid rgba(229, 62, 62, 0.2);
  border-radius: 8px;
  text-align: center;
}
.fomo-header {
  color: #e53e3e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fomo-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.time-box {
  background: #e53e3e;
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(229, 62, 62, 0.2);
}
.time-box span {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--sans);
  line-height: 1;
}
.time-box small {
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}
.time-sep {
  color: #e53e3e;
  font-size: 24px;
  font-weight: bold;
}
.fomo-subtext {
  font-size: 13px;
  color: var(--muted);
    height: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* Semantic SEO Block - Visually Minimal */
.seo-semantic-content {
  padding: 20px 5%;
  background: #050505;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.seo-semantic-content article h2 {
  font-size: 12px;
  margin-bottom: 5px;
  color: rgba(201,168,76,0.3);
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
}
.seo-semantic-content article p {
  color: rgba(255,255,255,0.15);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}
.seo-semantic-content article strong {
  font-weight: normal;
}
.seo-semantic-content article a {
  color: rgba(201,168,76,0.5);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.seo-semantic-content article a:hover {
  color: #c9a84c;
  border-bottom-color: #c9a84c;
}
/* ─── YAŞAM HİKAYELERİ ─── */
#yasam-hikayeleri {
  width: 100%;
  background: #050505;
  padding: 80px 5%;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.story-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.3) 50%, rgba(201,168,76,0.05) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.story-card:hover .story-overlay {
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 50%, rgba(201,168,76,0.15) 100%);
}

.story-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
}

.story-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #c9a84c;
  margin-bottom: 15px;
}

.story-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.story-cta {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #c9a84c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.story-cta:hover {
  border-color: #c9a84c;
}

/* ─── SHOP THE ROOM (TASARIMLAR) HOTSPOT CSS ─── */
.designs-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.designs-carousel::-webkit-scrollbar {
  height: 8px;
}
.designs-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.designs-carousel::-webkit-scrollbar-thumb {
  background: rgba(201,168,76,0.6);
  border-radius: 10px;
}
.designs-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.room-card {
  position: relative;
  flex: 0 0 90%;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  scroll-snap-align: center;
}
.room-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img {
  transform: scale(1.02);
}
.hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: 0.3s;
}
.hotspot::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}
.hotspot:hover {
  background: var(--gold);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.2);
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.room-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.room-title {
  font-size: 28px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}
.room-desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  max-width: 400px;
}
.room-action-btn {
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(201,168,76,0.3);
}
.room-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.5);
}

/* Premium Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px; 
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-tooltip {
  position: absolute;
  left: 75px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: 100%;
  left: auto;
  top: 50%;
  margin-top: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent #1a1a1a transparent transparent;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
