/*
Theme Name: SPHR Theme
Theme URI: https://sphr-hr.com/
Author: Super Professional HR
Author URI: https://sphr-hr.com/
Description: Custom WordPress theme for Super Professional HR (SPHR).
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: sphr-theme
*/
/* ═══════════════════════════════════════════════════
   SPHR — Super Professional HR | Premium Stylesheet
   Brand Colors: Navy #001B3D | Gold #D4A017 | Silver #C0C0C0
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --navy: #001B3D;
  --navy-light: #012654;
  --navy-mid: #01306b;
  --gold: #D4A017;
  --gold-light: #e8b82a;
  --gold-dim: rgba(212, 160, 23, 0.15);
  --gold-dim2: rgba(212, 160, 23, 0.06);
  --silver: #C0C0C0;
  --gray-lt: #E5E5E5;
  --beige: #F5EBDD;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --text-dark: #0d1b2a;
  --text-muted: #6b7a8d;
  --text-light: rgba(255, 255, 255, 0.75);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-ui: 'Outfit', sans-serif;
  --font-arabic: 'Cairo', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0, 27, 61, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 27, 61, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 27, 61, 0.2);
  --shadow-gold: 0 8px 32px rgba(212, 160, 23, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1240px;
  --nav-height: 80px;
}

/* ── ARABIC TYPOGRAPHY (Google Cairo Font) ── */
html[lang^="ar"],
body.rtl,
:lang(ar) {
  font-family: var(--font-arabic) !important;
}

html[lang^="ar"] h1,
html[lang^="ar"] h2,
html[lang^="ar"] h3,
html[lang^="ar"] h4,
html[lang^="ar"] h5,
html[lang^="ar"] h6,
html[lang^="ar"] p,
html[lang^="ar"] a,
html[lang^="ar"] span,
html[lang^="ar"] button,
html[lang^="ar"] input,
html[lang^="ar"] textarea,
html[lang^="ar"] select,
html[lang^="ar"] label,
html[lang^="ar"] li,
html[lang^="ar"] td,
html[lang^="ar"] th,
html[lang^="ar"] .hero-title,
html[lang^="ar"] .section-title,
html[lang^="ar"] .nav-link,
html[lang^="ar"] .btn-primary,
html[lang^="ar"] .btn-outline-gold,
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6,
body.rtl p,
body.rtl a,
body.rtl span,
body.rtl button,
body.rtl input,
body.rtl textarea,
body.rtl select,
body.rtl label,
body.rtl li,
body.rtl td,
body.rtl th,
body.rtl .hero-title,
body.rtl .section-title,
body.rtl .nav-link,
body.rtl .btn-primary,
body.rtl .btn-outline-gold {
  font-family: var(--font-arabic) !important;
}

/* ── FONT AWESOME ICON PROTECTION (Prevents Cairo from overriding icon fonts) ── */
.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-duotone,
.fa-brands,
[class^="fa-"],
[class*=" fa-"],
html[lang^="ar"] .fa,
html[lang^="ar"] .fas,
html[lang^="ar"] .far,
html[lang^="ar"] .fal,
html[lang^="ar"] .fad,
html[lang^="ar"] .fab,
html[lang^="ar"] .fa-solid,
html[lang^="ar"] .fa-regular,
html[lang^="ar"] .fa-light,
html[lang^="ar"] .fa-thin,
html[lang^="ar"] .fa-duotone,
html[lang^="ar"] .fa-brands,
html[lang^="ar"] [class^="fa-"],
html[lang^="ar"] [class*=" fa-"],
body.rtl .fa,
body.rtl .fas,
body.rtl .far,
body.rtl .fal,
body.rtl .fad,
body.rtl .fab,
body.rtl .fa-solid,
body.rtl .fa-regular,
body.rtl .fa-light,
body.rtl .fa-thin,
body.rtl .fa-duotone,
body.rtl .fa-brands,
body.rtl [class^="fa-"],
body.rtl [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
}

