/* ========================================
   RUBI Detective Agency — Styles
   ======================================== */

:root {
  --navy: #060b1a;
  --navy-light: #0c1228;
  --navy-mid: #121a35;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-dark: #a6851e;
  --cream: #f5f0e8;
  --cream-muted: #b8b0a0;
  --white: #ffffff;
  --border: rgba(201, 162, 39, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --header-h: 72px;
  --alert-bar-h: 40px;
  --top-bar-h: calc(var(--header-h) + var(--alert-bar-h));
  --mobile-bar-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --vh: 1vh;
  --vw: 1vw;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-bar-h) + var(--safe-top) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

html.site-ready {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: var(--safe-bottom);
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

body.has-mobile-bar {
  padding-bottom: var(--safe-bottom);
}

/* ---- Site copy protection (high security) ---- */
html.site-protected,
html.site-protected body {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html.site-protected input,
html.site-protected textarea,
html.site-protected select,
html.site-protected [contenteditable="true"],
html.site-protected .allow-copy,
html.site-protected a[href^="tel:"],
html.site-protected a[href^="mailto:"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

html.site-protected a,
html.site-protected button,
html.site-protected .hamburger,
html.site-protected .btn,
html.site-protected .nav-link,
html.site-protected .cat-link,
html.site-protected .cat-tab,
html.site-protected .whatsapp-float,
html.site-protected .back-to-top {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201, 162, 39, 0.15);
}

html.site-protected img,
html.site-protected svg,
html.site-protected video,
html.site-protected canvas,
html.site-protected picture {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

html.site-protected * {
  -webkit-user-select: none;
  user-select: none;
}

html.site-protected input,
html.site-protected textarea,
html.site-protected select,
html.site-protected [contenteditable="true"],
html.site-protected .allow-copy,
html.site-protected a[href^="tel:"],
html.site-protected a[href^="mailto:"] {
  -webkit-user-select: text;
  user-select: text;
}

.protect-watermark {
  position: fixed;
  inset: 0;
  z-index: 9985;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='120' viewBox='0 0 220 120'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' fill='%23c9a227' font-family='Arial,sans-serif' font-size='13' font-weight='700' transform='rotate(-24 110 60)'%3ERUBI PROTECTED%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 120px;
}

.protect-toast {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10050;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, calc(100vw - 28px));
  padding: 13px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(6, 11, 26, 0.98), rgba(12, 18, 38, 0.98));
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  pointer-events: none;
}

.protect-toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold);
  animation: protectLockPulse 2s ease-in-out infinite;
}

@keyframes protectLockPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(201, 162, 39, 0); }
}

.protect-toast-text {
  text-align: left;
}

.protect-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.protect-shield {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 8, 18, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

html.devtools-detected .protect-shield {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.protect-shield-box {
  position: relative;
  max-width: 400px;
  width: 100%;
  padding: 36px 28px 32px;
  text-align: center;
  background: linear-gradient(165deg, rgba(201, 162, 39, 0.1) 0%, rgba(6, 11, 26, 0.98) 100%);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.protect-shield-ring {
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  animation: protectShieldRing 2.5s ease-in-out infinite;
  pointer-events: none;
}

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

.protect-shield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.45);
  animation: protectShieldIcon 3s ease-in-out infinite;
}

@keyframes protectShieldIcon {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(201, 162, 39, 0.2); }
  50% { transform: scale(1.06); box-shadow: 0 0 36px rgba(201, 162, 39, 0.4); }
}

.protect-shield-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.protect-shield-msg {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.protect-shield-msg strong {
  color: var(--cream);
}

.protect-shield-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.08);
}

@media print {
  html.site-protected,
  html.site-protected body,
  html.site-protected * {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  .protect-toast {
    bottom: calc(20px + var(--safe-bottom));
    padding: 12px 16px;
    font-size: 0.76rem;
  }

  .protect-watermark {
    opacity: 0.035;
    background-size: 180px 100px;
  }

  .protect-shield {
    display: none !important;
  }
}

img,
video,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

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

/* Logos & photos — no filter, always visible */
.img-logo,
.img-hero,
.img-photo,
.img-avatar,
.header-call-img,
.preloader-logo,
.preloader-brand,
.logo-img,
.showcase-logo,
.showcase-img,
.hero-image,
.about-image,
.work-image,
.cat-img-raw,
.icon-raw,
.whatsapp-float img,
.mobile-bar-wa img {
  filter: none !important;
}

/* Icons on gold/light background — original dark SVG visible */
.icon-visible img,
.cat-card-img,
.service-big-img,
.icons-wall-item img {
  filter: none !important;
  opacity: 1;
}

.icon-visible {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(232, 200, 74, 0.35), rgba(201, 162, 39, 0.18));
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 16px;
}

/* Small icons on dark background — gold tint */
.hero-badge img,
.trust-item img,
.about-feature img,
.process-icon img,
.why-icon img,
.contact-item-icon img,
.hero-stat-icon,
.form-header img,
.hero-float img,
.footer-badges img,
.service-points li img,
.showcase-caption img,
.live-feed-title img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.btn-gold img {
  filter: brightness(0) saturate(100%) !important;
}

.img-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(145deg, rgba(232, 200, 74, 0.35), rgba(201, 162, 39, 0.15));
  border: 2px solid var(--border);
  object-fit: contain;
  filter: none !important;
}

.testimonial-author img,
.showcase-client img {
  filter: none !important;
  background: linear-gradient(145deg, rgba(232, 200, 74, 0.3), rgba(201, 162, 39, 0.12));
  border-radius: 50%;
  padding: 4px;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  overflow-x: clip;
}

.section {
  padding: 100px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--top-bar-h) + var(--safe-top) + 20px);
}

#reviews {
  scroll-margin-top: calc(var(--top-bar-h) + var(--safe-top) + 28px);
  min-height: auto;
}

.section-dark {
  background: var(--navy-light);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-desc.centered {
  margin: 0 auto;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  text-decoration: none;
  position: relative;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold img {
  filter: brightness(0) saturate(100%);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-light);
}

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

.btn-dark {
  background: var(--navy-mid);
  color: var(--cream);
  border-color: var(--border);
}

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

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  margin-top: 16px;
}

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

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

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  animation: logoPulse 1.5s ease-in-out infinite;
}

.preloader-brand {
  opacity: 0.9;
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  border-radius: 3px;
  animation: loadBar 1.2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes navDrawerItem {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding-top: var(--safe-top);
  background: rgba(6, 11, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(6, 11, 26, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: var(--transition);
}

.logo:hover .logo-img {
  opacity: 0.85;
}

.logo-footer .logo-img {
  height: 48px;
}

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

.nav-list {
  display: flex;
  gap: clamp(12px, 1.4vw, 22px);
  align-items: center;
}

.nav-link {
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 500;
  color: var(--cream-muted);
  transition: var(--transition);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-link.active {
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.header-call-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-call-pulse {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.55);
  animation: headerCallPulse 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  pointer-events: none;
}

@keyframes headerCallPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.85;
  }
  70%, 100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.header-call-img {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: none !important;
  flex-shrink: 0;
}

.header-phone-btn img:not(.header-call-img) {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
  flex-shrink: 0;
}

.header-phone-btn:hover {
  color: var(--gold-light);
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.08);
}

.header-phone-btn:hover .header-call-pulse {
  border-color: rgba(232, 200, 74, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .header-call-pulse {
    animation: none;
    opacity: 0.35;
  }
}

.nav-cta {
  padding: 9px 18px;
  font-size: 0.82rem;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.2);
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Enquiry Alert Ticker — below header */
.enquiry-alert-bar {
  position: fixed;
  top: calc(var(--header-h) + var(--safe-top));
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--alert-bar-h);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.14) 0%, rgba(8, 12, 28, 0.97) 12%, rgba(8, 12, 28, 0.97) 88%, rgba(201, 162, 39, 0.14) 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.32);
  overflow: hidden;
  transition: var(--transition);
}

