/* ============================================================
   DOASARA — Global Stylesheet
   Premium Financial Stealth | Dark Mode | Silver Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

/* ── Variables ── */
:root {
  --color-black:     #030303;
  --color-gunmetal:  #2e2e2e;
  --color-surface:   #252525;
  --color-border:    #383838;
  --color-platinum:  #e5e5e5;
  --color-silver:    #a8a8a8;
  --color-muted:     #8c8c8c;
  --color-accent:    #c8c8c8;
  --color-gold:      #afa15f;
  --color-white:     #ffffff;

  --font-sans:   'Avenir Next', 'Inter', -apple-system, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 40px rgba(200, 200, 200, 0.06);

  --nav-height: 100px;
  --ticker-height: 40px;
  --max-width:  1280px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-black);
  color: var(--color-platinum);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 200; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
p  { color: var(--color-silver); font-weight: 300; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }

/* ── Divider ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem 0;
}
.divider.center { margin: 1.5rem auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2.5rem; /* Increased padding for translation room */
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background: transparent;
  color: var(--color-platinum);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
  box-shadow: 0 0 20px rgba(175, 161, 95, 0.15) !important;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-platinum);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  transform: translateY(-1px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: var(--transition);
}

.nav-logo:hover { opacity: 0.75; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 100%;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-silver);
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-gold);
  opacity: 1;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 0.55rem 1.4rem;
  border: 0.5px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: var(--radius-sm);
  background: transparent !important;
  color: var(--color-platinum) !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.15rem !important;
  opacity: 1 !important; /* CTA always full opacity */
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
  box-shadow: 0 0 20px rgba(175, 161, 95, 0.15) !important;
}
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-bottom: 14px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--color-platinum);
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.nav-mobile {
  display: none;
  bottom: 0;
  overflow-y: auto;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-silver);
  transition: var(--transition);
  padding: 0.5rem 0;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--color-gold); }

/* ── Page Header ── */
.page-header {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--color-border);
}
.page-header .eyebrow { display: block; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { max-width: 540px; font-size: 1.05rem; }

/* ── Footer ── */
.footer {
  background: var(--color-gunmetal);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr max-content;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}
.footer-brand { margin-top: 10px; }
.footer-brand p {
  font-size: 0.85rem;
  margin-top: 1rem;
  max-width: 240px;
  line-height: 1.7;
}
.footer-brand .nav-logo { font-size: 1.2rem; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-top: 0;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gold);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--color-silver);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--color-platinum); }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--color-silver);
}
.footer-compliance {
  font-size: 0.65rem !important;
  color: var(--color-silver) !important;
  max-width: 500px;
  text-align: justify;
  line-height: 1.5;
}

/* ── Cards ── */
.card {
  background: var(--color-gunmetal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card .btn {
  margin-top: auto !important;
  align-self: flex-start;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--color-muted);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.card:hover::before {
  background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
}
.card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* ── Section Heading ── */
.section-heading { margin-bottom: 3.5rem; }
.section-heading.center { text-align: center; }
.section-heading h2 { margin-bottom: 0.8rem; }
.section-heading p { max-width: 520px; }
.section-heading.center p { margin: 0 auto; }

/* ── Stat ── */
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.4rem;
}
.stat-value {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  color: var(--color-white);
  line-height: 1;
}

/* ── Tag ── */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-compliance { text-align: justify; }
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.2rem; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-up   { animation: fadeUp 0.7s ease forwards; }
.animate-in   { animation: fadeIn 0.6s ease forwards; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-silver { color: var(--color-silver); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Custom Labyrinth Logo --- */
.nav-logo.custom-brand {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  gap: 0.6rem; /* +5px increased spacing */
}
.brand-top-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.double-d {
  width: 46px;
  height: auto;
  flex-shrink: 0;
  shape-rendering: geometricPrecision;
}
.brand-title {
  font-family: 'Avenir Next', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #E5E5E5;
  line-height: 1;
}
.brand-sub {
  font-family: 'Avenir Next', 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  color: var(--color-gold);
  text-transform: uppercase;
}
.footer-brand .double-d {
  width: 32px;
}
.footer-brand .brand-title {
  font-size: 1.1rem;
}
.footer-brand .brand-sub {
  font-size: 0.4rem;
}


/* ── Doctrine Style Hero ── */
.prologue {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-black);
}
.prologue-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.prologue-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 100px auto 0;
  text-align: center;
  width: 100%;
}
.prologue-eyebrow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  animation: fadeIn 1s ease both;
}
.prologue h1 {
  font-weight: 200;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-white);
  animation: fadeUp 1s 0.2s ease both;
}
.prologue h1 em {
  font-style: italic;
  color: rgba(229, 229, 229, 0.6);
}
.prologue-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  margin: 3rem auto;
  animation: fadeIn 1s 0.6s ease both;
}
.prologue-desc {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeUp 1s 0.4s ease both;
  line-height: 1.6;
}

.comparison-table-wrap { overflow-x: auto; padding-bottom: 1rem; }
.comparison-table { min-width: 800px; }

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%; /* Stretches to full nav height (100px) */
  margin-left: 1rem;
  cursor: pointer;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-silver);
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  background: transparent;
  border: none;
  user-select: none;
}
.lang-current:hover { color: var(--color-gold); }
.lang-switcher.open .lang-current { opacity: 0.4; }
.lang-current .arrow { font-size: 0.4rem; opacity: 0.55; }

