/* ==========================================================================
   Dream Outlet Center — Ultra-Professional Design System
   Al Ain, Abu Dhabi, UAE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Fraunces:wght@400;600;700;800;900&family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --midnight: #08142c;
  --midnight-2: #0f224a;
  --midnight-3: #081738;
  --royal: #1e4b98;
  --royal-soft: #3463b8;
  --gold: #df9e43;
  --gold-soft: #f0c584;
  --red: #bd1a29;
  --red-soft: #d63847;
  --pearl: #f6f3eb;
  --ink: #0d1527;
  --ink-soft: #424e68;
  --card-bg-light: #ffffff;
  --card-border-light: #e8dfcf;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --max: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* STRICT RULE: ALL FONTS ARE STRAIGHT / NO ITALICS */
h1, h2, h3, h4, h5, h6, em, i, span, p, a, div, button {
  font-style: normal !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.light .eyebrow {
  color: var(--red);
}

.light .eyebrow::before {
  background: var(--red);
}

.accent-gold {
  color: var(--gold) !important;
}

.accent-red {
  color: var(--red) !important;
}

section {
  position: relative;
  width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--midnight);
}

/* ---------- RTL SUPPORT (ARABIC) ---------- */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
  font-family: 'Amiri', 'Manrope', sans-serif;
}

[dir="rtl"] .eyebrow::before {
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .hero-stats div {
  border-left: none;
  border-right: 2px solid var(--gold);
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 24px;
}

[dir="rtl"] .floating-whatsapp .tooltip {
  right: auto;
  left: 70px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ---------- SITE NAV ---------- */
header.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

header.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.site-nav.scrolled {
  background: rgba(8, 20, 44, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .35);
  border-bottom: 1px solid rgba(223, 158, 67, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform .25s ease;
}

.brand:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .en {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  letter-spacing: .01em;
}

.brand-text .ar {
  font-family: 'Amiri', serif;
  font-size: 13.5px;
  color: var(--gold-soft);
  font-weight: 700;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav.links a {
  color: #eef1fb;
  font-size: 14px;
  font-weight: 600;
  opacity: .88;
  position: relative;
  padding: 4px 0;
  transition: opacity .25s ease, color .25s ease;
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0%;
  background: var(--gold);
  transition: width .3s ease;
}

nav.links a:hover, nav.links a.active {
  opacity: 1;
  color: #fff;
}

nav.links a:hover::after, nav.links a.active::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-drop-btn {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  color: #eef1fb;
  font-size: 14px;
  font-weight: 600;
  opacity: .88;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}

.nav-drop-btn svg {
  width: 11px;
  height: 11px;
  transition: transform .25s ease;
}

.nav-dropdown:hover .nav-drop-btn,
.nav-dropdown:focus-within .nav-drop-btn {
  opacity: 1;
}

.nav-dropdown:hover .nav-drop-btn svg,
.nav-dropdown:focus-within .nav-drop-btn svg {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 6px);
  background: var(--midnight-2);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding: 10px;
  min-width: 210px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: #cdd4ea;
  opacity: 1 !important;
}

.nav-drop-menu a:hover,
.nav-drop-menu a.active {
  background: rgba(255, 255, 255, .1);
  color: var(--gold) !important;
}

.nav-drop-menu a::after {
  display: none !important;
}

/* Language Switcher Button with Round Flag */
.lang-switch-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s ease, border-color .25s ease;
}

.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--gold);
}

.flag-round {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

/* Mobile Nav Drawer */
@media (max-width: 960px) {
  nav.links { display: none; }
  .burger { display: flex; }
  nav.links.open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 84%;
    max-width: 360px;
    background: var(--midnight);
    flex-direction: column;
    padding: 90px 24px 40px;
    gap: 18px;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .6);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-dropdown { width: 100%; }
  .nav-drop-btn { pointer-events: none; font-size: 15px; }
  .nav-drop-btn svg { display: none; }
  .nav-drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, .05);
    margin-top: 10px;
    width: 100%;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(189, 26, 41, .4);
}

.btn-primary:hover {
  background: var(--red-soft);
}

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 10px 24px rgba(223, 158, 67, .35);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
}