.header.scrolled + .enquiry-alert-bar {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.1) 0%, rgba(6, 11, 26, 0.98) 12%, rgba(6, 11, 26, 0.98) 88%, rgba(201, 162, 39, 0.1) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.enquiry-alert-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.85;
  animation: alertAccentPulse 3s ease-in-out infinite;
}

@keyframes alertAccentPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.enquiry-alert-marquee-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.enquiry-alert-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: enquiryAlertScroll 42s linear infinite;
}

.enquiry-alert-marquee-wrap:hover .enquiry-alert-track {
  animation-play-state: paused;
}

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

.enquiry-alert-msg {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.enquiry-alert-msg strong {
  color: #fbbf24;
  font-weight: 700;
}

.enquiry-alert-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  box-shadow: 0 0 6px rgba(201, 162, 39, 0.5);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10010;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 769px) {
  .nav {
    position: fixed;
    top: var(--safe-top);
    left: 50%;
    transform: translateX(-50%) !important;
    width: min(1200px, calc(100% - 28px));
    height: var(--header-h);
    z-index: 1001;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 0;
    margin: 0;
    background: transparent;
    visibility: visible !important;
    pointer-events: none;
    box-shadow: none;
    border: none;
    overflow: visible;
  }

  .nav-list,
  .nav-actions {
    pointer-events: auto;
  }

  .nav::before,
  .nav::after {
    display: none !important;
    content: none !important;
  }
}

@media (max-width: 768px) {
  html,
  html.site-ready {
    scroll-behavior: auto;
  }

  html,
  body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--top-bar-h) + var(--safe-top) + 40px) 0 80px;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowMove 8s ease-in-out infinite alternate;
}

.hero-dots {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
}

.hero-dots-left {
  left: 0;
  top: 20%;
  height: 200px;
  width: auto;
}

.hero-dots-right {
  right: 0;
  bottom: 10%;
  height: 180px;
  width: auto;
  transform: rotate(180deg);
}

@keyframes glowMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, 60px); }
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge-years {
  padding: 3px 10px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

/* Heritage Year Range */
.heritage-years {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.heritage-years span {
  color: var(--gold-light);
}

.heritage-years em {
  font-style: normal;
  font-size: 0.85em;
  color: var(--cream-muted);
  font-weight: 500;
}

.heritage-years-sm {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.heritage-years-sm span {
  color: var(--gold-light);
}

.heritage-years-sm em {
  font-style: normal;
  font-size: 0.9em;
  color: var(--cream-muted);
}

.hero-stat-heritage .heritage-years {
  margin-bottom: 2px;
}

/* Heritage Timeline Strip */
.heritage-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  margin: 20px 0 24px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.heritage-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.heritage-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 64px;
}

.heritage-year-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.heritage-year-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-muted);
  margin-top: 4px;
}

.heritage-track {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}

.heritage-track-line {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  border-radius: 3px;
  position: relative;
}

.heritage-track-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.5);
}

.heritage-track-dot-start {
  left: 0;
}

.heritage-track-dot-end {
  right: 0;
  animation: heritagePulse 2.5s ease-in-out infinite;
}

@keyframes heritagePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 0 18px rgba(232, 200, 74, 0.8); }
}

.heritage-track-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 14px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Trust bar heritage */
.trust-item-heritage span strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Showcase heritage */
.showcase-heritage {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(201, 162, 39, 0.08);
}

/* Why card heritage */
.why-card-heritage {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
  border-color: var(--border);
}

/* Footer heritage */
.footer-heritage {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-heritage-badge {
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 6px;
}

.footer-heritage-range {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  width: fit-content;
}

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

.hero-stat-icon {
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.hero-stat span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.75rem;
  color: var(--cream-muted);
  margin-top: 2px;
}

.hero-stat-success strong,
.hero-stat-success .hero-stat-pct {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-success .hero-stat-icon {
  background: rgba(201, 162, 39, 0.18);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.hero-stat-success-body {
  min-width: 0;
}

.hero-stat-rate {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.hero-stat-success .hero-stat-rate strong {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-stat-pct {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 700;
}

/* Live Cases Counter */
.cases-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ade80;
  margin-left: 4px;
  vertical-align: middle;
}

.cases-live-tag-card {
  font-size: 0.6rem;
  margin-left: 0;
  padding: 4px 10px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 50px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

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

.live-case-count {
  display: inline;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

.live-case-count.case-tick {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.live-case-count.case-tick-big {
  color: var(--gold-light);
  text-shadow: 0 0 28px rgba(232, 200, 74, 0.75);
  transform: scale(1.04);
}

.hero-stat-cases-body {
  min-width: 0;
}

.hero-case-update {
  font-size: 0.62rem;
  color: rgba(74, 222, 128, 0.8);
  margin-top: 4px;
  font-style: italic;
  line-height: 1.35;
  max-width: 168px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.1em;
  transition: opacity 0.25s ease;
}

.case-update-live.case-update-fade {
  opacity: 0.35;
}

.live-dot-flash {
  animation: liveDotFlash 0.55s ease-out !important;
}

@keyframes liveDotFlash {
  0% { transform: scale(1); box-shadow: 0 0 6px rgba(74, 222, 128, 0.6); }
  50% { transform: scale(1.45); box-shadow: 0 0 14px rgba(74, 222, 128, 1); }
  100% { transform: scale(1); box-shadow: 0 0 6px rgba(74, 222, 128, 0.6); }
}

.live-track-active {
  outline: 1px solid rgba(74, 222, 128, 0.2);
  outline-offset: 2px;
}

.hero-stat-cases.live-track-active {
  border-radius: var(--radius-md);
}

.live-sync-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  padding: 3px 8px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 50px;
}

.live-sync-badge.live-sync-pulse {
  animation: liveSyncPulse 0.7s ease;
}

@keyframes liveSyncPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.06); }
}

.hero-stat-cases strong.live-case-count {
  font-variant-numeric: tabular-nums;
}

.why-card-live {
  position: relative;
  overflow: hidden;
}

.why-card-live::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.06), transparent);
  animation: cardShine 6s ease-in-out infinite;
}

@keyframes cardShine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.why-card-live-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.why-card-live .live-case-count {
  font-size: clamp(2rem, 5vw, 2.8rem);
  display: block;
  margin: 4px 0 2px;
}