/* Bridge + dropdown container */
.lang-dropdown {
  /* Bulletproof Positioning: Anchored to the 100px-tall li container */
  position: absolute !important;
  top: 100% !important; /* Exactly at the bottom of the 100px nav bar */
  right: 0 !important; /* Perfectly right-aligned with the EN text */
  left: auto !important;
  margin-top: -1px !important; /* 1px overlap to prevent gap */
  width: 80px;
  background: rgba(10, 10, 10, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  border-top: none !important;
  border-radius: 0 0 3px 3px !important;
  padding: 6px 0 10px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(3px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 999999 !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
  pointer-events: none;
  overflow: visible !important;
}
.lang-dropdown::before {
  /* Invisible bridge: covers gap between header and menu */
  content: '';
  position: absolute;
  top: -10px; left: 0;
  width: 100%; height: 10px;
  background: transparent;
}
.lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Language rows — right-aligned codes, NO backgrounds, gold left accent on hover */
.lang-dropdown a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  color: #8c8c8c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-left: 2px solid transparent !important;
  transition: color 0.18s ease-in-out, border-color 0.18s ease-in-out;
}
.lang-dropdown a:hover {
  color: #ffffff;
  border-left-color: #B59E5B !important;
  background: transparent !important;
}
.lang-dropdown a.active-lang {
  color: #B59E5B;
  border-left-color: #B59E5B !important;
}

.lang-switcher-mobile {
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}
.lang-switcher-mobile a {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  text-decoration: none;
}
.lang-switcher-mobile a:hover {
  color: var(--color-white);
  border-color: var(--color-muted);
}

/* Hide Default Google Translate UI */
.goog-te-banner-frame, .skiptranslate.goog-te-gadget { display: none !important; }
body { top: 0px !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--color-border);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 2rem; }
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-silver);
  margin-bottom: 0.6rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: #4a4a4a;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.03);
}


.nav-portal-icon svg:hover {
  opacity: 0.7;
}

/* ══════════════════════════════════════
   GOOGLE TRANSLATE — FULL KILL LIST
   ══════════════════════════════════════ */

/* Layout reset — prevent body/html displacement */
html { top: 0 !important; position: static !important; }
body { top: 0 !important; position: static !important; }

/* Kill the top banner bar */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

/* Kill .skiptranslate wrapper (but NOT our own notranslate spans) */
body > .skiptranslate { display: none !important; }

/* Nuke the floating bubble / circle / gadget icon */
.goog-te-gadget-icon,
.goog-te-gadget-simple img,
#google_translate_element img,
.goog-te-menu-value img,
.goog-te-gadget-button,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-tt,
.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Hide "powered by Google" branding */
.goog-logo-link,
.goog-te-gadget span { display: none !important; }
.goog-te-gadget      { color: transparent !important; font-size: 0 !important; }

/* Kill tooltips and text highlights */
.goog-tooltip,
.goog-tooltip:hover  { display: none !important; }
.goog-text-highlight, font {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Google translate iframe */
iframe.goog-te-menu-frame {
  display: none !important;
  border: none !important;
}

/* Protect nav link colors */
.nav-links a,
.nav-links a:visited,
.nav-links a:hover   { color: inherit !important; text-decoration: none !important; }
.nav-links a.active  { color: var(--color-gold) !important; }
.nav-links a:hover   { color: var(--color-gold) !important; }

/* Keep CTA button on one line */
.nav-cta {
  white-space: nowrap !important;
  min-width: 120px !important;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: 90%;
  max-width: 600px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

.cookie-banner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-content p {
  color: var(--color-silver);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-content a {
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.cookie-content a:hover {
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.cookie-btn.accept {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.cookie-btn.accept:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1.25rem;
    width: 95%;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* ============================================================
   Reveal Animations (Keyframes)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.reveal.active {
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-delay-1.active { animation-delay: 0.1s; }
.reveal-delay-2.active { animation-delay: 0.2s; }
.reveal-delay-3.active { animation-delay: 0.3s; }
.reveal-delay-4.active { animation-delay: 0.4s; }

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.reveal-delay-5.active { animation-delay: 0.5s; }
.reveal-delay-6.active { animation-delay: 0.6s; }
.reveal-delay-7.active { animation-delay: 0.7s; }
.reveal-delay-8.active { animation-delay: 0.8s; }
.reveal-delay-9.active { animation-delay: 0.9s; }

.reveal-fade {
  opacity: 0;
  will-change: opacity;
}
.reveal-fade.active {
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/* Faster, sequential reveal for cities */
.city-reveal {
  opacity: 0;
  transform: translateY(15px);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}
.city-reveal.active {
  animation: seamlessCity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.city-delay-1.active { animation-delay: 0.2s; }
.city-delay-2.active { animation-delay: 0.5s; }
.city-delay-3.active { animation-delay: 0.8s; }
.city-delay-4.active { animation-delay: 1.1s; }
.city-delay-5.active { animation-delay: 1.4s; }

@keyframes seamlessCity {
  0% { opacity: 0; transform: translateY(15px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
  100% { opacity: 1; transform: translateY(0); }
