/* FBM İnşaat — Frontend Theme
 * Converted from Next.js / Tailwind CSS
 * Design: Dark luxury, gold accents (#c4a97d)
 */

/* ─── Variables ─────────────────────────────── */
:root {
  --gold:       #c4a97d;
  --gold-dim:   rgba(196, 169, 125, 0.15);
  --gold-light: rgba(196, 169, 125, 0.3);
  --bg:         #0a0a0a;
  --bg-2:       #111111;
  --bg-3:       #1a1a1a;
  --bg-light:   #fafafa;
  --white:      #ffffff;
  --text:       #f5f5f5;
  --muted:      rgba(255, 255, 255, 0.5);
  --muted-30:   rgba(255, 255, 255, 0.3);
  --muted-10:   rgba(255, 255, 255, 0.1);
  --muted-06:   rgba(255, 255, 255, 0.06);
  --muted-04:   rgba(255, 255, 255, 0.04);
  --dark-text:  #0a0a0a;
  --dark-muted: rgba(10, 10, 10, 0.5);
  --ease-lux:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ─── Scroll Progress Bar ───────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background-color: var(--gold);
  z-index: 9999;
  transform-origin: left;
  transition: width 0.1s linear;
}

/* ─── Container ─────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════════════
   SITE HEADER — Fixed wrapper
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

/* ── Duyuru Bandı ─────────────────────────── */
.topbar--duyuru {
  display: none;
  overflow: hidden;
}
@media (min-width: 1024px) { .topbar--duyuru { display: block; } }
.topbar--duyuru .topbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.topbar-duyuru-text {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}
.topbar-duyuru-kapat {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.55;
  transition: opacity .15s;
  line-height: 1;
}
.topbar-duyuru-kapat:hover { opacity: 1; }

/* ── Main Navbar ──────────────────────────── */
.navbar {
  height: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: height 0.38s var(--ease-lux),
              background 0.38s,
              box-shadow 0.38s;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,169,125,0.28) 25%,
    rgba(196,169,125,0.28) 75%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.38s;
  pointer-events: none;
}
.navbar.scrolled {
  height: 4.375rem;
  background: rgba(5,4,3,0.97);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 1px 0 rgba(196,169,125,0.1), 0 12px 48px rgba(0,0,0,0.55);
}
.navbar.scrolled::after { opacity: 1; }
.navbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── Logo ─────────────────────────────────── */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-shrink: 0;
  text-decoration: none;
  outline-offset: 4px;
}
.navbar-logo-fbm {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: opacity 0.2s;
}
.navbar-logo-divider {
  display: block;
  width: 1px;
  height: 1.875rem;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
}
.navbar-logo-insaat {
  font-size: 0.5625rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1;
}
.navbar-logo:hover .navbar-logo-fbm { opacity: 0.85; }

/* ── Desktop Navigation ───────────────────── */
.navbar-nav-wrap { flex: 1; display: none; justify-content: center; }
.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