.why-case-update {
  font-size: 0.75rem;
  color: rgba(74, 222, 128, 0.85);
  margin-top: 10px;
  font-style: italic;
  min-height: 1.2em;
  transition: opacity 0.25s ease;
  line-height: 1.45;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(18, 26, 53, 0.95);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.hero-float img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-float-1 {
  top: 8%;
  left: -5%;
  animation: floatBadge1 5s ease-in-out infinite;
}

.hero-float-2 {
  top: 45%;
  right: -8%;
  animation: floatBadge2 6s ease-in-out infinite;
}

.hero-float-3 {
  bottom: 12%;
  left: 5%;
  animation: floatBadge3 5.5s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(4px); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Trust Bar */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: var(--transition);
}

.trust-item img {
  width: 28px;
  height: 28px;
  padding: 4px;
  background: rgba(201, 162, 39, 0.08);
  border-radius: 8px;
}

.trust-item:hover {
  color: var(--gold);
}

.trust-item-highlight {
  color: var(--gold);
  font-weight: 600;
}

.trust-item-highlight img {
  background: rgba(201, 162, 39, 0.18);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

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

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

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

.about-image-wrap {
  position: relative;
  margin-bottom: 24px;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

.about-image-photo {
  aspect-ratio: 500 / 480;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--navy-mid);
}

.about-image-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: logoPulse 3s ease-in-out infinite;
}

.about-image-badge img {
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.05);
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.about-list {
  margin: 24px 0 32px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.1));
  transform: scale(1.05);
}

.service-icon img {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-light);
}

/* Big Service Cards */
.services-grid-big {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
}

.service-card-big {
  display: grid;
  grid-template-columns: minmax(320px, 40%) 1fr;
  padding: 0;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease;
}

.service-card-big:nth-child(even) {
  grid-template-columns: 1fr minmax(320px, 40%);
}

.service-card-big:nth-child(even) .service-card-visual {
  order: 2;
  border-right: none;
  border-left: 1px solid var(--border-light);
}

.service-card-big:nth-child(even) .service-card-body {
  order: 1;
}

.service-card-big:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.2);
  border-color: var(--border);
}

.service-card-visual {
  position: relative;
  background: var(--navy-mid);
  display: block;
  padding: 0;
  border-right: 1px solid var(--border-light);
  min-height: 300px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  isolation: isolate;
}

.service-card-visual::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: calc(var(--radius-lg) - 8px);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 4;
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-big:hover .service-card-visual::before {
  opacity: 1;
  transform: scale(1);
}

.service-card-big:hover .service-card-visual::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-mid);
}

.service-big-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.4s;
  filter: none !important;
}

.service-big-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.service-big-photo.is-loading {
  opacity: 1;
}

.service-big-photo.is-loaded {
  opacity: 1;
}

.service-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 26, 0.05) 0%, rgba(6, 11, 26, 0.35) 45%, rgba(6, 11, 26, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 11, 26, 0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.45s ease;
}

.service-card-big:nth-child(even) .service-visual-overlay {
  background:
    linear-gradient(180deg, rgba(6, 11, 26, 0.05) 0%, rgba(6, 11, 26, 0.35) 45%, rgba(6, 11, 26, 0.88) 100%),
    linear-gradient(270deg, rgba(6, 11, 26, 0.55) 0%, transparent 55%);
}

.service-card-big:hover .service-big-photo {
  transform: scale(1.1);
}

.service-card-big:hover .service-visual-overlay {
  opacity: 0.92;
}

.service-cat-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(6, 11, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.service-num {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 4;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  pointer-events: none;
  letter-spacing: -0.02em;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-card-big:hover .service-num {
  opacity: 0.38;
  transform: translateY(-4px);
}

.service-card-body {
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-points {
  margin-bottom: 20px;
}

.service-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 8px;
}

.service-points li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

@media (prefers-reduced-motion: reduce) {
  .service-card-big,
  .service-big-photo,
  .service-card-visual::before,
  .service-card-visual::after,
  .service-num,
  .service-visual-overlay {
    transition: none !important;
  }

  .service-card-big:hover {
    transform: none;
  }

  .service-card-big:hover .service-big-photo {
    transform: scale(1.04);
  }
}

/* Categories Section */
.categories {
  background: linear-gradient(180deg, var(--navy) 0%, #050914 100%);
  position: relative;
  overflow: hidden;
}

.categories::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.cat-tab {
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.cat-tab:hover {
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.25);
  background: rgba(201, 162, 39, 0.08);
}

.cat-tab.active {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
  transform: translateY(-1px);
}

.cat-count {
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.cat-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.cat-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.15);
}

.cat-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.cat-card.cat-hidden {
  display: none;
}

.cat-card.cat-enter {
  animation: catCardIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: var(--cat-stagger, 0s);
}

@keyframes catCardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cat-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  max-height: 230px;
  display: block;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.cat-card-img-wrap-photo::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: calc(var(--radius) - 2px);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-card-img-wrap-photo::before {
  opacity: 1;
  transform: scale(1);
}

.cat-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-mid);
}

.cat-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 26, 0.08) 0%, rgba(6, 11, 26, 0.45) 55%, rgba(6, 11, 26, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.cat-card:hover .cat-visual-overlay {
  opacity: 0.88;
}

.cat-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(6, 11, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 5px 12px;
  border-radius: 50px;
}

.cat-img-badge-call {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cat-img-badge-wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
}

.cat-img-badge-rate {
  top: auto;
  bottom: 14px;
  left: 14px;
  right: auto;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(6, 11, 26, 0.82);
  border-color: rgba(201, 162, 39, 0.55);
  padding: 7px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.cat-card-success {
  border-color: rgba(201, 162, 39, 0.28);
}

.cat-card-success:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.cat-card-img-success {
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 162, 39, 0.22) 0%, transparent 55%),
    linear-gradient(165deg, rgba(201, 162, 39, 0.14) 0%, rgba(6, 11, 26, 0.98) 100%);
  overflow: hidden;
}

.cat-card-img-success .cat-img-badge-rate {
  top: 14px;
  bottom: auto;
}

.cat-success-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-success-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.4);
  animation: catSuccessPulse 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  animation-play-state: paused;
  pointer-events: none;
}

.cat-success-pulse-2 {
  animation-delay: 0.95s;
}

.cat-success-pulse-3 {
  animation-delay: 1.9s;
}

@keyframes catSuccessPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.cat-success-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  animation: catSuccessOrbit 8s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}

.cat-success-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.8);
}

.cat-success-orbit-dot:nth-child(1) {
  top: 0;
  left: 50%;
  margin-left: -3px;
}

.cat-success-orbit-dot:nth-child(2) {
  bottom: 12px;
  left: 8px;
}

.cat-success-orbit-dot:nth-child(3) {
  bottom: 12px;
  right: 8px;
}

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

.cat-success-chart {
  position: relative;
  z-index: 2;
  width: 130px;
  height: 130px;
  transform: rotate(-90deg);
}

.cat-success-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 8;
}

.cat-success-fill {
  fill: none;
  stroke: url(#catSuccessGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 364.4;
  stroke-dashoffset: 364.4;
  filter: url(#catSuccessGlow);
}

.cat-card-success.is-visible .cat-success-fill {
  animation: catSuccessRingFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, catSuccessRingGlow 2.4s ease-in-out infinite 2.2s;
}

.cat-card-success.is-visible .cat-success-pulse {
  animation-play-state: running;
}

.cat-card-success.is-visible .cat-success-orbit {
  animation-play-state: running;
}

.cat-card-success.is-visible .cat-success-ticker-track {
  animation-play-state: running;
}

.cat-success-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.9);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.cat-success-spark-1 { top: 18%; left: 22%; }
.cat-success-spark-2 { top: 24%; right: 20%; }
.cat-success-spark-3 { bottom: 28%; left: 18%; }
.cat-success-spark-4 { bottom: 22%; right: 22%; }

.cat-card-success.is-visible .cat-success-spark {
  animation: catSuccessSpark 2.4s ease-in-out infinite;
}

.cat-card-success.is-visible .cat-success-spark-2 { animation-delay: 0.6s; }
.cat-card-success.is-visible .cat-success-spark-3 { animation-delay: 1.2s; }
.cat-card-success.is-visible .cat-success-spark-4 { animation-delay: 1.8s; }

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

@keyframes catSuccessRingFill {
  to { stroke-dashoffset: 3.64; }
}

@keyframes catSuccessRingGlow {
  0%, 100% {
    filter: url(#catSuccessGlow);
    opacity: 1;
  }
  50% {
    opacity: 0.88;
  }
}

.cat-success-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.cat-success-num-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.cat-success-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
}

.cat-card-success.is-visible .cat-success-num {
  animation: catSuccessNumPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.cat-success-pct {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
  margin-left: 1px;
  opacity: 0;
}

.cat-card-success.is-visible .cat-success-pct {
  animation: catSuccessNumPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

.cat-success-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 4px;
  opacity: 0;
}

.cat-card-success.is-visible .cat-success-sub {
  animation: catSuccessFadeUp 0.6s ease 1.1s forwards;
}

.cat-success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 6px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--gold-light);
  opacity: 0;
  transform: scale(0.5);
}