/* ---------- HERO SECTION (FULL WIDTH & EXACT VIDEO SIZING) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 105px 0 50px;
  overflow: hidden;
  background: var(--midnight);
}

/* Full Width Background Video */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  filter: brightness(0.68) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8,20,44,0.88) 0%, rgba(8,20,44,0.62) 50%, rgba(8,20,44,0.96) 100%),
              radial-gradient(ellipse 900px 500px at 75% 25%, rgba(223, 158, 67, 0.16), transparent 70%);
  z-index: 1;
}

#starfield {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

/* Reduced size of text for full video & card visibility */
.hero h1 {
  font-size: clamp(24px, 3.2vw, 42px);
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.18;
}

.hero h1 .accent-gold {
  color: var(--gold);
}

.hero .sub {
  font-family: 'Manrope', sans-serif;
  font-style: normal !important;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--gold-soft);
  margin-top: 12px;
}

.hero .desc {
  color: #d1d9f0;
  font-size: 14.5px;
  line-height: 1.68;
  max-width: 480px;
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stats div {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.hero-stats .num {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

.hero-stats .lbl {
  font-size: 11px;
  color: #a0accc;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero Video Card - Full Width 16/9 ratio */
.hero-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6), 0 0 0 2px rgba(223, 158, 67, 0.35);
  background: var(--midnight-2);
  width: 100%;
  aspect-ratio: 16/9;
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(8, 20, 44, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(223, 158, 67, 0.4);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

[dir="rtl"] .video-card-badge {
  right: auto;
  left: 12px;
}

.video-card-badge span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 100px 0 45px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-video-card { width: 100%; aspect-ratio: 16/9; }
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 26s linear infinite;
}

.ticker-track span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-style: normal !important;
  font-size: 14px;
  color: #fff;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.ticker-track span::after {
  content: "✦";
  color: var(--gold-soft);
  font-style: normal;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--pearl);
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.about h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--ink);
  margin-top: 14px;
}

.about p.body-text {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
}

.about p.body-text + p.body-text {
  margin-top: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(16, 26, 48, .06);
  border: 1px solid var(--card-border-light);
}

.stat-card .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--midnight);
}

.stat-card .lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 2px;
  font-weight: 600;
}

.about-gallery-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}

.about-photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .4s ease;
}

.about-photo-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-gallery-stack { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .about-gallery-stack { grid-template-columns: 1fr; }
}

/* ---------- CATEGORIES / DEPARTMENTS ---------- */
.categories {
  background: var(--midnight);
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}

.categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 450px at 15% 0%, rgba(30, 75, 152, .35), transparent 70%);
}

.categories .wrap {
  position: relative;
  z-index: 1;
}

.cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.cat-head h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 42px);
  margin-top: 14px;
  max-width: 600px;
}

.cat-head p {
  color: #aab4d4;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.7;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cat-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .4);
}

.cat-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #050d1e;
}

.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cat-card:hover .cat-photo img {
  transform: scale(1.08);
}

.cat-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.cat-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.cat-card p {
  color: #abb6d6;
  font-size: 13.5px;
  line-height: 1.6;
}

.cat-tag {
  align-self: flex-start;
  margin-top: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--midnight);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
}

[dir="rtl"] .cat-tag {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ---------- WHY US ---------- */
.why {
  background: var(--pearl);
  padding: 95px 0;
}

.why-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.why-head h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-top: 14px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--card-border-light);
  box-shadow: 0 10px 26px rgba(16, 26, 48, .05);
}

.why-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .06em;
}

.why-card h3 {
  font-size: 19px;
  margin-top: 10px;
  color: var(--ink);
}

.why-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- GALLERY SHOWCASE (NO IMAGE TEXT OVERLAY) ---------- */
.gallery {
  background: var(--midnight-2);
  padding: 95px 0;
  position: relative;
}

.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
  margin-top: 38px;
}

.g-tile {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.g-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.g-tile:hover img {
  transform: scale(1.08);
}

.g-tile.big {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .g-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-tile.big { grid-column: span 2; }
}

@media (max-width: 480px) {
  .g-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-tile.big { grid-column: span 1; grid-row: span 1; }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-modal img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  border: 3px solid var(--gold);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
  font-size: 30px;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- LOCATION & VISIT ---------- */
.location {
  background: var(--pearl);
  padding: 95px 0;
}

.loc-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.loc-info h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-top: 14px;
}

.loc-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--midnight);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.loc-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.loc-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 2px;
  line-height: 1.6;
}