/* All nav links (a and button) */
.nav-link,
.nav-link-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.22s;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}
.nav-link::after,
.nav-link-btn::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem; right: 1rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--ease-lux);
}
.nav-link:hover,
.nav-link-btn:hover {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link-btn:hover::after {
  transform: scaleX(1);
}
.nav-link--active {
  color: var(--white);
}
.nav-link--active::after {
  transform: scaleX(1);
  background: var(--gold);
}
.nav-chevron {
  transition: transform 0.25s;
  opacity: 0.7;
}
.nav-item-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* ── Dropdown ─────────────────────────────── */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(7,6,5,0.98);
  border: 1px solid rgba(196,169,125,0.18);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  min-width: 280px;
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(196,169,125,0.05);
  transition: opacity 0.25s, transform 0.25s var(--ease-lux);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.5rem; left: 50%;
  transform: translateX(-50%);
  width: 0.75rem; height: 0.5rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--gold);
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Boşluk köprüsü — hover'ın kopmaması için */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1.5rem;
  right: -1.5rem;
  height: 0.875rem;
}
.nav-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,169,125,0.07);
  transition: background 0.2s;
}
.nav-dropdown-link:last-child { border-bottom: none; }
.nav-dropdown-link:hover { background: rgba(196,169,125,0.06); }
.nav-dropdown-icon {
  width: 2.125rem;
  height: 2.125rem;
  border: 1px solid rgba(196,169,125,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s;
}
.nav-dropdown-link:hover .nav-dropdown-icon { background: rgba(196,169,125,0.1); border-color: rgba(196,169,125,0.4); }
.nav-dropdown-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.nav-dropdown-hint {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-dropdown-group-header {
  padding: 0.5rem 1rem 0.375rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  pointer-events: none;
}
.nav-dropdown-img {
  width: 3.25rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 0.25rem;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-dropdown-link:hover .nav-dropdown-img { opacity: 1; }
.nav-dropdown-divider {
  height: 1px;
  background: rgba(196,169,125,0.1);
  margin: 0.25rem 0;
  pointer-events: none;
}

/* ── Desktop Actions ──────────────────────── */
.navbar-actions { display: none; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: color 0.22s;
  white-space: nowrap;
}
.navbar-phone:hover { color: rgba(255,255,255,0.8); }
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  background: linear-gradient(135deg, #c4a97d 0%, #b08850 100%);
  color: #120c00;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: opacity 0.22s, transform 0.2s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(196,169,125,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.navbar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.navbar-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(196,169,125,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.navbar-cta:active { transform: translateY(0); }

/* ── Hamburger Button ─────────────────────── */
.navbar-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.navbar-burger:hover { background: rgba(255,255,255,0.08); }
.burger-bar {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.32s var(--ease-lux), opacity 0.22s, width 0.22s;
}
.burger-bar:last-child { width: 70%; }
.navbar-burger[aria-expanded="true"] .burger-bar:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar-burger[aria-expanded="true"] .burger-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar-burger[aria-expanded="true"] .burger-bar:last-child {
  width: 100%;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(100vw, 420px);
  z-index: 200;
  background: #040403;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-lux);
  box-shadow: -24px 0 80px rgba(0,0,0,0.6);
}
.mobile-drawer[hidden] { display: flex; } /* keep flex, let transform hide */
.mobile-drawer.open { transform: translateX(0); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.4s;
}
.drawer-backdrop.visible {
  background: rgba(0,0,0,0.7);
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(196,169,125,0.1);
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.drawer-close {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.drawer-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.0625rem 1.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(196,169,125,0.07);
  transition: color 0.2s, background 0.2s;
  text-align: left;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.drawer-link:hover { color: var(--gold); background: rgba(196,169,125,0.04); }
.drawer-chevron {
  transition: transform 0.3s var(--ease-lux);
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.drawer-link-toggle[aria-expanded="true"] .drawer-chevron { transform: rotate(180deg); }
.drawer-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s var(--ease-lux);
  background: rgba(196,169,125,0.025);
  border-bottom: 1px solid rgba(196,169,125,0.07);
}
.drawer-sub.open { max-height: 320px; }
.drawer-sub-label {
  display: block;
  padding: 0.5rem 1.75rem 0.25rem 2.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  pointer-events: none;
}
.drawer-sub-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem 0.75rem 2.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(196,169,125,0.04);
}
.drawer-sub-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}
.drawer-sub-link:hover { color: var(--gold); }
.drawer-item-group { display: flex; flex-direction: column; }

.drawer-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(196,169,125,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.drawer-phone {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.drawer-phone svg { color: var(--gold); }
.drawer-phone:hover { color: rgba(255,255,255,0.7); }
.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
  background: linear-gradient(135deg, #c4a97d 0%, #b08850 100%);
  color: #120c00;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 16px rgba(196,169,125,0.3);
}
.drawer-cta:hover { opacity: 0.88; }

/* ── Footer logo reuse ──────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo .navbar-logo-fbm { font-size: 1.25rem; }
.footer-logo .navbar-logo-divider { height: 1.5rem; }
.footer-logo .navbar-logo-insaat { font-size: 0.5rem; letter-spacing: 0.3em; }
.footer-col-title { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 1rem; font-weight: 500; }

/* ── Responsive show/hide ─────────────────── */
@media (min-width: 1024px) {
  .navbar-nav-wrap { display: flex; }
  .navbar-actions  { display: flex; }
  .navbar-burger   { display: none; }
}

/* ─── Hero Section ───────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35);
  background-color: #1a0d10;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10,10,10,0.6), #0a0a0a);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 8rem;
  width: 100%;
}
.hero-inner { max-width: 48rem; }
.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gold-light);
  padding: 0.375rem 1rem;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.hero-availability {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.availability-dot {
  position: relative;
  display: flex;
  height: 0.625rem;
  width: 0.625rem;
}
.availability-dot .ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.availability-dot .dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.625rem;
  width: 0.625rem;
  background: var(--gold);
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.availability-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.availability-divider {
  width: 1px;
  height: 1rem;
  background: rgba(255,255,255,0.2);
}
.availability-bar {
  width: 7rem;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.availability-bar-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--gold);
  transition: width 1s ease-out;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  background: var(--gold);
  color: var(--dark-text);
  font-weight: 500;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: rgba(196,169,125,0.9); }
.btn-outline-gold {
  border: 1px solid rgba(196,169,125,0.5);
  color: var(--gold);
  font-weight: 500;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-gold:hover { background: var(--gold-dim); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
.hero-scroll span { color: rgba(255,255,255,0.3); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll svg { color: rgba(255,255,255,0.3); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Hero Carousel ───────────────────────────── */
.carousel-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Slide background */
.slide-bg {
  position: absolute;
  inset: 0;
}
.slide-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.38);
  transform: scale(1.05);
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-bg-img.zooming { transform: scale(1); }
.slide-bg--sahil { background-position: center 35%; }

/* Overlay tints */
.slide-overlay {
  position: absolute;
  inset: 0;
}
.slide-overlay--warm {
  background: linear-gradient(
    135deg,
    rgba(123,31,46,0.35) 0%,
    transparent 55%,
    rgba(10,10,10,0.75) 100%
  );
}
.slide-overlay--cool {
  background: linear-gradient(
    135deg,
    rgba(5,40,80,0.45) 0%,
    transparent 55%,
    rgba(10,10,10,0.8) 100%
  );
}

/* Slide content wrapper */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}
.slide-content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 8rem;
  width: 100%;
}

/* Per-element entrance animations — initial state set by JS only */
.slide-el { will-change: opacity, transform; }

/* Slide 2: blue accents */
.hero-badge--blue {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.3);
}
.em--blue { color: #7dd3fc; }
.btn-primary--blue {
  background: #0e5fa8;
  color: #fff;
}
.btn-primary--blue:hover { background: #1a75c5; }
.btn-outline--blue {
  border-color: rgba(125, 211, 252, 0.35);
  color: #7dd3fc;
}
.btn-outline--blue:hover { background: rgba(125, 211, 252, 0.08); }

/* Highlights strip (slide 2) */
.slide-highlights {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.slide-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.slide-highlight-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: #7dd3fc;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.slide-highlight-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.slide-highlight-sep {
  width: 1px;
  height: 2.25rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Navigation arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.carousel-arrow:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
  color: #fff;
}
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }
@media (max-width: 639px) {
  .carousel-arrow { display: none; }
}

/* UI panel: progress + dots + counter */
.carousel-ui {
  position: absolute;
  bottom: 4.5rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}
.carousel-progress-bar {
  width: 3.5rem;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.carousel-progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.carousel-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s, width 0.35s;
}
.carousel-dot.active {
  background: var(--gold);
  width: 1.375rem;
}
.carousel-counter {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  display: flex;
  gap: 0.25rem;
}
.carousel-counter-cur   { color: var(--gold); font-weight: 600; }
.carousel-counter-sep   { color: rgba(255,255,255,0.2); }
.carousel-counter-total { color: rgba(255,255,255,0.35); }

/* ─── Section Base ───────────────────────────── */
.section { padding: 7rem 0; }
@media (min-width: 768px) { .section { padding: 9rem 0; } }
.section-dark   { background-color: var(--bg); }
.section-dark-2 { background-color: var(--bg-2); }
.section-light  { background-color: var(--bg-light); }

/* ─── Section Title ──────────────────────────── */
.section-title { margin-bottom: 4rem; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title-label {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}
.section-title.light h2 { color: var(--dark-text); }
.section-title h2 em { font-style: normal; color: var(--gold); }
.section-title p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 1rem;
  max-width: 36rem;
}
.section-title.light p { color: var(--dark-muted); }
.section-title.center p { margin-left: auto; margin-right: auto; }

/* ─── Divider ────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
}
.gold-divider-line { height: 1px; width: 5rem; background: rgba(196,169,125,0.3); flex: 0 0 5rem; }
.gold-divider-dot { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* ─── Stats Row ──────────────────────────────── */
.stats-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
@media (min-width: 768px) { .stats-row { gap: 5rem; } }
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 2rem; font-weight: 300; color: var(--dark-text); }
@media (min-width: 768px) { .stat-value { font-size: 2.5rem; } }
.stat-label {
  display: block;
  color: rgba(10,10,10,0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ─── Blocks Section ─────────────────────────── */
.blocks-grid { display: grid; gap: 1.25rem; margin-top: 1rem; }
@media (min-width: 768px) { .blocks-grid { grid-template-columns: 1fr 1fr; } }
.block-card {
  border: 1px solid var(--muted-06);
  padding: 2rem 2.5rem;
  transition: transform 0.25s var(--ease-lux), border-color 0.25s;
}
.block-card:hover { transform: translateY(-4px); border-color: var(--gold-light); }
.block-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.block-card-name { color: var(--white); font-size: 1.25rem; font-weight: 500; }
.block-card-count { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-top: 0.25rem; }
.block-card-letter { color: rgba(196,169,125,0.3); font-size: 3.5rem; font-weight: 300; line-height: 1; }
.block-card-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.75; margin-bottom: 2rem; }
.block-units { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.block-unit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 0.75rem 1rem;
}
.block-unit-type { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; }
.block-unit-count { color: var(--gold); font-size: 0.875rem; }
.block-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  transition: gap 0.2s;
}
.block-link:hover { gap: 0.75rem; }
.block-all-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: rgba(196,169,125,0.5); color: var(--gold); }

/* ─── Fark Yaratan Detaylar ──────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .diff-grid { grid-template-columns: repeat(6, 1fr); }
}
.diff-card {
  background: var(--bg-2);
  padding: 2rem 1.625rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.25s;
  position: relative;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.625rem;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  transition: width 0.3s, opacity 0.3s;
}
.diff-card:hover { background: rgba(255,255,255,0.035); }
.diff-card:hover::before { width: 3rem; opacity: 1; }
.diff-card-icon {
  color: var(--gold);
  opacity: 0.8;
  margin-top: 0.25rem;
}
.diff-card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.diff-card-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

/* ─── Teknoloji & Yapay Zeka ─────────────────── */
.tech-header {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}
.tech-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}
.tech-heading em { font-style: normal; color: var(--gold); }
.tech-subheading {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 36rem;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .tech-grid { grid-template-columns: 1fr 1fr; }
}
.tech-card {
  display: flex;
  gap: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem;
  transition: border-color 0.25s, background 0.25s;
}
.tech-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(196,169,125,0.25);
}
.tech-card-icon-wrap {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,169,125,0.08);
  border: 1px solid rgba(196,169,125,0.15);
  color: var(--gold);
  border-radius: 0.5rem;
}
.tech-card-body { display: flex; flex-direction: column; gap: 0.5rem; }
.tech-card-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.tech-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}
.tech-card-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