.cat-card-success.is-visible .cat-success-check {
  animation: catSuccessCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s forwards;
}

@keyframes catSuccessNumPop {
  from {
    opacity: 0;
    transform: scale(0.6) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

@keyframes catSuccessCheckPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cat-success-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  z-index: 4;
}

.cat-success-ticker-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: catSuccessTicker 14s linear infinite;
  animation-play-state: paused;
}

.cat-success-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  background: rgba(6, 11, 26, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  white-space: nowrap;
}

.cat-success-chip em {
  font-style: normal;
  color: #4ade80;
  font-weight: 700;
}

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

.cat-card:hover .cat-success-chart {
  transform: rotate(-90deg) scale(1.05);
  transition: transform 0.45s ease;
}

.cat-card:hover .cat-success-num {
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.35);
}

.cat-title-rate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.cat-title-rate .rate-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.cat-card-img-wrap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.12) 0%, var(--navy-mid) 100%);
}

.cat-card-img-call {
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.18) 0%, rgba(6, 11, 26, 0.95) 100%);
}

.cat-call-visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-call-pulse {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.45);
  animation: catCallPulse 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  pointer-events: none;
}

.cat-call-pulse-2 {
  animation-delay: 1.2s;
}

@keyframes catCallPulse {
  0% {
    width: 72px;
    height: 72px;
    opacity: 0.75;
  }
  100% {
    width: 118px;
    height: 118px;
    opacity: 0;
  }
}

.cat-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 26, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.cat-card:hover .cat-icon-ring {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.2);
}

.cat-icon-ring-wa {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.12);
}

.cat-icon-ring-call {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-color: rgba(201, 162, 39, 0.55);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.22), rgba(6, 11, 26, 0.85));
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.25);
  animation: catCallRing 2.8s ease-in-out infinite;
}

@keyframes catCallRing {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.25);
  }
  50% {
    box-shadow: 0 8px 36px rgba(201, 162, 39, 0.45), 0 0 0 6px rgba(201, 162, 39, 0.12);
  }
}

.cat-call-icon {
  width: 40px;
  height: 40px;
}

.cat-card:hover .cat-icon-ring-call {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(201, 162, 39, 0.4);
}

.cat-card-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: none !important;
}

.cat-card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.35s;
  filter: none !important;
}

.cat-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  opacity: 1;
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.cat-card-photo.is-loading {
  opacity: 1;
}

.cat-card-photo.is-loaded {
  opacity: 1;
}

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

.cat-img-raw,
.icon-raw {
  filter: none !important;
}

.cat-card-img-wa {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.cat-card-action.cat-card-call {
  border-color: rgba(201, 162, 39, 0.25);
}

.cat-card-action.cat-card-call:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.3);
}

.cat-link-call:hover {
  color: var(--gold-light);
}

.cat-card-action.cat-card-wa {
  border-color: rgba(37, 211, 102, 0.25);
}

.cat-card-action.cat-card-wa:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(37, 211, 102, 0.25);
}

.cat-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.85;
}

.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.35s ease;
}

.cat-card:hover .cat-card-body h3 {
  color: var(--gold-light);
}

.cat-card-body p {
  font-size: 0.86rem;
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.35s ease, gap 0.35s ease;
}

.cat-link-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-link:hover {
  color: var(--gold-light);
}

.cat-link:hover .cat-link-arrow {
  transform: translateX(5px);
}

.cat-link-action {
  font-weight: 700;
}

.cat-link-wa:hover {
  color: #25d366;
}

@media (prefers-reduced-motion: reduce) {
  .cat-card,
  .cat-card-photo,
  .cat-card-img-wrap-photo::before,
  .cat-icon-ring,
  .cat-visual-overlay,
  .cat-link-arrow {
    transition: none !important;
  }

  .cat-card.cat-enter {
    animation: none;
  }

  .cat-card:hover {
    transform: none;
  }

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

  .cat-call-pulse,
  .cat-icon-ring-call {
    animation: none !important;
  }

  .cat-success-pulse,
  .cat-success-orbit,
  .cat-success-fill,
  .cat-success-num,
  .cat-success-pct,
  .cat-success-sub,
  .cat-success-check,
  .cat-success-ticker-track,
  .cat-success-spark {
    animation: none !important;
    animation-play-state: paused !important;
  }

  .cat-success-fill {
    stroke-dashoffset: 3.64;
    filter: none;
  }

  .cat-card-success.is-visible .cat-success-pulse,
  .cat-card-success.is-visible .cat-success-orbit,
  .cat-card-success.is-visible .cat-success-ticker-track {
    animation-play-state: running !important;
  }

  .cat-success-num,
  .cat-success-pct,
  .cat-success-sub,
  .cat-success-check {
    opacity: 1;
    transform: none;
  }

  .cat-success-spark {
    opacity: 0.6;
  }
}

/* Showcase Section */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.showcase-item {
  position: relative;
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.showcase-item:hover {
  border-color: var(--border);
}

.showcase-item-hero {
  grid-row: span 2;
}

.showcase-img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 420px;
  object-fit: contain;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  filter: none !important;
}

.showcase-item-hero .showcase-img {
  min-height: 360px;
}

.showcase-item-workspace {
  grid-row: span 1;
}

.showcase-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-mid);
}

.showcase-img-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: none !important;
}

.showcase-item-workspace:hover .showcase-img-photo {
  transform: scale(1.05);
}

.showcase-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 11, 26, 0.85) 100%);
  pointer-events: none;
}

.showcase-photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4ade80;
  background: rgba(6, 11, 26, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 50px;
}

.showcase-photo-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.showcase-photo-tag {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.showcase-photo-years {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(201, 162, 39, 0.12);
}

.showcase-caption-gold {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(6, 11, 26, 0.6));
  border-top-color: var(--border);
}

.showcase-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.showcase-caption img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.showcase-item-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  min-height: 200px;
}

.showcase-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.showcase-item-logo p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.showcase-item-clients {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.showcase-clients-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 20px 0;
  flex-wrap: wrap;
}

.showcase-clients-header strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.showcase-clients-header > span {
  font-size: 0.9rem;
  color: var(--cream-muted);
  font-weight: 600;
}

.showcase-clients-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4ade80;
  padding: 4px 10px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 50px;
}

.showcase-clients-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  flex: 1;
}