/* ── ARABIC HERO TYPOGRAPHY ADJUSTMENTS ── */
html[lang^="ar"] .hero-title,
body.rtl .hero-title,
html[lang^="ar"] .hero-title .title-light,
html[lang^="ar"] .hero-title .title-gold,
body.rtl .hero-title .title-light,
body.rtl .hero-title .title-gold {
  font-size: clamp(1.4rem, 3.2vw, 2.8rem) !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

html[lang^="ar"] .page-hero .hero-title,
html[lang^="ar"] .hero-about-page .hero-title,
body.rtl .page-hero .hero-title,
body.rtl .hero-about-page .hero-title {
  font-size: clamp(1.3rem, 2.1vw, 2.0rem) !important;
  line-height: 1.45 !important;
}

html[lang^="ar"] .hero-subtitle,
body.rtl .hero-subtitle {
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  max-width: 600px !important;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ── SHARED UTILITIES ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-label-light {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 16px auto 0;
}

.gold-text {
  color: var(--gold);
}

.gold-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

.gold-line-center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.text-light-muted {
  color: var(--text-light);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.play-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  padding-left: 2px;
  flex-shrink: 0;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.mobile-menu-cta {
  display: none;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(0, 12, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-mark-sm {
  font-size: 1.4rem;
}

.logo-sp {
  color: var(--white);
}

.logo-hr {
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid rgba(212, 160, 23, 0.4);
  padding-left: 12px;
}

.logo-name {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Custom Uploaded Logo Styles */
.custom-logo-wrapper,
.footer-custom-logo-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 40px;
}

.custom-logo-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.custom-logo {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-custom-logo-wrap .custom-logo {
  max-height: 44px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--gold);
  background: var(--gold-dim2);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: calc(100% - 28px);
}

.chevron {
  font-size: 0.72rem;
  margin-left: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

body.rtl .chevron {
  margin-left: 0;
  margin-right: 4px;
}

.nav-dropdown:hover .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  /* extend the hover zone slightly downward so the gap doesn't break hover */
  padding-bottom: 4px;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  /* flush with trigger — no gap */
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(0, 18, 46, 0.97);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: 8px;
  padding-top: 16px;
  /* visual gap lives inside the menu, not outside */
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--gold-dim);
  color: var(--gold);
  padding-left: 20px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.lang-switcher-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0b1320;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.35);
  transform: translateY(-2px);
}

.lang-switcher-btn .lang-icon {
  font-size: 1rem;
  transition: transform 0.4s ease;
}

.lang-switcher-btn:hover .lang-icon {
  transform: rotate(180deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Backdrop Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 12, 32, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 998;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 10, 30, 0.92) 0%,
      rgba(0, 27, 61, 0.85) 50%,
      rgba(0, 10, 30, 0.75) 100%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 27, 61, 0.6), transparent 70%);
  bottom: 0;
  left: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  top: 50%;
  left: 30%;
  animation-delay: -6s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Gold diagonal lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.line-1 {
  height: 60vh;
  right: 28%;
  top: 10%;
  transform: rotate(20deg);
  animation: linePulse 4s ease-in-out infinite;
}

.line-2 {
  height: 40vh;
  right: 22%;
  top: 20%;
  transform: rotate(20deg);
  animation: linePulse 4s ease-in-out infinite 2s;
  opacity: 0.15;
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 36px) 32px 32px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 720px;
  animation: fadeInUp 0.8s 0.1s both;
}

.title-light {
  color: var(--white);
}

.title-gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s both;
}

/* Services bar */
.hero-services-bar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  margin-bottom: 20px;
  max-width: 680px;
  animation: fadeInUp 0.8s 0.3s both;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.service-pill:hover {
  color: var(--gold);
}

.service-pill svg {
  color: var(--gold);
  flex-shrink: 0;
}

.pill-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s both;
}

/* Hero Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  background: rgba(0, 5, 18, 0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  animation: fadeInUp 0.8s 0.6s both;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  gap: 3px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1s both;
}

.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover .about-img {
  transform: scale(1.04);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 27, 61, 0.3) 0%, transparent 60%);
}

/* Gold accent frame */
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
  z-index: 1;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.6;
}

.about-card-float {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 160, 23, 0.2);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-icon {
  flex-shrink: 0;
}

.float-number {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.float-desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-icon-sm {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.services {
  background: var(--white);
}

.section-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition-slow);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  opacity: 0;
  transition: var(--transition-slow);
  border-radius: var(--radius-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(212, 160, 23, 0.2);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-lt);
  line-height: 1;
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: rgba(212, 160, 23, 0.2);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-link span {
  transition: var(--transition);
}

.service-link:hover span {
  transform: translate(2px, -2px);
}

.service-card-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  transition: var(--transition-slow);
  pointer-events: none;
}

.service-card:hover .service-card-glow {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.15), transparent 70%);
}

/* Featured card */
.service-card-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.service-card-featured::before {
  opacity: 1;
}

.service-card-featured .service-title {
  color: var(--white);
}