/* ─── Social Life Section ────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); } }
.amenity-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.amenity-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-lux);
  will-change: transform;
}
.amenity-card:hover .amenity-bg { transform: scale(1.05); }
.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}
.amenity-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.amenity-title { color: var(--white); font-weight: 500; font-size: 1rem; }
.amenity-desc { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 0.125rem; }
.amenity-note {
  text-align: center;
  color: rgba(10,10,10,0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2rem;
}

/* ─── Why Rows ───────────────────────────────── */
.why-rows {
  margin-top: 3.5rem;
}
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-row:last-child { border-bottom: none; }
.why-row-num {
  font-size: 2.25rem;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  min-width: 2.75rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  padding-top: 0.125rem;
}
.why-row-body { flex: 1; }
.why-row-title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.why-row-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 480px) {
  .why-row { gap: 1.5rem; }
  .why-row-num { font-size: 1.75rem; min-width: 2rem; }
}

/* ─── Security Section ───────────────────────── */
.security-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .security-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.security-counter { display: block; font-size: clamp(4rem, 12vw, 9rem); font-weight: 300; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.security-counter-label { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 0.5rem; margin-bottom: 1rem; display: block; }
.security-counter-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.75; max-width: 24rem; }
.security-features { display: flex; flex-direction: column; }
.security-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--muted-06);
  transition: background 0.2s;
}
.security-feature:hover { background: rgba(255,255,255,0.02); }
.security-feature-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.security-feature-title { color: var(--white); font-size: 0.875rem; font-weight: 500; }
.security-feature-desc { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 0.25rem; line-height: 1.6; }

