/* ============================================
   MANAN CONSULTANCY — Premium Luxury Styles
   ============================================ */

:root {
  --bg: #081325;
  --bg-light: #0f1a32;
  --bg-card: rgba(255, 255, 255, 0.04);
  --brand-navy: #1a243e;
  --brand-gold: #c5a059;
  --gold: #c5a059;
  --gold-light: #dfc68a;
  --gold-dim: rgba(197, 160, 89, 0.12);
  --gold-glow: rgba(197, 160, 89, 0.35);
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(197, 160, 89, 0.18);
  --text: rgba(255, 255, 255, 0.94);
  --text-muted: rgba(255, 255, 255, 0.58);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  --topbar-h: 38px;
  --gold-panel: #c5a059;
  --cream: #f0e6d4;
  --shadow-luxury: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(197, 160, 89, 0.08);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(197, 160, 89, 0.07), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(26, 36, 62, 0.6), transparent),
    linear-gradient(180deg, #060e1c 0%, var(--bg) 40%, #060e1c 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

body::selection {
  background: rgba(197, 160, 89, 0.35);
  color: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-gold), #8a6d35);
  border-radius: 4px;
}

.luxury-grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.luxury-vignette {
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(4, 8, 16, 0.5) 100%);
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.3s;
}

.skip-link:focus {
  top: 16px;
}

/* ── Cursor ── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), border-color 0.3s;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold-light);
}

/* ── WebGL Canvas ── */
#webgl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--transition), visibility 0.8s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-portrait {
  position: relative;
  width: min(320px, 72vw);
  height: min(420px, 88vw);
  margin: 0 auto 36px;
  opacity: 0;
}

.preloader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
  z-index: 0;
}

.preloader-ring--outer {
  inset: -12px;
  border-color: rgba(212, 175, 55, 0.25);
  animation: preloaderRingSpin 18s linear infinite;
}

.preloader-ring--inner {
  inset: -4px;
  border-color: rgba(212, 175, 55, 0.45);
  border-style: dashed;
  animation: preloaderRingSpin 12s linear infinite reverse;
}

@keyframes preloaderRingSpin {
  to { transform: rotate(360deg); }
}

.preloader-portrait-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 35%, rgba(212, 175, 55, 0.4) 0%, transparent 65%);
  animation: preloaderGlow 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes preloaderGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.preloader-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.preloader-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
  transform-origin: center bottom;
}

.preloader-particles {
  position: absolute;
  inset: -30px;
  z-index: 1;
  pointer-events: none;
}

.preloader-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

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

.preloader-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  opacity: 0;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
}

.brand-manan {
  color: var(--brand-gold);
}

.brand-consultancy {
  color: var(--brand-navy);
  background: var(--brand-gold);
  padding: 4px 14px;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.preloader-name.brand-name {
  gap: 10px;
}

.preloader-name .brand-consultancy {
  padding: 6px 18px;
}

.preloader-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  opacity: 0;
}

.preloader-bar {
  width: 240px;
  height: 3px;
  background: var(--glass);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
  opacity: 0;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loadBar 1.8s var(--transition) forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ── Top Bar ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: rgba(4, 10, 20, 0.95);
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.topbar-address {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-address svg { color: var(--gold); flex-shrink: 0; }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar-links a {
  color: var(--gold-light);
  transition: color 0.3s;
  white-space: nowrap;
}

.topbar-links a:hover { color: var(--white); }

/* ── Header ── */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  overflow: visible;
}

.header.scrolled {
  background: rgba(8, 19, 37, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(197, 160, 89, 0.25), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  opacity: 0.6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

.logo-portrait {
  position: relative;
  width: 64px;
  height: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.logo-portrait::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 0 24px rgba(197, 160, 89, 0.3);
  pointer-events: none;
  z-index: 0;
}

.logo-portrait--footer {
  width: 80px;
  height: 100px;
}

.logo-portrait--footer::before {
  width: 64px;
  height: 64px;
}

.logo-photo {
  position: relative;
  z-index: 1;
  width: auto;
  height: 88px;
  max-width: 72px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  margin-bottom: -4px;
}

.logo-portrait--footer .logo-photo {
  height: 110px;
  max-width: 90px;
}

.logo--footer {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
  min-width: max-content;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-name.brand-name {
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.logo-name .brand-consultancy {
  padding: 2px 10px;
  font-size: 0.95rem;
  border-radius: 4px;
  white-space: nowrap;
}

.logo--footer .logo-name {
  font-size: 1.35rem;
}

.logo--footer .brand-consultancy {
  padding: 3px 12px;
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--brand-gold), var(--gold-light));
}

.nav-cta {
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--brand-gold), #a88640);
  color: var(--brand-navy) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  color: var(--bg) !important;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  background: rgba(8, 19, 37, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #b8942e 50%, var(--brand-gold) 100%);
  background-size: 200% 100%;
  color: var(--brand-navy);
  box-shadow: 0 4px 28px rgba(197, 160, 89, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--transition);
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 10px 48px rgba(197, 160, 89, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.35);
  backdrop-filter: blur(12px);
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  border-color: var(--brand-gold);
  background: var(--gold-dim);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 40px) 0 80px;
  z-index: 1;
  overflow: hidden;
}

.hero-split {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg) 48%, transparent 48%),
              linear-gradient(135deg, transparent 52%, rgba(197, 160, 89, 0.18) 52%, rgba(197, 160, 89, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.08);
  top: -10%;
  right: 10%;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(100, 140, 255, 0.05);
  bottom: 10%;
  left: -5%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.hero-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-box {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-navy);
  background: linear-gradient(135deg, var(--brand-gold), var(--gold-light));
  padding: 18px 26px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  box-shadow: 0 16px 48px rgba(197, 160, 89, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-checklist {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-checklist svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

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

.hero-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 500;
}

/* Hero Stats Card */
.hero-stats-card {
  background: linear-gradient(145deg, rgba(26, 36, 62, 0.9), rgba(8, 19, 37, 0.95));
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-luxury);
  z-index: 5;
  min-width: 220px;
  position: relative;
}

.hero-stats-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.5), transparent, rgba(197, 160, 89, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stats-item {
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass);
}

.hero-stats-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.hero-stats-num small {
  font-size: 0.75rem;
}

.hero-stats-label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* Welcome Card */
.hero-welcome-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 20px);
  max-width: 340px;
  padding: 16px 20px;
  background: linear-gradient(145deg, rgba(26, 36, 62, 0.95), rgba(8, 19, 37, 0.98));
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: var(--radius-sm);
  text-align: center;
  z-index: 4;
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(16px);
}