.showcase-client {
  text-align: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.showcase-client-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.showcase-client-slot.client-out {
  opacity: 0;
  transform: translateX(10px) scale(0.97);
}

.showcase-client-slot.client-in {
  animation: clientSlotIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes clientSlotIn {
  from { opacity: 0; transform: translateX(-12px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.showcase-client-slot img {
  width: 48px;
  height: 48px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  filter: none !important;
  object-fit: contain;
  padding: 4px;
  background: rgba(201, 162, 39, 0.08);
}

.showcase-client-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.showcase-client-city {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

.showcase-caption-clients {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--cream-muted);
}

.showcase-caption-clients .live-dot {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.showcase-client img {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.showcase-client strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.showcase-client span {
  font-size: 0.75rem;
  color: var(--cream-muted);
}

/* Icons Wall */
.icons-wall {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.icons-wall-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
}

.icons-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 16px;
}

.icons-wall-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none !important;
}

.icons-wall-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  background: linear-gradient(160deg, rgba(232, 200, 74, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  min-height: 110px;
  justify-content: center;
}

.icons-wall-item:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-2px);
}

.icons-wall-wa {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.15), rgba(255, 255, 255, 0.02));
}

.icons-wall-item .icon-dots {
  width: 36px;
  height: auto;
  opacity: 0.7;
  filter: none !important;
}

.icons-wall-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cta-banner-logo img {
  filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.3));
}

.cta-banner-text {
  flex: 1;
}

.cta-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-banner-text p {
  font-size: 0.95rem;
  color: var(--cream-muted);
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.04);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

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

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.why-card {
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.why-card-main {
  grid-column: 1 / -1;
  padding: 40px;
}

.why-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 12px 0 4px;
}

.why-card span {
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.why-card-success {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.1) 0%, var(--navy-light) 100%);
  box-shadow: inset 0 1px 0 rgba(232, 200, 74, 0.12);
}

.why-card-success:hover {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.15);
}

.why-success-rate {
  display: inline-flex !important;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  margin: 12px 0 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-success-rate em {
  font-style: normal;
  font-size: 1.6rem;
}

/* Process */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.process-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.1));
  transform: scale(1.08);
}

.why-card img {
  filter: none !important;
  padding: 8px;
  background: rgba(232, 200, 74, 0.2);
  border-radius: 12px;
  object-fit: contain;
}

.process-icon img {
  filter: none !important;
  object-fit: contain;
}

.process-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--border));
  margin-top: 32px;
  opacity: 0.4;
}

/* Live Happy Clients Reviews */
.live-reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.live-review-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 260px;
  transition: opacity 0.5s, transform 0.5s;
}

.live-review-card.fade-out {
  opacity: 0;
  transform: translateY(12px);
}

.live-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.live-review-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.live-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4ade80;
  padding: 5px 12px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 50px;
}

.live-review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 28px;
  min-height: 80px;
}

.live-review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.live-review-author strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.live-review-author span {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.live-review-feed {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-height: 360px;
  overflow: hidden;
}

.live-feed-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.live-feed-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live-feed-slots {
  min-height: 280px;
}

.live-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s;
}

.live-feed-slot.feed-slot-out {
  opacity: 0;
  transform: translateX(12px) scale(0.98);
}

.live-feed-slot.feed-slot-in {
  animation: feedSlotIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes feedSlotIn {
  from {
    opacity: 0;
    transform: translateX(-16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.live-feed-slot:nth-child(1) { border-left: 3px solid var(--gold); }
.live-feed-slot:nth-child(2) { border-left: 3px solid rgba(201, 162, 39, 0.65); }
.live-feed-slot:nth-child(3) { border-left: 3px solid rgba(201, 162, 39, 0.35); }

.live-feed-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: rgba(201, 162, 39, 0.08);
  object-fit: contain;
  padding: 6px;
  filter: none !important;
}

.live-feed-body {
  flex: 1;
  min-width: 0;
}

.live-feed-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.live-feed-city {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: 2px;
  margin-bottom: 6px;
}

.live-feed-item p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.55;
  margin-top: 0;
  margin-bottom: 6px;
}

.live-feed-stars {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.04em;
}

.live-feed-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(201, 162, 39, 0.15);
  flex-shrink: 0;
  filter: none !important;
  object-fit: contain;
}

.live-feed-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.live-feed-item span {
  font-size: 0.7rem;
  color: var(--gold);
}

.live-testimonial-slider {
  margin-top: 20px;
}

/* Testimonials */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 48px;
  height: auto;
  opacity: 0.12;
}

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

.testimonial-card > p {
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 700px;
}

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

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

a.contact-item:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.05);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--white);
}

/* Office Cards — Dubai HQ + Mumbai */
.office-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.office-card {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.office-card-head {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.12), rgba(255, 255, 255, 0.02));
}

.office-card-head::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.office-card-india {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.office-card-india::before {
  background: linear-gradient(90deg, #ff9933, #138808);
  opacity: 0.85;
}

.office-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.office-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  color: var(--gold);
}

.office-card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.office-card-body > span:last-child {
  display: block;
  font-size: 0.78rem;
  color: var(--cream-muted);
  line-height: 1.45;
}

.office-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.office-badge-head {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.office-badge-india {
  color: var(--white);
  background: rgba(19, 136, 8, 0.25);
  border: 1px solid rgba(19, 136, 8, 0.4);
}

.footer-offices {
  margin-bottom: 12px;
}

.footer-office-line {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-office-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}

.footer-office-tag-head {
  color: var(--navy);
  background: var(--gold);
}

.footer-office-tag-india {
  color: var(--white);
  background: rgba(19, 136, 8, 0.5);
  border: 1px solid rgba(19, 136, 8, 0.6);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-form {
  background: var(--navy);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.form-header img {
  width: 48px;
  height: 48px;
  padding: 8px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--cream-muted);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 176, 160, 0.5);
}

.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' viewBox='0 0 24 24' fill='none' stroke='%23b8b0a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--navy);
  color: var(--cream);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-muted);
  margin-top: 14px;
}

.form-note-icon {
  display: inline-block;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
}

.form-error {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.footer-enquiry-btn {
  display: inline-flex;
}

/* Footer */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-badges img {
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: var(--transition);
}

.footer-badges img:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.15);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--cream-muted);
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-bottom: 6px;
}

.footer-email {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px !important;
}

.footer-email a {
  color: var(--gold-light);
  font-weight: 600;
  transition: var(--transition);
}

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