/* ─── Technical Section ──────────────────────── */
.technical-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.itu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.1);
  background: var(--white);
  padding: 2rem 3rem;
}
.itu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.itu-card-inner { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .itu-card-inner { flex-direction: row; align-items: flex-start; gap: 4rem; } }
.itu-logo {
  width: 6rem; height: 6rem;
  border: 1px solid rgba(10,10,10,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.itu-logo-text { color: rgba(10,10,10,0.2); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; line-height: 1.5; }
.itu-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}
.itu-title { color: var(--dark-text); font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 300; margin-bottom: 1rem; }
.itu-divider { width: 3rem; height: 2px; background: rgba(196,169,125,0.4); margin-bottom: 1rem; }
.itu-desc { color: rgba(10,10,10,0.5); font-size: 0.875rem; line-height: 1.75; max-width: 36rem; }
.tech-cards { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .tech-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .tech-cards { grid-template-columns: repeat(4, 1fr); } }
.tech-cards .tech-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(10,10,10,0.08);
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s;
}
.tech-cards .tech-card:hover { transform: translateY(-3px); border-color: rgba(196,169,125,0.3); }
.tech-cards .tech-card-icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.tech-cards .tech-card-title { color: var(--dark-text); font-weight: 500; font-size: 1rem; margin-bottom: 0.5rem; }
.tech-cards .tech-card-desc { color: rgba(10,10,10,0.4); font-size: 0.875rem; line-height: 1.55; }