.hero-welcome-card p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-welcome-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.hero-welcome-card span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.45;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
  padding-bottom: 70px;
}

.portrait-frame {
  position: relative;
  width: 300px;
  height: 440px;
}

.portrait-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
}

.portrait-ring--outer {
  inset: 5% -8%;
  border-radius: 45% 45% 50% 50%;
  border-color: rgba(212, 175, 55, 0.25);
  animation: ringRotate 20s linear infinite;
}

.portrait-ring--inner {
  inset: 8% -4%;
  border-radius: 45% 45% 50% 50%;
  border-color: rgba(212, 175, 55, 0.45);
  border-style: dashed;
  animation: ringRotate 15s linear infinite reverse;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.portrait-glow {
  position: absolute;
  inset: 10% -10%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center 40%, rgba(212, 175, 55, 0.22) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.portrait-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.portrait-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.portrait-particles {
  position: absolute;
  inset: -40px;
  z-index: 1;
  pointer-events: none;
}

/* ── Trust Bar ── */
.trust-bar {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #e8dcc8, var(--cream), #e8dcc8);
  border-top: 1px solid rgba(197, 160, 89, 0.4);
  border-bottom: 1px solid rgba(197, 160, 89, 0.4);
  padding: 22px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Ticker ── */
.ticker-wrap {
  position: relative;
  z-index: 2;
  background: rgba(4, 10, 20, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ticker-dot {
  color: var(--gold-light);
  font-size: 1rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Sections ── */
.section {
  position: relative;
  padding: 130px 0;
  z-index: 1;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.35), transparent);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, transparent, rgba(26, 36, 62, 0.12), transparent);
}

.section-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 18px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold));
}

.section-label::after {
  background: linear-gradient(90deg, var(--brand-gold), transparent);
}

.section-header--center .section-label::before,
.section-header--center .section-label::after {
  width: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  perspective: 1000px;
}

.service-card-inner {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--transition), border-color 0.4s, box-shadow 0.4s;
  height: 100%;
  overflow: hidden;
}

.service-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover .service-card-inner {
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: var(--shadow-luxury), 0 0 50px rgba(197, 160, 89, 0.08);
}

.service-card:hover .service-card-inner::before,
.service-card:hover .service-card-inner::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s var(--transition);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Why / Stats ── */
.why {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.stats-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.stat-block {
  position: relative;
  padding: 52px 24px;
  text-align: center;
  background: linear-gradient(160deg, rgba(26, 36, 62, 0.5), rgba(8, 19, 37, 0.8));
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--transition);
}

.stat-block:hover {
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.stat-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  pointer-events: none;
}

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

.why-feature {
  text-align: center;
  padding: 32px;
}

.why-feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
  pointer-events: none;
  animation: spotlightMove 6s ease-in-out infinite;
}

@keyframes spotlightMove {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-48%, -52%) scale(1.1); }
}

.about-img-frame {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-img-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
}