.footer-email-agency {
  font-size: 0.75rem;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Toast */
.toast {
  position: fixed;
  top: calc(var(--top-bar-h) + var(--safe-top) + 16px);
  right: 16px;
  left: 16px;
  max-width: 400px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--navy-mid);
  border: 1px solid rgba(46, 204, 113, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 10000;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.toast strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.toast span {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

/* Mobile Enquiry Bar — hidden (WhatsApp float only) */
.mobile-enquiry-bar {
  display: none !important;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 12px;
  font-size: clamp(0.75rem, 2.8vw, 0.85rem);
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  min-height: 44px;
}

.mobile-bar-call {
  background: var(--navy-mid);
  color: var(--cream);
}

.mobile-bar-enquiry {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
  flex: 1.4;
}

.mobile-bar-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.mobile-bar-btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-bar-call img {
  filter: none !important;
}

.mobile-bar-wa img {
  filter: none;
}

.mobile-bar-enquiry img {
  filter: brightness(0) saturate(100%);
}

/* Reveal Animations */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal.reveal-instant,
.reveal-left.reveal-instant,
.reveal-right.reveal-instant {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .preloader {
    transition: none;
  }
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .service-card-big,
  .service-card-big:nth-child(even) {
    grid-template-columns: minmax(260px, 38%) 1fr;
  }

  .service-card-visual {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .service-card-body {
    padding: 28px 24px;
  }
}

@media (max-width: 1280px) {
  .header-phone-text {
    display: none;
  }

  .header-phone-btn {
    padding: 8px 10px;
  }
}

@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }

  .hero-float-1 { left: 0; }
  .hero-float-2 { right: 0; }
  .hero-float-3 { left: 10%; }

  .cta-banner-inner {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .cta-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --alert-bar-h: 36px;
  }

  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 11, 26, 0.97);
  }

  .header.scrolled {
    background: rgba(6, 11, 26, 0.99);
  }

  .reveal {
    transform: translateY(18px);
  }

  .reveal-left {
    transform: translateX(-22px);
  }

  .reveal-right {
    transform: translateX(22px);
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .service-big-photo,
  .cat-card-photo {
    will-change: auto;
  }

  .container {
    padding: 0 clamp(14px, 3.5vw, 18px);
  }

  .section {
    padding: clamp(48px, 10vw, 64px) 0;
  }

  .header-inner {
    gap: 8px;
  }

  .hero {
    min-height: calc(var(--vh, 1vh) * 100);
    padding: calc(var(--top-bar-h) + var(--safe-top) + 24px) 0 56px;
  }

  .hero-wrapper {
    width: 100%;
  }

  .hero-stats {
    width: 100%;
    max-width: 100%;
    padding: 16px 14px;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    word-break: break-word;
  }

  .hero-desc {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .cities-search,
  .cities-state-select {
    font-size: 16px !important;
  }

  .enquiry-alert-bar {
    overflow: hidden;
    contain: layout;
  }

  .enquiry-alert-msg {
    font-size: 0.72rem;
  }

  .cities-glow-1,
  .cities-glow-2 {
    width: min(280px, 70vw);
    height: min(280px, 70vw);
  }

  .showcase-grid,
  .services-grid,
  .cat-grid,
  .process-steps,
  .footer-grid {
    width: 100%;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: calc(16px + var(--safe-bottom));
    right: 16px;
    z-index: 998;
  }

  .back-to-top {
    bottom: calc(16px + var(--safe-bottom));
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10031;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .hamburger:active,
  .hamburger.active {
    background: rgba(201, 162, 39, 0.16);
    border-color: rgba(201, 162, 39, 0.45);
  }

  .hamburger.active span {
    background: var(--gold-light);
  }

  .header {
    z-index: 10030;
    overflow: visible;
  }

  .header-inner {
    overflow: visible;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    z-index: 10020;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--top-bar-h) + var(--safe-top) + 16px) 20px 28px;
    gap: 14px;
    background:
      linear-gradient(180deg, rgba(201, 162, 39, 0.07) 0%, transparent 24%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    border-left: 1px solid rgba(201, 162, 39, 0.28);
    transform: translate3d(105%, 0, 0);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
    pointer-events: none;
    visibility: hidden;
  }

  .nav::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold), transparent 75%);
  }

  .nav::after {
    content: 'MENU';
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--gold);
    padding-bottom: 12px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

  .nav.open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    visibility: visible;
    box-shadow: -12px 0 44px rgba(0, 0, 0, 0.55);
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 14px;
    min-height: 48px;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border-bottom: none;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(201, 162, 39, 0.12);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  }

  .nav-link:active,
  .header-phone-btn:active,
  .nav-cta:active {
    transform: scale(0.98);
    background: rgba(201, 162, 39, 0.16);
  }

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

  .nav-link.active {
    color: var(--gold-light);
    background: rgba(201, 162, 39, 0.12);
    border-left: 3px solid var(--gold);
    padding-left: 11px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
  }

  .header-phone-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    min-height: 48px;
    font-size: 0.9rem;
    touch-action: manipulation;
  }

  .header-phone-text {
    display: inline;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    min-height: 48px;
  }

  .cat-tab {
    min-height: 44px;
    touch-action: manipulation;
  }

  .cat-link,
  .service-link {
    touch-action: manipulation;
  }

  .hero-wrapper {
    gap: 32px;
  }

  .hero-image {
    max-width: min(100%, 400px);
  }

  .about-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-visual {
    text-align: center;
  }

  .about-image-wrap {
    display: flex;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    text-align: center;
  }

  .hero-stat {
    flex-direction: column;
    text-align: center;
  }

  .hero-case-update {
    max-width: 100%;
    white-space: normal;
    text-overflow: unset;
  }

  .why-card-live-header {
    flex-wrap: wrap;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-float {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    justify-items: center;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    width: 100%;
  }

  .trust-item span {
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  }

  .cta-banner-actions {
    flex-direction: column;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }

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

  .service-card-big {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card-big:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card-big:nth-child(even) .service-card-visual,
  .service-card-big:nth-child(even) .service-card-body {
    order: unset;
  }

  .service-card-visual {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--border-light);
    min-height: 240px;
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }

  .service-card-big:nth-child(even) .service-card-visual {
    border-left: none;
  }

  .service-card-body {
    padding: 24px 20px 28px;
  }

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

  .showcase-item-hero {
    grid-row: span 1;
  }

  .cat-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .process-steps {
    flex-direction: column;
    gap: 0;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .process-step {
    padding: 16px 0;
  }

  .why-visual {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: clamp(32px, 8vw, 36px);
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .hero-desc {
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .btn {
    min-height: 44px;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }

  .mobile-bar-btn {
    flex-direction: column;
    gap: 4px;
    padding: 8px 4px;
  }

  .mobile-bar-btn img {
    width: 20px;
    height: 20px;
  }

  .cat-tabs {
    gap: 8px;
  }

  .cat-tab {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

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

  .cat-card-success {
    border-color: rgba(201, 162, 39, 0.38);
    box-shadow: 0 10px 36px rgba(201, 162, 39, 0.1);
  }

  .cat-card-img-wrap.cat-card-img-success {
    min-height: 268px;
    max-height: none;
    aspect-ratio: auto;
    background:
      radial-gradient(circle at 50% 42%, rgba(201, 162, 39, 0.28) 0%, transparent 58%),
      linear-gradient(165deg, rgba(201, 162, 39, 0.16) 0%, rgba(6, 11, 26, 0.98) 100%);
  }

  .cat-success-visual {
    min-height: 268px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .cat-success-chart {
    width: 158px;
    height: 158px;
    filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.35));
  }

  .cat-card-success.is-visible .cat-success-fill {
    filter: none;
    animation: catSuccessRingFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, catSuccessMobileGlow 2s ease-in-out infinite 1.8s;
  }

  @keyframes catSuccessMobileGlow {
    0%, 100% {
      filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.45));
    }
    50% {
      filter: drop-shadow(0 0 16px rgba(201, 162, 39, 0.75));
    }
  }

  .cat-success-pulse {
    width: 108px;
    height: 108px;
    margin: -54px 0 0 -54px;
    border-width: 2.5px;
  }

  .cat-success-orbit {
    width: 158px;
    height: 158px;
    margin: -79px 0 0 -79px;
  }

  .cat-success-orbit-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.95);
  }

  .cat-success-num {
    font-size: 2.35rem;
  }

  .cat-success-pct {
    font-size: 1.05rem;
  }

  .cat-success-sub {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .cat-success-check {
    width: 30px;
    height: 30px;
    margin-top: 8px;
  }

  .cat-success-spark {
    width: 5px;
    height: 5px;
  }

  .cat-success-ticker {
    height: 38px;
    background: linear-gradient(180deg, transparent, rgba(6, 11, 26, 0.55));
  }

  .cat-success-ticker-track {
    animation-duration: 10s;
  }

  .cat-success-chip {
    font-size: 0.72rem;
    padding: 6px 14px;
    background: rgba(6, 11, 26, 0.88);
    border-color: rgba(201, 162, 39, 0.45);
  }

  .cat-card-success.is-visible .cat-success-pulse {
    animation-duration: 2.2s;
  }

  .cat-card-success.is-visible .cat-success-orbit {
    animation-duration: 6s;
  }

  .cat-card-success:active .cat-success-chart {
    transform: rotate(-90deg) scale(1.04);
    transition: transform 0.3s ease;
  }

  .live-reviews-layout {
    grid-template-columns: 1fr;
  }

  .icons-wall-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-clients-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .showcase-photo-tag {
    font-size: 0.95rem;
  }

  .showcase-photo-years {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .cities-services {
    padding: 16px;
  }

  .cities-service-tag {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .toast {
    left: 12px;
    right: 12px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .whatsapp-float {
    bottom: calc(16px + var(--safe-bottom));
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    bottom: calc(16px + var(--safe-bottom));
    left: 16px;
  }

  .heritage-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 18px 16px;
  }

  .heritage-track {
    order: 2;
    height: 28px;
  }

  .heritage-year-start { order: 1; }
  .heritage-year-end { order: 3; }

  .heritage-track-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .hero-badge-years {
    width: 100%;
    text-align: center;
    margin-top: 2px;
  }

  .heritage-years {
    font-size: 1.2rem;
  }
}

/* ========================================
   Policy Page
   ======================================== */

.policy-page {
  scroll-padding-top: calc(var(--top-bar-h) + var(--safe-top) + 20px);
}

.policy-hero {
  position: relative;
  padding: calc(var(--top-bar-h) + var(--safe-top) + 48px) 0 56px;
  overflow: hidden;
}

.policy-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy-mid) 100%);
  z-index: 0;
}