/* ─── Why Us Section ─────────────────────────── */
.why-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  position: relative;
  background: var(--bg-2);
  padding: 2rem 2.5rem;
  overflow: hidden;
  transition: background 0.2s;
}
.why-card:hover { background: #161616; }
.why-card-bg-num {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5.5rem;
  font-weight: 300;
  color: rgba(196,169,125,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.2s;
}
.why-card:hover .why-card-bg-num { color: rgba(196,169,125,0.07); }
.why-card-num {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.why-card-title { color: var(--white); font-size: 1.125rem; font-weight: 500; margin-bottom: 0.75rem; line-height: 1.3; }
.why-card-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.75; }

/* ─── Inquiry Section ────────────────────────── */
.inquiry-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .inquiry-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }
.contact-bottom-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .contact-bottom-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.inquiry-label { display: block; color: var(--gold); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.inquiry-title { font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 300; color: var(--white); line-height: 1.25; margin-bottom: 1.5rem; }
.inquiry-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.75; margin-bottom: 2.5rem; }
.inquiry-contacts { display: flex; flex-direction: column; gap: 1.25rem; }
.inquiry-contact-item { display: flex; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.inquiry-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.inquiry-contact-item a:hover { color: var(--white); }
.inquiry-form-wrap {
  border: 1px solid var(--muted-06);
  padding: 2rem 2.5rem;
}
.inquiry-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 0.375rem; }
.input-underline {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 0.75rem 0;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  font-size: 0.875rem;
}
.input-underline::placeholder { color: rgba(255,255,255,0.3); }
.input-underline:focus { border-bottom-color: var(--gold); }
select.input-underline option { background: #111111; color: var(--text); }
.form-error { color: #f87171; font-size: 0.75rem; margin-top: 0.25rem; }
.kvkk-wrap { display: flex; align-items: flex-start; gap: 0.75rem; }
.kvkk-wrap input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.kvkk-text { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.6; }
.kvkk-text a { color: var(--gold); }
.kvkk-text a:hover { text-decoration: underline; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark-text);
  font-weight: 500;
  padding: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-submit:hover { background: rgba(196,169,125,0.9); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
}
.form-success svg { color: var(--gold); margin-bottom: 1.25rem; }
.form-success h3 { color: var(--white); font-size: 1.25rem; font-weight: 300; margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

/* ─── Footer CTA Section ─────────────────────── */
.footer-cta { background: var(--gold); padding: 6rem 0 8rem; }
.footer-cta-inner { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.footer-cta-label {
  display: block;
  color: rgba(10,10,10,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer-cta-title { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 300; color: var(--dark-text); line-height: 1.15; }
.footer-cta-title-muted { opacity: 0.6; }
.footer-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2.5rem 0; }
.btn-dark {
  background: var(--dark-text);
  color: var(--white);
  font-weight: 500;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn-dark:hover { background: rgba(10,10,10,0.8); }
.btn-outline-dark {
  border: 1px solid rgba(10,10,10,0.3);
  color: var(--dark-text);
  font-weight: 500;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: border-color 0.2s;
}
.btn-outline-dark:hover { border-color: rgba(10,10,10,0.6); }
.live-indicator { display: inline-flex; align-items: center; gap: 0.625rem; }
.live-dot { position: relative; display: flex; height: 0.5rem; width: 0.5rem; }
.live-dot .ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: rgba(10,10,10,0.5);
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.live-dot .dot { position: relative; display: inline-flex; border-radius: 50%; height: 0.5rem; width: 0.5rem; background: rgba(10,10,10,0.7); }
.live-text { color: rgba(10,10,10,0.6); font-size: 0.75rem; letter-spacing: 0.05em; }

/* ─── Footer ─────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--muted-06); }
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-main { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }
.footer-brand-name { color: var(--white); }
.footer-brand-sub { color: var(--gold); font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; }
.footer-brand-desc { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.75; margin-top: 1rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social-btn {
  width: 2rem; height: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.footer-col h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-hours { color: rgba(255,255,255,0.3); font-size: 0.75rem; margin-top: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.25rem 1.5rem;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-copyright { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: rgba(255,255,255,0.25); font-size: 0.75rem; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }


/* ─── WhatsApp Float ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ─── Scroll Animations ──────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-lux), transform 0.7s var(--ease-lux);
}
[data-animate="fade-up"]    { transform: translateY(24px); }
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="scale-in"]   { transform: scale(0.96); }
[data-animate].animated    { opacity: 1; transform: none; }

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ─── Page Header (inner pages) ─────────────── */
.page-header {
  position: relative;
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.page-header-tall { padding: 10rem 1.5rem 6rem; }
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.92));
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0.5rem 0 0.75rem;
}
.page-header p { color: var(--muted); font-size: 1rem; }

/* ─── Project Cards (Projeler page) ─────────── */
.project-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px)  { .project-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .project-cards { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  overflow: hidden;
  transition: transform 0.3s var(--ease-lux), box-shadow 0.3s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.project-card-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.project-card-img-dark { background: linear-gradient(135deg, #1a1a1a 0%, #111 100%); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
}
.project-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  z-index: 1;
}
.project-card-badge-active { background: var(--gold); color: #0a0a0a; }
.project-card-badge-soon { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.project-card-body { padding: 1.5rem; }
.project-card-title { font-size: 1.25rem; font-weight: 400; margin-bottom: 0.5rem; }
.project-card-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gold);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}
.project-card-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.25rem; }
.project-card-stats { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; }
.project-stat-val { display: block; font-size: 1.5rem; font-weight: 300; color: var(--white); }
.project-stat-label { font-size: 0.6875rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.2s;
}
.project-card-link:hover { gap: 0.75rem; }
.project-card-soon-text { color: rgba(255,255,255,0.25); font-size: 0.875rem; font-style: italic; }
.project-card-type-tag {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
}

/* ─── Daire Filter & Cards ───────────────────── */
.daire-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  margin-bottom: 2rem;
}
.filter-group { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.filter-label { color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid var(--muted-10);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { color: var(--white); border-color: var(--muted-30); }
.filter-btn.active { background: var(--gold); color: var(--dark-text); border-color: var(--gold); font-weight: 500; }
.filter-results-count { color: var(--muted); font-size: 0.8125rem; margin-bottom: 1.5rem; }
.daire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.daire-card {
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.daire-card:hover { border-color: rgba(196,169,125,0.2); transform: translateY(-2px); }
.daire-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--muted-06);
}
.daire-no { font-size: 1rem; font-weight: 500; letter-spacing: 0.05em; color: var(--white); display: flex; align-items: center; gap: 0.5rem; }
.daire-no-badge { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(196,169,125,0.18); color: var(--gold); border: 1px solid rgba(196,169,125,0.4); border-radius: 4px; padding: 0.15em 0.5em; line-height: 1.6; }
.daire-card--dukkan { border-color: rgba(196,169,125,0.25); }
.daire-status {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
}
.daire-status-musait  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.daire-status-rezerve { background: rgba(251,191,36,0.15); color: #fbbf24; }
.daire-status-satildi { background: rgba(239,68,68,0.12);  color: #f87171; }
.daire-card-body { padding: 0.875rem 1rem; }
.daire-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--muted-04);
}
.daire-info-row:last-child { border-bottom: none; }
.daire-info-label { font-size: 0.75rem; color: var(--muted); }
.daire-info-value { font-size: 0.8125rem; color: var(--white); }
.daire-card-footer { padding: 0.75rem 1rem; border-top: 1px solid var(--muted-06); }
.daire-inquire-btn {
  display: block;
  text-align: center;
  padding: 0.5rem;
  background: var(--gold);
  color: var(--dark-text);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s;
}
.daire-inquire-btn:hover { background: rgba(196,169,125,0.85); }

/* ─── Kiralık Cards ──────────────────────────── */
.kiralik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.kiralik-card {
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.kiralik-card:hover { transform: translateY(-3px); border-color: rgba(196,169,125,0.2); }
.kiralik-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--muted-04);
}
.kiralik-tip { font-size: 1.125rem; font-weight: 500; color: var(--white); margin-right: 0.5rem; }
.kiralik-blok { font-size: 0.8125rem; color: var(--muted); }
.kiralik-badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}
.kiralik-card-body { padding: 1rem 1.25rem; }
.kiralik-detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.kiralik-ozellikler { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.kiralik-oz-tag {
  font-size: 0.6875rem;
  color: var(--muted);
  border: 1px solid var(--muted-10);
  padding: 0.2rem 0.5rem;
}
.kiralik-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--muted-06);
}
.kiralik-fiyat { display: flex; align-items: baseline; gap: 0.25rem; }
.kiralik-fiyat-val { font-size: 1.125rem; font-weight: 500; color: var(--gold); }
.kiralik-fiyat-label { font-size: 0.75rem; color: var(--muted); }

/* ─── Kat Planı ──────────────────────────────── */
.floor-plan-wrap {
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  padding: 2rem;
  margin-bottom: 1rem;
}
.floor-plan-diagram {}
.floor-plan-corridor { background: var(--muted-04); padding: 1.5rem; }
.floor-plan-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}
.floor-plan-units { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.floor-plan-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: var(--bg-3);
  border: 1px solid rgba(196,169,125,0.2);
  min-width: 80px;
  gap: 0.25rem;
}
.floor-plan-unit-large { min-width: 100px; }
.floor-plan-unit-small { min-width: 80px; background: var(--bg-2); border-color: var(--muted-10); }
.floor-plan-unit-no { font-size: 0.875rem; font-weight: 500; color: var(--gold); }
.floor-plan-unit-type { font-size: 0.75rem; color: var(--white); }
.floor-plan-unit-area { font-size: 0.6875rem; color: var(--muted); }
.floor-plan-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--muted-06);
}
.floor-plan-legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--muted); }
.floor-plan-legend-dot { width: 12px; height: 12px; flex-shrink: 0; }
.katplan-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.katplan-type-card {
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  padding: 1.5rem;
}
.katplan-type-blok {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.katplan-type-stats { display: flex; flex-direction: column; gap: 0.5rem; }
.katplan-type-stats > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--muted-04);
}
.katplan-type-stats strong { color: var(--white); font-weight: 400; }