.about-badge-open {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(8, 19, 37, 0.9);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.about-role {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-glass {
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  margin-bottom: 28px;
}

.about-glass p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-glass em {
  color: var(--gold-light);
  font-style: italic;
}

.about-credentials {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.about-credentials svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.signature-wrap {
  margin-bottom: 28px;
}

.signature {
  width: 200px;
  height: 40px;
  margin-bottom: 4px;
}

.signature-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* ── Testimonials ── */
.testimonials {
  overflow: hidden;
}

.testimonials-swiper {
  padding-bottom: 48px !important;
}

.testimonial-card {
  padding: 44px 38px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(8, 19, 37, 0.6));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  height: 100%;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(197, 160, 89, 0.12);
  pointer-events: none;
}

.swiper-slide-active .testimonial-card {
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-luxury);
  transform: scale(1.02);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ── Process / Timeline ── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
}

.timeline-line {
  position: absolute;
  top: 68px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--glass-border);
  z-index: 0;
}

.timeline-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1.5s var(--transition);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.contact-card {
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.contact-link:hover {
  border-color: var(--glass-border);
  background: var(--gold-dim);
}

.contact-link-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-link strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-address {
  display: flex;
  gap: 16px;
  padding: 16px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form {
  position: relative;
  padding: 40px;
  background: linear-gradient(160deg, rgba(26, 36, 62, 0.4), rgba(8, 19, 37, 0.85));
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.form-border-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: conic-gradient(from var(--border-angle, 0deg), transparent, var(--gold), transparent, var(--gold-light), transparent);
  z-index: -1;
  opacity: 0.5;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg);
}

/* ── Map Section ── */
.map-section {
  margin-top: 8px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.map-header-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}

.map-header-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.map-header-icon svg {
  width: 24px;
  height: 24px;
}

.map-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--white);
}

.map-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
}

.map-directions-btn {
  padding: 12px 22px !important;
  font-size: 0.88rem !important;
  white-space: nowrap;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: var(--bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  height: 420px;
}

#officeMap {
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--bg);
}

.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 19, 37, 0.55) 0%, transparent 18%, transparent 82%, rgba(8, 19, 37, 0.65) 100%),
    linear-gradient(90deg, rgba(8, 19, 37, 0.35) 0%, transparent 12%, transparent 88%, rgba(8, 19, 37, 0.35) 100%);
}

.map-open-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: rgba(8, 19, 37, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.map-open-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--white);
}

/* Leaflet dark theme overrides */
.leaflet-container {
  background: var(--bg) !important;
  font-family: var(--font-body) !important;
}

.leaflet-control-zoom a {
  background: rgba(8, 19, 37, 0.9) !important;
  color: var(--gold-light) !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--gold-dim) !important;
  color: var(--white) !important;
}

.leaflet-control-attribution {
  background: rgba(8, 19, 37, 0.8) !important;
  color: var(--text-muted) !important;
  font-size: 0.65rem !important;
  backdrop-filter: blur(8px);
}

.leaflet-control-attribution a {
  color: var(--gold) !important;
}

.leaflet-popup-content-wrapper {
  background: rgba(8, 19, 37, 0.95) !important;
  color: var(--text) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-popup-tip {
  background: rgba(8, 19, 37, 0.95) !important;
}

.leaflet-popup-content {
  margin: 12px 14px !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
}

.leaflet-popup-content strong {
  color: var(--gold-light);
}

.map-marker { background: transparent; border: none; }

.map-marker-pin {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  position: relative;
}

.map-marker-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  padding: 90px 0 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  background: linear-gradient(180deg, rgba(4, 10, 20, 0.6), #040a14);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(400px, 50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 20px 0;
  line-height: 1.7;
  max-width: 320px;
}

.footer-brand strong {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-hours {
  color: var(--gold) !important;
  font-weight: 500;
  margin-top: 12px !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* ── Reveal Animations (initial state) ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-checklist { align-items: center; }
  .hero-checklist li { justify-content: center; text-align: left; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats-card { margin: 0 auto; }
  .hero-visual { min-height: 460px; padding-bottom: 80px; }
  .portrait-frame { width: 260px; height: 380px; }
  .topbar-address { display: none; }

  .stats-wall { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .topbar-links { gap: 10px; font-size: 0.65rem; }
  .logo-portrait { width: 52px; height: 64px; }
  .logo-portrait::before { width: 44px; height: 44px; }
  .logo-photo { height: 72px; max-width: 58px; }
  .logo-name { font-size: 0.95rem; }
  .logo-name .brand-consultancy { padding: 2px 8px; font-size: 0.85rem; }
  .logo-tagline { display: none; }
  .nav-links { gap: 16px; }

  .hero-title-box { font-size: 1.6rem; }
  .hero-stats-grid { gap: 10px; }
  .hero-stats-num { font-size: 1.1rem; }

  .section { padding: 80px 0; }
  .why-features { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .map-header { flex-direction: column; align-items: flex-start; }
  .map-wrap { height: 320px; }
}

@media (max-width: 480px) {
  .preloader-portrait {
    width: min(280px, 85vw);
    height: min(360px, 105vw);
    margin-bottom: 28px;
  }

  .portrait-frame { width: 220px; height: 320px; }
  .hero-stats-card { min-width: unset; width: 100%; }
  .stats-wall { grid-template-columns: 1fr; }
  .btn { padding: 14px 24px; font-size: 0.88rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