.policy-hero-bg .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.policy-hero-bg .hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-bottom: 20px;
}

.policy-breadcrumb a {
  color: var(--gold);
  transition: var(--transition);
}

.policy-breadcrumb a:hover {
  color: var(--gold-light);
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.policy-hero-badge img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.policy-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.policy-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.policy-hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 28px;
}

.policy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.policy-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.policy-meta-item img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.policy-meta-item strong {
  color: var(--cream);
}

/* Pillars */
.policy-pillars {
  padding: 0 0 48px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.policy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.policy-pillar {
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.policy-pillar:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.policy-pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(232, 200, 74, 0.25), rgba(201, 162, 39, 0.1));
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
}

.policy-pillar-icon img {
  filter: none !important;
}

.policy-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.policy-pillar p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.65;
}

/* Layout */
.policy-main {
  padding: 48px 0 80px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.policy-sidebar-inner {
  position: sticky;
  top: calc(var(--top-bar-h) + var(--safe-top) + 24px);
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.policy-sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.policy-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-toc-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: var(--transition);
}

.policy-toc-link:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.policy-toc-link.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
  border-left-color: var(--gold);
}

.policy-sidebar-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.policy-sidebar-cta p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin-bottom: 12px;
}

/* Policy Blocks */
.policy-block {
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  scroll-margin-top: calc(var(--top-bar-h) + var(--safe-top) + 24px);
}

.policy-block-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.policy-block-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.policy-block-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--white);
  margin-bottom: 4px;
}

.policy-block-sub {
  font-size: 0.9rem;
  color: var(--cream-muted);
}

.policy-block-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 24px 0 12px;
}

.policy-block-body h3:first-child {
  margin-top: 0;
}

.policy-block-body p {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-block-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-block-body a:hover {
  color: var(--gold-light);
}

.policy-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.policy-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.policy-list.compact li {
  padding: 5px 0 5px 18px;
  font-size: 0.88rem;
}

.policy-ordered {
  margin: 0 0 16px 20px;
  padding: 0;
}

.policy-ordered li {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.policy-callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 20px;
}

.policy-callout.warning {
  background: rgba(180, 60, 60, 0.08);
  border-color: rgba(180, 60, 60, 0.25);
}

.policy-callout img {
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.policy-callout strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.policy-callout p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin: 0;
  line-height: 1.65;
}

.policy-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.policy-mini-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
}

.policy-mini-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.policy-compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.policy-compliance-col {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.policy-compliance-col.allowed {
  background: rgba(40, 120, 80, 0.08);
  border-color: rgba(40, 120, 80, 0.25);
}

.policy-compliance-col.prohibited {
  background: rgba(180, 60, 60, 0.08);
  border-color: rgba(180, 60, 60, 0.25);
}

.policy-compliance-col h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 14px;
}

.policy-compliance-col h4 img {
  filter: none !important;
}

.policy-compliance-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-compliance-col li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.55;
}

.policy-compliance-col li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.policy-contact-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 16px 0 20px;
}

.policy-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.policy-contact-row:last-child {
  border-bottom: none;
}

.policy-contact-row img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-contact-row strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.policy-contact-row p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin: 0;
}

/* Policy Responsive */
@media (max-width: 1024px) {
  .policy-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .policy-sidebar-inner {
    position: static;
  }

  .policy-toc {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .policy-toc-link {
    border-left: none;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .policy-toc-link.active {
    border-color: var(--gold);
  }
}

@media (max-width: 768px) {
  .policy-hero {
    padding: calc(var(--top-bar-h) + var(--safe-top) + 32px) 0 40px;
  }

  .policy-pillars-grid {
    grid-template-columns: 1fr;
  }

  .policy-block {
    padding: 24px 20px;
  }

  .policy-block-header {
    flex-direction: column;
    gap: 8px;
  }

  .policy-grid-2,
  .policy-compliance-grid {
    grid-template-columns: 1fr;
  }

  .policy-hero-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================
   All India Cities
   ======================================== */

.cities {
  position: relative;
  overflow: hidden;
}

.cities-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cities-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cities-glow-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(201, 162, 39, 0.1);
}

.cities-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: rgba(201, 162, 39, 0.07);
}

.cities-map-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cities-inner {
  position: relative;
  z-index: 1;
}

.cities-services {
  margin-bottom: 28px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cities-services-lead {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cities-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cities-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  transition: var(--transition);
}

.cities-service-tag img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.cities-service-tag:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.cities-selected-services {
  font-size: 0.78rem;
  color: var(--cream-muted);
  margin-top: 4px;
  line-height: 1.5;
  max-width: 360px;
}

.cities .section-title em {
  font-style: italic;
  color: var(--gold);
}

.cities-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.cities-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.cities-stat:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.cities-stat-highlight {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0.04));
  border-color: var(--border);
}

.cities-stat img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
  flex-shrink: 0;
}

.cities-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.cities-stat span {
  font-size: 0.78rem;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}