/* ─── About page ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.about-value-card {
  background: var(--bg-3);
  border: 1px solid var(--muted-06);
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.about-value-card:hover { border-color: rgba(196,169,125,0.2); transform: translateY(-3px); }
.about-value-icon { margin-bottom: 1rem; }
.about-value-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.625rem; }
.about-value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── Founder (Kurucumuz) section ─────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .founder-grid { grid-template-columns: 280px 1fr; gap: 4rem; } }
.founder-photo { border-radius: 1rem; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.founder-photo img { width: 100%; display: block; object-fit: cover; aspect-ratio: 1/1; }
.founder-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid #c4a97d;
  background: rgba(196,169,125,0.06);
  border-radius: 0 0.75rem 0.75rem 0;
}
.founder-quote cite {
  display: block;
  font-size: 1.375rem;
  font-weight: 600;
  color: #0a0a0a;
  font-style: normal;
  line-height: 1.4;
}
.founder-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.founder-bullets li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: rgba(10,10,10,0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.founder-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.775rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4a97d;
}

/* ─── Legal pages (KVKK / Gizlilik) ─────────── */
.legal-content {
  padding: 1rem 0 3rem;
  color: rgba(10,10,10,0.7);
  line-height: 1.75;
}
.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.375rem; }
.legal-content a { color: #b8936a; text-decoration: underline; }
.legal-content strong { color: #0a0a0a; font-weight: 600; }

/* ─── Biz Sizi Arayalım Landing Page ─────────── */
.bizi-arayin-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.bizi-arayin-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bizi-arayin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.95) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.bizi-arayin-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) { .bizi-arayin-content { grid-template-columns: 1fr 1fr; } }
.bizi-arayin-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0.75rem 0 1.25rem;
}
.bizi-arayin-title em { font-style: normal; color: var(--gold); }
.bizi-arayin-desc { color: var(--muted); line-height: 1.75; font-size: 1rem; margin-bottom: 2rem; max-width: 440px; }
.bizi-arayin-features { display: flex; flex-direction: column; gap: 0.875rem; }
.bizi-arayin-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.bizi-arayin-feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(196,169,125,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* Form card */
.bizi-arayin-form-card {
  background: rgba(255,255,255,0.97);
  padding: 2.5rem 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.bizi-arayin-form-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 0.375rem;
}
.bizi-arayin-form-subtitle { font-size: 0.875rem; color: rgba(10,10,10,0.5); margin-bottom: 1.75rem; }
.ba-form-group { margin-bottom: 1.25rem; }
.ba-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(10,10,10,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.ba-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #f8f8f8;
  color: #0a0a0a;
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.ba-input:focus { border-color: #b8936a; background: #fff; }
.ba-project-btns { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.ba-project-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ba-project-btn input { display: none; }
.ba-project-btn span {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  border: 1.5px solid rgba(0,0,0,0.15);
  color: rgba(10,10,10,0.6);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.ba-project-btn input:checked + span {
  background: #b8936a;
  border-color: #b8936a;
  color: #fff;
  font-weight: 500;
}
.ba-select-wrap { position: relative; }
.ba-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #f8f8f8;
  color: #0a0a0a;
  font-size: 0.9375rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.ba-select:focus { border-color: #b8936a; }
.ba-kvkk {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(10,10,10,0.55);
  line-height: 1.5;
}
.ba-kvkk input { margin-top: 0.2rem; accent-color: #b8936a; flex-shrink: 0; }
.ba-kvkk a { color: #b8936a; text-decoration: underline; }
.ba-submit {
  width: 100%;
  padding: 0.9375rem;
  background: #b8936a;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  box-shadow: 0 6px 20px rgba(184,147,106,0.3);
}
.ba-submit:hover { background: #a67f58; transform: translateY(-1px); }
.ba-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── Coming Soon (FBM Sahil) ────────────────── */
.coming-soon-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.coming-soon-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.85);
  z-index: 1;
}
.coming-soon-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
}
.coming-soon-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  margin: 0.75rem 0 1rem;
  color: var(--white);
}
.coming-soon-subtitle { color: var(--muted); font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; }
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(196,169,125,0.25);
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
}

/* ================================================================
   KAT PLANI BİLEŞENİ  (DaireKatPlani) — SVG Floor Plan
   ================================================================ */

.kplan-wrap { padding: 1rem 0 2.5rem; }

/* Geri butonu */
.kplan-back-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color 0.2s;
}
.kplan-back-btn:hover { color: var(--gold); }

/* Adım başlığı */
.kplan-step-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 1.5rem 0 2rem;
}

/* ── Adım 1: Blok seçimi ─────────────────────── */
.kplan-step--blok { text-align: center; padding: 2.5rem 0; }
.kplan-blok-btns  { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.kplan-blok-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  width: 170px; padding: 2rem 1.5rem 1.75rem;
  border: 1px solid rgba(196,169,125,0.2); border-radius: 1.5rem;
  background: rgba(196,169,125,0.04); cursor: pointer;
  transition: border-color .22s, background .22s, transform .22s;
}
.kplan-blok-btn:hover { border-color: var(--gold); background: rgba(196,169,125,0.1); transform: translateY(-3px); }
.kplan-blok-letter { font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.kplan-blok-name   { font-size: 0.875rem; font-weight: 500; color: var(--white); }
.kplan-blok-sub    { font-size: 0.68rem; color: var(--muted); }

/* ── Adım 2: Kat seçimi ──────────────────────── */
.kplan-step--kat { text-align: center; padding: 1.5rem 0; display: flex; flex-direction: column; align-items: center; }

.kplan-kat-btns {
  display: flex; flex-direction: column; gap: 0;
  width: 220px;
  border: 1px solid rgba(196,169,125,0.3);
  border-radius: 0;
  overflow: hidden;
}

.kplan-kat-btn {
  display: flex; flex-direction: row; align-items: center; gap: 0.5rem;
  width: 100%; padding: 0.8rem 1.5rem;
  border: none; border-radius: 0;
  border-bottom: 1px solid rgba(196,169,125,0.15);
  background: rgba(196,169,125,0.04); cursor: pointer;
  transition: background .2s;
}
.kplan-kat-btn:last-child { border-bottom: none; }
.kplan-kat-btn:hover { background: rgba(196,169,125,0.16); }
.kplan-kat-no    { font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1; min-width: 1.5rem; text-align: right; }
.kplan-kat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.03em; }


/* ── Adım 3: Header ──────────────────────────── */
.kplan-step--plan { padding-top: 0.25rem; }
.kplan-plan-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.kplan-breadcrumb  { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.kplan-breadcrumb strong { color: var(--white); font-weight: 500; }
.kplan-bc-sep { color: var(--gold); font-size: 0.9rem; }

/* ── SVG Kat Şeması ──────────────────────────── */
.kplan-svg-wrap {
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
}
.kplan-svg-wrap--a {
  max-width: 420px;
}
.kplan-svg-wrap--a .kplan-svg {
  max-height: 72vh;
  width: auto;
  min-width: unset;
  display: block;
  margin: 0 auto;
}
.kplan-svg {
  width: 100%;
  height: auto;
  display: block;
  min-width: 576px;
}

/* Koridor arka plan */
.kplan-svg-corridor-bg  { fill: rgba(255,255,255,0.025); }
.kplan-svg-corridor-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 7px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  fill: rgba(255,255,255,0.13);
}

/* Yön etiketleri */
.kplan-svg-dir {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  fill: #c4a97d;
}

/* Daire path (SVG <path> elemanı) */
.kplan-path {
  stroke-width: 1.2;
  transition: fill .2s, stroke .2s;
}

/* Durum renkleri – path */
.kplan-g--musait  .kplan-path { fill: rgba(34,197,94,0.10);   stroke: rgba(34,197,94,0.35); }
.kplan-g--rezerve .kplan-path { fill: rgba(251,191,36,0.09);  stroke: rgba(251,191,36,0.28); }
.kplan-g--satildi .kplan-path { fill: rgba(255,255,255,0.02); stroke: rgba(255,255,255,0.09); }
.kplan-g--kirada  .kplan-path { fill: rgba(45,212,191,0.09);  stroke: rgba(45,212,191,0.28); }

/* Hover */
.kplan-g { cursor: pointer; }
.kplan-g--satildi { cursor: default; }
.kplan-g--musait:hover  .kplan-path { fill: rgba(34,197,94,0.20);   stroke: rgba(34,197,94,0.55); }
.kplan-g--rezerve:hover .kplan-path { fill: rgba(251,191,36,0.18);  stroke: rgba(251,191,36,0.45); }
.kplan-g--kirada:hover  .kplan-path { fill: rgba(45,212,191,0.18);  stroke: rgba(45,212,191,0.45); }

/* Seçili daire */
.kplan-g--sel.kplan-g--musait  .kplan-path { fill: rgba(34,197,94,0.26);   stroke: #22c55e; stroke-width: 2; }
.kplan-g--sel.kplan-g--rezerve .kplan-path { fill: rgba(251,191,36,0.22);  stroke: #fbbf24; stroke-width: 2; }
.kplan-g--sel.kplan-g--satildi .kplan-path { fill: rgba(255,255,255,0.06); stroke: rgba(255,255,255,0.3); stroke-width: 2; }
.kplan-g--sel.kplan-g--kirada  .kplan-path { fill: rgba(45,212,191,0.22);  stroke: #2dd4bf; stroke-width: 2; }

/* SVG metin katmanları */
.kplan-txt-no {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 700;
  fill: rgba(255,255,255,0.92);
  text-anchor: middle; pointer-events: none;
}
.kplan-g--satildi .kplan-txt-no { fill: rgba(255,255,255,0.35); }
.kplan-g--kirada  .kplan-txt-no { fill: rgba(255,255,255,0.75); }

.kplan-txt-status {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-anchor: middle; pointer-events: none;
}
.kplan-g--musait  .kplan-txt-status { fill: #4ade80; }
.kplan-g--rezerve .kplan-txt-status { fill: #fbbf24; }
.kplan-g--satildi .kplan-txt-status { fill: rgba(255,255,255,0.22); }
.kplan-g--kirada  .kplan-txt-status { fill: #2dd4bf; }

.kplan-txt-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  fill: #c4a97d;
  text-anchor: middle; pointer-events: none;
}

/* ── Legend ──────────────────────────────────── */
.kplan-legend {
  display: flex; gap: 1.75rem;
  justify-content: center; align-items: center;
  padding: 1rem 1rem 0.25rem;
}
.kplan-legend-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.65rem; color: rgba(255,255,255,0.38); letter-spacing: 0.03em;
}
.kplan-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.kplan-legend-dot--musait  { background: #22c55e; }
.kplan-legend-dot--rezerve { background: #fbbf24; }
.kplan-legend-dot--satildi { background: rgba(255,255,255,0.22); }
.kplan-legend-dot--kirada  { background: #2dd4bf; }

/* ── Seçili Daire Paneli ─────────────────────── */
.kplan-panel {
  max-width: 900px;
  margin: 1.25rem auto 0;
  border: 1px solid rgba(196,169,125,0.22);
  border-radius: 1rem;
  background: rgba(196,169,125,0.05);
  overflow: hidden;
  animation: kplanPanelIn .2s ease;
}
@keyframes kplanPanelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.kplan-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(196,169,125,0.12);
}
.kplan-panel-no {
  font-size: 1.125rem; font-weight: 600;
  color: var(--white); margin-right: 0.75rem;
}
.kplan-panel-badge {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2em 0.6em; border-radius: 4px;
}
.kplan-panel-badge--musait  { background: rgba(34,197,94,0.15);   color: #4ade80; }
.kplan-panel-badge--rezerve { background: rgba(251,191,36,0.15);  color: #fbbf24; }
.kplan-panel-badge--satildi { background: rgba(255,255,255,0.06);  color: rgba(255,255,255,0.4); }
.kplan-panel-badge--kirada  { background: rgba(45,212,191,0.12);   color: #2dd4bf; }

.kplan-panel-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.35); padding: 0.25rem;
  transition: color .2s;
}
.kplan-panel-close:hover { color: var(--white); }

.kplan-panel-body {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0; padding: 0.5rem 0.75rem;
}
.kplan-panel-row {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.6rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.kplan-panel-row:last-child { border-right: none; }
.kplan-panel-row span { font-size: 0.65rem; color: var(--muted); }
.kplan-panel-row strong { font-size: 0.875rem; color: var(--white); font-weight: 500; }
.kplan-panel-row--price strong { color: var(--gold); font-size: 1rem; }

.kplan-panel-features {
  padding: 0.75rem 1.25rem 0.875rem;
  border-top: 1px solid var(--muted-10);
}
.kplan-panel-features-title {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.625rem;
}
.kplan-panel-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem 0;
}
.kplan-panel-features-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  padding: 0.15rem 0;
}
.kplan-panel-features-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.kplan-panel-footer {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid rgba(196,169,125,0.12);
}
.kplan-panel-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #25d366; color: #fff;
  font-size: 0.8125rem; font-weight: 500;
  border-radius: 0.5rem;
  transition: background .2s;
}
.kplan-panel-wa:hover { background: #1da851; color: #fff; }
.kplan-panel-gallery-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(196,169,125,0.3);
  background: transparent;
  color: var(--gold); font-size: 0.8125rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.kplan-panel-gallery-btn:hover,
.kplan-panel-gallery-btn.active { background: rgba(196,169,125,0.1); border-color: rgba(196,169,125,0.5); }

/* Gallery section */
.kplan-gallery {
  margin-top: 1rem;
  background: rgba(10,10,10,0.03);
  border: 1px solid rgba(196,169,125,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.kplan-gallery-header {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(10,10,10,0.7);
  border-bottom: 1px solid rgba(196,169,125,0.1);
}
.kplan-gallery-header svg { color: var(--gold); flex-shrink: 0; }
.kplan-gallery-header span { flex: 1; }
.kplan-gallery-close {
  background: none; border: none; cursor: pointer;
  color: rgba(10,10,10,0.4); padding: 0.25rem;
  border-radius: 0.25rem; transition: color .2s;
}
.kplan-gallery-close:hover { color: rgba(10,10,10,0.8); }
.kplan-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 4px;
  padding: 0.75rem;
}
.kplan-gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.375rem;
  cursor: pointer;
  border: none;
  padding: 0;
  background: rgba(196,169,125,0.07);
  transition: transform .2s, opacity .2s;
}
.kplan-gallery-thumb:hover { transform: scale(1.03); opacity: 0.9; }
.kplan-gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.kplan-gallery-empty {
  padding: 2rem; text-align: center;
  color: rgba(10,10,10,0.45); font-size: 0.875rem;
}

/* Lightbox */
.kplan-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  gap: 1rem;
  flex-direction: row;
  padding: 4rem 1rem 1rem;
}
.kplan-lightbox.open { display: flex; }
.kplan-lightbox-stage {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.875rem;
  max-width: calc(100vw - 8rem);
  flex: 1 1 auto;
  min-width: 0;
}
.kplan-lightbox-stage img {
  max-width: 100%; max-height: 68vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  display: block;
  cursor: default;
}
.kplan-lightbox-thumbs {
  display: flex; gap: 0.5rem; flex-wrap: nowrap;
  overflow-x: auto; overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.kplan-lightbox-thumbs::-webkit-scrollbar { height: 4px; }
.kplan-lightbox-thumbs::-webkit-scrollbar-track { background: transparent; }
.kplan-lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.kplan-lb-thumb {
  flex: 0 0 auto;
  width: 64px; height: 48px;
  border-radius: 0.3rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity .2s, border-color .2s;
  cursor: pointer;
  padding: 0;
  background: #222;
}
.kplan-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kplan-lb-thumb:hover { opacity: 0.8; }
.kplan-lb-thumb.active { border-color: var(--gold); opacity: 1; }
.kplan-lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: #fff; width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s;
  z-index: 1;
}
.kplan-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.kplan-lightbox-prev,
.kplan-lightbox-next {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; cursor: pointer;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 1;
  align-self: center;
}
.kplan-lightbox-prev:hover,
.kplan-lightbox-next:hover { background: rgba(255,255,255,0.18); }
.kplan-lightbox-counter {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.45); font-size: 0.8rem; letter-spacing: 0.06em;
  pointer-events: none;
}
@media (max-width: 600px) {
  .kplan-lightbox { padding: 3.5rem 0.5rem 1rem; gap: 0.5rem; }
  .kplan-lightbox-prev,
  .kplan-lightbox-next { width: 2.25rem; height: 2.25rem; }
  .kplan-lightbox-stage { max-width: calc(100vw - 5.5rem); }
  .kplan-lightbox-stage img { max-height: 55vh; }
  .kplan-lb-thumb { width: 52px; height: 40px; }
}

/* Responsive */
@media (max-width: 640px) {
  .kplan-kat-btns, .kplan-bina-zemin { width: 180px; }
  .kplan-blok-btn { width: 145px; }
  .kplan-panel-body { grid-template-columns: repeat(2, 1fr); }
  .kplan-panel-features-list { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Cookie Consent Banner ──────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: rgba(5,4,3,0.97);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid rgba(196,169,125,0.18);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.55);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1), opacity 0.42s ease;
  will-change: transform, opacity;
}
.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.cookie-banner--hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-banner-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,169,125,0.1);
  border: 1px solid rgba(196,169,125,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner-text {
  flex: 1;
  min-width: 0;
}
.cookie-banner-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 0.2rem;
}
.cookie-banner-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.cookie-banner-desc a {
  color: #c4a97d;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(196,169,125,0.4);
}
.cookie-banner-desc a:hover { text-decoration-color: #c4a97d; }
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: #c4a97d;
  color: #0a0a0a;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: #d4bb8f; transform: translateY(-1px); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 0.6rem 1.125rem;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .cookie-banner-icon { display: none; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