.service-card-featured .service-desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card-featured .service-number {
  color: rgba(212, 160, 23, 0.2);
}

.service-card-featured:hover {
  transform: translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}

/* ══════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════ */
.why-us {
  position: relative;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #00122e 100%);
}

.why-us-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}

.advantage-item:hover {
  background: rgba(212, 160, 23, 0.07);
  border-color: rgba(212, 160, 23, 0.2);
  transform: translateX(8px);
}

.advantage-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(212, 160, 23, 0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.advantage-body h4 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.advantage-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Metrics card */
.metrics-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
}

.metrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metrics-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.metric-row {
  margin-bottom: 20px;
}

.metric-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.metric-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: growBar 1.5s ease-out both;
}

@keyframes growBar {
  from {
    width: 0;
  }

  to {
    width: var(--fill);
  }
}

.metric-val {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
}

.metrics-footer {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ms-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.ms-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process {
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-icon-wrap {
  position: relative;
  margin-bottom: 24px;
}

.step-icon {
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 2px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.process-step:hover .step-icon {
  border-color: var(--gold);
  background: var(--navy);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  background: var(--white);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.3;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid rgba(212, 160, 23, 0.3);
}

.testi-info {
  flex: 1;
}

.testi-name {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.testi-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.testi-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  background: var(--gray-lt);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #00091f 100%);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1), transparent 70%);
  top: -200px;
  left: -200px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  bottom: -100px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ci-value {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}

a.ci-value:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-input::placeholder {
  color: #aab4c0;
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 80px 0 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-quote {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
}

.fq-line {
  flex: 1;
  height: 1px;
  background: rgba(212, 160, 23, 0.3);
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fc-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fc-label i {
  font-size: 0.78rem;
  color: var(--gold);
}

.footer-contact-list a,
.footer-contact-list .fc-val {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {

  .about-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-card-float {
    left: 16px;
  }

  .testimonials-track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin-bottom: 40px;
    /* hide scrollbar for a clean look */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    margin-right: 0;
  }

  /* ── MOBILE SLICK SLIDER: Corp Pillars & Philosophy ── */
  .corp-pillars-grid,
  .philosophy-grid-gold {
    display: block;
  }

  .corp-pillars-grid.slick-initialized,
  .philosophy-grid-gold.slick-initialized {
    display: block !important;
    padding-bottom: 48px;
    position: relative;
  }

  .corp-pillars-grid .slick-list,
  .philosophy-grid-gold .slick-list {
    overflow: hidden !important;
    padding: 8px 0 0 !important;
  }

  .corp-pillars-grid .slick-track,
  .philosophy-grid-gold .slick-track {
    display: flex !important;
  }

  .corp-pillars-grid .slick-slide,
  .philosophy-grid-gold .slick-slide {
    height: auto !important;
    padding: 0 8px 12px;
    box-sizing: border-box;
    outline: none;
  }

  .cp-card,
  .philo-card-gold {
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
  }

  .slick-current .cp-card {
    border-color: var(--gold);
    box-shadow: 0 6px 30px rgba(212, 160, 23, 0.2);
  }

  .slick-current .philo-card-gold {
    box-shadow: 0 6px 30px rgba(212, 160, 23, 0.35);
    background: rgba(0, 24, 60, 0.98);
  }

  .corp-pillars-grid .slick-dots,
  .philosophy-grid-gold .slick-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 7px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .corp-pillars-section,
  .philosophy-section {
    padding-bottom: 20px;
  }


  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
    padding: 0 20px;
  }

  .logo-text {
    display: flex !important;
    flex-direction: column;
  }

  .nav-cta .btn-primary {
    display: none !important;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  :root {
    --nav-height: 64px;
  }

  /* Mobile Side Drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 310px;
    max-width: 85vw;
    background: var(--navy);
    border-left: 1px solid rgba(212, 160, 23, 0.25);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    padding: 84px 24px 40px;
    gap: 8px;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    visibility: hidden;
    margin-left: 0;
    height: 100vh;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
  }

  .nav-link:hover,
  .nav-link.active-link {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.12);
  }

  /* Collapsible Submenu for Solutions in Mobile */
  .nav-dropdown {
    width: 100%;
    max-width: 102px;
    padding-bottom: 0;
    transition: max-width 0.35s ease;
    box-sizing: border-box;
  }

  .nav-dropdown.active {
    max-width: 200px;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown-trigger .chevron {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-trigger .chevron {
    transform: rotate(180deg);
    color: var(--gold);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    border: none;
    border-left: 2px solid rgba(212, 160, 23, 0.3);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 0;
    margin: 4px 0 4px 12px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    box-shadow: none;
    min-width: unset;
    max-width: 200px;
    box-sizing: border-box;
  }

  .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    max-height: 500px;
    pointer-events: all;
    padding: 6px 8px;
  }

  .dropdown-item {
    font-size: 0.92rem;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 200px;
    box-sizing: border-box;
  }

  .dropdown-item:hover,
  .dropdown-item.active {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.15);
    padding-left: 18px;
  }

  .hero-services-bar {
    flex-wrap: wrap;
  }

  .pill-divider {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 50%;
  }

  .hero-scroll {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: calc(var(--nav-height) + 20px) 20px 20px;
  }

  .container {
    padding: 0 20px;
  }

  /* ── MOBILE NAVBAR FIX ── */
  .nav-container {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-tagline {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
  }

  .logo-name {
    font-size: 0.72rem;
  }

  .mobile-menu-cta {
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-gold);
  }
}

/* ══════════════════════════════════════════
   ABOUT US PAGE SPECIFIC STYLES (REFINED & UNIFORM)
══════════════════════════════════════════ */
.active-link {
  color: var(--gold) !important;
  background: var(--gold-dim2);
}

.active-link::after {
  width: calc(100% - 28px) !important;
}

/* About Hero Page override */
.hero-about-page {
  height: auto;
  min-height: 80vh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
}

.hero-about-page .hero-content {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.bc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.bc-item:hover {
  color: var(--gold);
}

.bc-sep {
  color: var(--gold);
  opacity: 0.6;
}

.bc-current {
  color: var(--gold);
  font-weight: 600;
}

/* Section 2: Strategic Corporate Pillars Grid */
.corp-pillars-section {
  background: var(--off-white);
}

.corp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cp-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}

.cp-card:hover,
.cp-card:focus-within,
.cp-card.active {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.2);
}

.cp-num,
.philo-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(212, 160, 23, 0.25);
  position: absolute;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}


/* ── Slick Dots: Gold Pill Style ── */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.slick-dots li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 7px;
  height: 7px;
  transition: width 0.3s ease;
}

.slick-dots li button {
  display: block;
  width: 7px;
  height: 7px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.3);
  border: 1.5px solid rgba(212, 160, 23, 0.45);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.slick-dots li button::before {
  display: none !important;
}

.slick-dots li.slick-active {
  width: 22px;
}

.slick-dots li.slick-active button {
  width: 22px;
  height: 7px;
  border-radius: 7px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 160, 23, 0.55);
}

.cp-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.cp-card:hover .cp-icon-wrap {
  background: rgba(212, 160, 23, 0.25);
  transform: scale(1.05);
}

.cp-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.cp-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.cp-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Section 3: Vision, Mission & Governance — ALL UNIFORM GOLD LUXURY STYLED */
.philosophy-section {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.philosophy-grid-gold {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philo-card-gold {
  position: relative;
  background: rgba(0, 18, 46, 0.85);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  box-shadow: 0 10px 40px rgba(212, 160, 23, 0.12);
  backdrop-filter: blur(16px);
}

.philo-card-gold:hover,
.philo-card-gold:focus-within,
.philo-card-gold.active {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 20px 50px rgba(212, 160, 23, 0.35);
  background: rgba(0, 24, 60, 0.95);
}

.philo-badge-gold {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 13px;
  box-shadow: var(--shadow-sm);
}

.philo-header-gold {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.philo-icon-gold {
  width: 56px;
  height: 56px;
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.philo-card-gold h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
}

.philo-card-gold p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

/* Section 4: History Timeline */
.timeline-section {
  background: var(--off-white);
  position: relative;
}

.timeline-track {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(212, 160, 23, 0.2) 100%);
}

.timeline-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-content-box {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content-box {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Executive Team Grid with Centered CEO Card */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.member-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

/* Center CEO Card Emphasis */
.member-card-ceo {
  border: 2px solid var(--gold);
  box-shadow: 0 14px 40px rgba(212, 160, 23, 0.22);
  background: rgba(255, 253, 248, 1);
  transform: scale(1.03);
  z-index: 2;
}

.member-card-ceo:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 160, 23, 0.32);
}

.member-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: linear-gradient(135deg, var(--navy) 0%, #001a3d 60%, #0a2a5e 100%);
  border-bottom: 2px solid rgba(212, 160, 23, 0.25);
  transition: transform 0.6s ease;
}

.member-card:hover .member-avatar {
  transform: scale(1.06);
  color: var(--white);
  background: linear-gradient(135deg, #001229 0%, rgba(212, 160, 23, 0.18) 100%);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 27, 61, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.member-social-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 18, 46, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.ceo-tag {
  color: var(--navy) !important;
  background: var(--gold) !important;
  font-weight: 700 !important;
  border: none !important;
}

.member-info {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  flex: 1;
}

.ceo-mini-badge {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.member-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.ceo-name {
  font-size: 1.35rem;
  color: var(--navy);
}

.member-role {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.member-dept {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.member-contact-quick {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.mc-link {
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
}

.mc-link:hover {
  color: var(--gold);
}

.mc-sep {
  color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .team-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .member-card-ceo {
    transform: none;
  }
}

@media (max-width: 768px) {
  .team-cards-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Section 5: Comparison Table */
.comparison-section {
  background: var(--white);
}

.comparison-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-lt);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-ui);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.th-sphr {
  color: var(--gold) !important;
  background: #001229 !important;
  border-bottom: 2px solid var(--gold);
}

.comparison-table td {
  border-bottom: 1px solid var(--gray-lt);
  font-size: 0.9rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.td-feature {
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
}

.td-other {
  color: var(--text-muted);
}

.td-sphr {
  font-weight: 600;
  color: var(--navy);
  background: rgba(212, 160, 23, 0.06);
}

.check-icon {
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}

/* Section 6: Industry Sectors */
.industries-section {
  background: var(--off-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ind-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}

.ind-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.ind-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.ind-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.ind-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section 7: CSR Section */
.csr-section {
  background: var(--navy);
  color: var(--white);
}

.csr-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(12px);
}

.csr-badge {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.csr-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.csr-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.csr-pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.csr-pill {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
}

/* Responsive adjustments for unique About page */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-fact-strip {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }

  .fact-divider {
    display: none;
  }

  .philosophy-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .philosophy-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .timeline-track::before {
    left: 18px;
  }

  .timeline-marker {
    width: 38px;
    height: 38px;
  }

  .marker-dot {
    width: 8px;
    height: 8px;
  }

  .timeline-content-box {
    padding: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.82rem;
  }

  .csr-box {
    padding: 32px 20px;
  }
}

/* ══════════════════════════════════════════
   CONTACT PAGE SPECIFIC STYLES
══════════════════════════════════════════ */
/* Section 1: Touchpoints Grid */
.touchpoints-section {
  background: var(--off-white);
}

.touchpoints-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.touch-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.touch-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.touch-icon-box {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.touch-card:hover .touch-icon-box {
  background: rgba(212, 160, 23, 0.25);
  transform: scale(1.05);
}

.touch-badge {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.touch-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.touch-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.touch-link {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.touch-link:hover {
  color: var(--gold);
}

.touch-link-static {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.touch-sublink {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
  transition: var(--transition);
}

.touch-sublink:hover {
  transform: translateX(4px);
}

.touch-subtext {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-lt);
}

.h-row {
  display: flex;
  justify-content: space-between;
  color: var(--navy);
}

/* Section 2: Contact Form Luxury */
.contact-form-section {
  background: var(--white);
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-luxury {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.req {
  color: #e63946;
  font-weight: 700;
}

.form-actions {
  margin-top: 28px;
}

.form-security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lt);
}

.form-success-box {
  background: rgba(0, 27, 61, 0.96);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  color: var(--white);
  margin-top: 24px;
}

.fs-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Section 3: Map Section */
.map-section {
  background: var(--off-white);
}

.map-container-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.map-placeholder {
  position: relative;
  height: 380px;
  background: radial-gradient(circle at 50% 50%, #012654 0%, #001229 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 160, 23, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-pin-badge {
  position: relative;
  z-index: 2;
  background: rgba(0, 18, 46, 0.9);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-gold);
  backdrop-filter: blur(12px);
}

.pin-icon {
  font-size: 1.8rem;
}

.pin-text {
  display: flex;
  flex-direction: column;
}

.pin-text strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.pin-text span {
  color: var(--gold);
  font-size: 0.85rem;
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  background: rgba(212, 160, 23, 0.2);
  border-radius: 50%;
  animation: pulseMapPin 2.5s infinite;
  pointer-events: none;
}

@keyframes pulseMapPin {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.map-details-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #001229;
  padding: 24px 32px;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  flex-wrap: wrap;
  gap: 16px;
}

.map-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.md-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.md-val {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.gold-link {
  color: var(--gold) !important;
}

.map-detail-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* Section 4: FAQ Accordion */
.faq-section {
  background: var(--white);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 160, 23, 0.4);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-content {
  padding: 0 24px 20px;
  display: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-content,
.faq-item.open .faq-content,
.faq-item.active .sp-faq-answer,
.faq-item.open .sp-faq-answer {
  display: block;
}

.faq-item.active .faq-icon,
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active,
.faq-item.open {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Responsive adjustments for Contact Page */
@media (max-width: 1100px) {
  .touchpoints-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-details-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-detail-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .touchpoints-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-luxury {
    padding: 28px 20px;
  }
}

/* ══════════════════════════════════════════
   SERVICE PAGES — SHARED STYLES
══════════════════════════════════════════ */

/* Page Hero (compact inner-page hero) */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  background: url('assets/hero.jpg') center/cover no-repeat;
}

.page-hero .hero-content {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 50px;
  justify-content: center;
  gap: 20px;
}

.page-hero .hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.bc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.bc-item:hover {
  color: var(--gold);
}

.bc-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.bc-current {
  color: var(--gold);
  font-weight: 600;
}

/* Service page body layout */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

/* Sidebar */
.sp-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sp-sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.sp-sidebar-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.sp-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.sp-sidebar-link:hover {
  color: var(--gold);
  background: var(--gold-dim2);
  border-color: rgba(212, 160, 23, 0.15);
  padding-left: 18px;
}

.sp-sidebar-link.active {
  color: var(--navy);
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.3);
  font-weight: 700;
}

.sp-sidebar-link svg {
  flex-shrink: 0;
}

/* CTA sidebar card */
.sp-cta-card {
  background: linear-gradient(135deg, var(--navy), #002a5a);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.sp-cta-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.sp-cta-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sp-cta-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Service overview intro */
.sp-overview {
  background: var(--off-white);
}

.sp-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sp-overview-text .section-label {
  margin-bottom: 12px;
}

.sp-overview-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sp-overview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.sp-ov-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.sp-ov-dot {
  width: 20px;
  height: 20px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Overview visual card */
.sp-overview-visual {
  position: relative;
}

.sp-stat-card {
  background: var(--navy);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

.sp-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sp-stat-item {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.sp-stat-item:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.2);
}

.sp-stat-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.sp-stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
}

/* Included features grid */
.sp-included {
  background: var(--white);
}

.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.sp-feat-card {
  padding: 32px 28px;
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.sp-feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.sp-feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-md);
}

.sp-feat-card:hover::after {
  opacity: 1;
}

.sp-feat-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.sp-feat-card:hover .sp-feat-icon {
  background: var(--navy);
}

.sp-feat-title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sp-feat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Why SPHR for this service */
.sp-why {
  position: relative;
  overflow: hidden;
}

.sp-why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #00122e 100%);
}

/* FAQ Section (service pages) */
.sp-faq {
  background: var(--off-white);
}

.sp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}

.sp-faq-intro h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.sp-faq-intro p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.sp-faq-item:hover {
  border-color: rgba(212, 160, 23, 0.35);
}

.sp-faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
}

.sp-faq-question {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.sp-faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
}

.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.sp-faq-item.open .sp-faq-answer,
.sp-faq-item.active .sp-faq-answer,
.sp-faq-item.open .faq-content,
.sp-faq-item.active .faq-content {
  max-height: 1000px;
  padding: 0 24px 22px;
  display: block;
}

.sp-faq-item.open .sp-faq-icon,
.sp-faq-item.active .sp-faq-icon {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(45deg);
}

.sp-faq-item.open,
.sp-faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* ── RESPONSIVE — Service Pages ── */
@media (max-width: 1100px) {
  .sp-layout {
    grid-template-columns: 1fr;
  }

  .sp-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sp-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sp-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-sidebar {
    grid-template-columns: 1fr;
  }

  .sp-stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .sp-features-grid {
    grid-template-columns: 1fr;
  }

  .sp-stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════ */
.sa-hidden {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.sa-hidden.sa-fade-up {
  transform: translateY(36px);
}

.sa-hidden.sa-fade-left {
  transform: translateX(-48px);
}

.sa-hidden.sa-fade-right {
  transform: translateX(48px);
}

.sa-hidden.sa-stagger {
  transform: translateY(28px) scale(0.97);
}

.sa-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .sa-hidden {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}