/* States & UTs official numbered list */
.states-uts-panel {
  margin-bottom: 32px;
  padding: 28px 32px;
  background: rgba(12, 18, 40, 0.65);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.states-uts-header {
  text-align: center;
  margin-bottom: 28px;
}

.states-uts-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.states-uts-title strong {
  color: var(--gold-light);
  font-weight: 700;
}

.states-uts-sub {
  font-size: 0.88rem;
  color: var(--cream-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.states-uts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.states-uts-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.states-uts-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.states-uts-badge-state {
  background: rgba(201, 162, 39, 0.18);
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.states-uts-badge-ut {
  background: rgba(100, 149, 237, 0.12);
  color: #8eb4f0;
  border: 1px solid rgba(100, 149, 237, 0.25);
}

.states-uts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.states-uts-list::-webkit-scrollbar {
  width: 5px;
}

.states-uts-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.states-uts-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.states-uts-item:hover {
  background: rgba(201, 162, 39, 0.06);
  border-color: var(--border-light);
}

.states-uts-item.active {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--border);
}

.states-uts-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-align: center;
  padding: 4px 6px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 6px;
  white-space: nowrap;
}

.states-uts-num-ut {
  color: #8eb4f0;
  background: rgba(100, 149, 237, 0.1);
}

.states-uts-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

.states-uts-cities {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream-muted);
  white-space: nowrap;
  opacity: 0.75;
}

.states-uts-item.active .states-uts-name {
  color: var(--gold-light);
}

.cities-legacy-years {
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  color: var(--gold-light) !important;
}

.cities-legacy-years span {
  font-size: 1rem;
  color: var(--cream-muted);
  font-weight: 500;
  margin: 0 2px;
}

.cities-marquee-wrap {
  margin-bottom: 28px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cities-marquee {
  overflow: hidden;
}

.cities-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: citiesMarquee 45s linear infinite;
}

.cities-marquee-track:hover {
  animation-play-state: paused;
}

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

.cities-marquee-item {
  flex-shrink: 0;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.cities-panel {
  background: rgba(12, 18, 40, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.cities-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.cities-filters-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: end;
}

.cities-state-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cities-state-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.cities-state-select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.cities-state-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.cities-state-select option,
.cities-state-select optgroup {
  background: var(--navy);
  color: var(--cream);
}

.cities-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cities-search-icon {
  position: absolute;
  left: 16px;
  color: var(--gold);
  pointer-events: none;
}

.cities-search {
  width: 100%;
  padding: 14px 120px 14px 46px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cities-search::placeholder {
  color: var(--cream-muted);
  opacity: 0.7;
}

.cities-search:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.cities-search-count {
  position: absolute;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  pointer-events: none;
}

.cities-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cities-region {
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream-muted);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cities-region:hover {
  color: var(--gold-light);
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.06);
}

.cities-region.active {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.cities-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: citySelectIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes citySelectIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cities-selected-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cities-selected-info img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.cities-selected-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}

.cities-selected-info strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  max-height: min(520px, 60vh);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--navy-mid);
}

.cities-grid::-webkit-scrollbar {
  width: 6px;
}

.cities-grid::-webkit-scrollbar-track {
  background: var(--navy-mid);
  border-radius: 3px;
}

.cities-grid::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

.city-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  font-family: var(--font-body);
  text-align: left;
  color: var(--cream);
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: cityChipIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cityChipIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.city-chip:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.city-chip.active {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.06));
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.15);
}

.city-chip-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.city-chip-region {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.85;
}

.city-chip-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.city-chip {
  position: relative;
}

.city-chip.active .city-chip-dot {
  opacity: 1;
}

.city-chip-status {
  font-size: 0.62rem;
  font-weight: 600;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.city-chip:hover .city-chip-status,
.city-chip.active .city-chip-status {
  color: var(--gold-light);
}

.cities-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

.cities-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.cities-note img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.cities-note strong {
  color: var(--gold-light);
}

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

  .states-uts-grid {
    gap: 20px;
  }

  .states-uts-list {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .cities-filters-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    max-height: min(480px, 55vh);
    gap: 8px;
  }

  .cities-panel {
    padding: 18px 14px;
  }

  .cities-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cities-stat {
    padding: 14px 12px;
    gap: 10px;
  }

  .states-uts-panel {
    padding: 20px 16px;
    margin-bottom: 24px;
  }

  .states-uts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .states-uts-title {
    font-size: 1.15rem;
  }

  .states-uts-item {
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    padding: 9px 12px;
  }

  .states-uts-list {
    max-height: none;
  }

  .cities-stat strong {
    font-size: 1.2rem;
  }

  .cities-search {
    padding-right: 16px;
    padding-bottom: 38px;
  }

  .cities-search-count {
    right: auto;
    left: 46px;
    bottom: 10px;
    top: auto;
  }

  .cities-regions {
    gap: 6px;
  }

  .cities-region {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    max-height: 360px;
  }

  .cities-selected {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ========================================
   International Investigation
   ======================================== */

.international {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.intl-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intl-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.intl-glow-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: rgba(201, 162, 39, 0.12);
}

.intl-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: rgba(80, 120, 200, 0.08);
}

.intl-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
}

.intl-inner {
  position: relative;
  z-index: 1;
}

.intl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intl-tag img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.international .section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.intl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.intl-stat {
  text-align: center;
  padding: 22px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.intl-stat:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.intl-stat-highlight {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.04));
  border-color: var(--border);
}

.intl-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 6px;
}

.intl-stat span {
  font-size: 0.78rem;
  color: var(--cream-muted);
  letter-spacing: 0.03em;
}

.intl-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.intl-hq-card {
  padding: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.intl-hq-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin: 10px 0 10px;
}

.intl-hq-card p {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.intl-hq-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.intl-hq-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.intl-hq-meta img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.intl-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.intl-services li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.intl-services li:hover {
  border-color: var(--border);
  background: rgba(201, 162, 39, 0.06);
  transform: translateX(4px);
}

.intl-services li img {
  flex-shrink: 0;
  margin-top: 2px;
  filter: none !important;
  padding: 6px;
  background: linear-gradient(145deg, rgba(232, 200, 74, 0.25), rgba(201, 162, 39, 0.1));
  border-radius: 10px;
  border: 1px solid var(--border);
}

.intl-services strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 2px;
}

.intl-services span {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.45;
}

.intl-trust-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-bottom: 24px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius);
}

.intl-trust-box img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
}

.intl-trust-box strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.intl-trust-box p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin: 0;
}

.intl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.intl-wa-btn {
  flex: 1;
  min-width: 240px;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  border-color: #25d366 !important;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}

.intl-wa-btn:hover {
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.intl-enquiry-btn {
  flex: 1;
  min-width: 200px;
}

.intl-response-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #4ade80;
  font-weight: 600;
}

.intl-response-note span:last-child {
  transition: opacity 0.35s ease;
}

.intl-globe-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  aspect-ratio: 520 / 480;
  background: var(--navy-mid);
}

.intl-globe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.intl-globe-badge {
  position: absolute;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.intl-globe-badge-dubai {
  top: 16px;
  left: 16px;
  color: #4ade80;
  background: rgba(6, 11, 26, 0.85);
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.intl-globe-badge-mumbai {
  bottom: 16px;
  right: 16px;
  color: var(--gold-light);
  background: rgba(6, 11, 26, 0.85);
  border: 1px solid var(--border);
}

.intl-regions h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 14px;
}

.intl-region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intl-region-tags span {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  transition: var(--transition);
}

.intl-region-tags span:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}

.intl-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.intl-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.intl-cta-text img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(95%);
  flex-shrink: 0;
}

.intl-cta-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}

.intl-cta-text p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin: 0;
}

.intl-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1024px) {
  .intl-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intl-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .intl-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .intl-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .intl-stat {
    padding: 16px 12px;
  }

  .intl-stat strong {
    font-size: 1.25rem;
  }

  .intl-actions {
    flex-direction: column;
  }

  .intl-wa-btn,
  .intl-enquiry-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .intl-cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .intl-cta-btns {
    flex-direction: column;
  }

  .intl-cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