.loc-item a {
  color: var(--red);
  font-weight: 700;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(16, 26, 48, .12);
  border: 1px solid var(--card-border-light);
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--midnight) 0%, var(--midnight-2) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(223, 158, 67, .22), transparent 60%);
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 44px);
  max-width: 720px;
  margin: 14px auto 0;
}

.cta-band p {
  color: #b9c2e0;
  margin-top: 16px;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
}

.social-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.social-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}

.social-pill:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.social-pill svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.social-pill:hover svg {
  stroke: var(--midnight);
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.floating-whatsapp .tooltip {
  position: absolute;
  right: 68px;
  background: #111b21;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  transform: translateX(10px);
}

.floating-whatsapp:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- POLICY / LEGAL PAGES ---------- */
.policy-hero {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-2) 100%);
  padding: 130px 0 60px;
  color: #fff;
  position: relative;
}

.policy-hero h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  margin-top: 12px;
}

.policy-hero p.lead {
  font-size: 16px;
  color: #c9d2ec;
  max-width: 680px;
  margin-top: 14px;
}

.policy-hero .meta-tag {
  display: inline-block;
  background: rgba(223, 158, 67, 0.15);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: 18px;
}

.policy-body {
  background: var(--pearl);
  padding: 75px 0 100px;
}

.policy-container {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: 0 14px 45px rgba(16, 26, 48, .07);
  border: 1px solid var(--card-border-light);
  max-width: 900px;
  margin: 0 auto;
}

.policy-container h2 {
  font-size: 22px;
  color: var(--midnight);
  margin-top: 36px;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(223, 158, 67, 0.35);
  padding-bottom: 8px;
}

.policy-container h2:first-of-type {
  margin-top: 0;
}

.policy-container h3 {
  font-size: 17px;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 10px;
}

.policy-container p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}

.policy-container li {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Data Deletion Form */
.deletion-form-card {
  background: var(--pearl);
  border: 1px solid var(--card-border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 700;
  font-size: 13px;
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #dcd4c4;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(30, 75, 152, 0.15);
}

.form-status {
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}

.form-status.success {
  display: block;
  background: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
}

.form-status.error {
  display: block;
  background: #fce8e6;
  color: #c5221f;
  border: 1px solid #fad2cf;
}

@media (max-width: 768px) {
  .policy-container { padding: 24px 18px; }
  .deletion-form-card { padding: 20px 16px; }
}

/* ---------- FOOTER ---------- */
footer {
  background: #061126;
  padding: 60px 0 30px;
  color: #9aa6c9;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.foot-brand {
  max-width: 340px;
}

.foot-brand .brand {
  margin-bottom: 14px;
}

.foot-brand p {
  color: #8894b8;
  font-size: 13.5px;
  line-height: 1.7;
}

.foot-cols {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.foot-col h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  color: #9aa6c9;
  font-size: 14px;
  transition: color .2s ease;
}

.foot-col a:hover {
  color: var(--gold);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom p {
  color: #6a769c;
  font-size: 12.5px;
}

/* FINFORYOU Managed Credit Styling */
.managed-credit {
  color: var(--gold-soft);
  font-weight: 700;
  transition: color .2s ease;
}

.managed-credit a {
  color: var(--gold);
  text-decoration: underline;
}

.managed-credit a:hover {
  color: #fff;
}

/* ---------- MOBILE BOTTOM BAR MENU ---------- */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }

  .floating-whatsapp {
    display: none !important;
  }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 995;
    background: rgba(8, 20, 44, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(223, 158, 67, 0.35);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    align-items: center;
    justify-content: space-around;
  }

  .m-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    padding: 6px 4px;
    color: #d1d9f0;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
  }

  .m-bar-item:active {
    transform: scale(0.95);
  }

  .m-bar-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .m-bar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
  }

  .m-bar-item span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
  }

  .m-bar-item.m-bar-call .m-bar-icon svg {
    stroke: #fff;
  }

  .m-bar-item.m-bar-call {
    color: #fff;
    background: var(--red);
    border-radius: 12px;
    padding: 7px 6px;
    box-shadow: 0 4px 12px rgba(189, 26, 41, 0.4);
  }

  .m-bar-item.m-bar-call span {
    color: #fff;
  }

  .m-bar-item.m-bar-wa .m-bar-icon svg {
    stroke: #25D366;
  }

  .m-bar-item.m-bar-wa:hover span {
    color: #25D366;
  }
}

