/* =====================================================================
   ALTERZ — MAIN STYLESHEET
   Improved for professional responsive behaviour across all screen sizes
   ===================================================================== */
/* ---------- RESET / BASE ---------- */

/* Optimize Phosphor Icons Web Font Display to swap */
@font-face {
  font-family: "Phosphor";
  src: url("https://unpkg.com/@phosphor-icons/web@2.1.1/src/regular/Phosphor.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Phosphor-Fill";
  src: url("https://unpkg.com/@phosphor-icons/web@2.1.1/src/fill/Phosphor-Fill.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); -webkit-text-size-adjust: 100%; overflow-x: hidden !important; }
body { font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--color-text); background: var(--color-bg); overflow-x: hidden !important; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; animation: bodyFadeIn var(--duration-slow) var(--ease-out-soft); }
@keyframes bodyFadeIn {
 from { opacity: 0; }
to { opacity: 1; }
 }
/* Premium Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-navy-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-navy-soft) 100%); border-radius: var(--radius-pill); border: 2px solid var(--color-navy-deep); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--color-gold-light) 0%, var(--color-navy-light) 100%); }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: var(--lh-heading); color: var(--color-navy); font-weight: 500; }
h1 { font-size: calc(var(--fs-h1) * 1.1); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: calc(var(--fs-h2) * 1.1); font-weight: 500; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p { color: var(--color-text-muted); }
::selection { background: var(--color-gold-light); color: var(--color-navy-deep); }
/* ---------- CONTAINER ---------- */
.container-alterz { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-left: var(--space-md); padding-right: var(--space-md); }
/* ---------- SECTION ---------- */
section { padding: var(--section-padding-y) 0; position: relative; overflow: hidden; }
.bg-soft { background: var(--color-bg-soft); }
/* ---------- PREMIUM AMBIENT GLOWS ---------- */
.alterz-glow-blob { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(207, 163, 43, 0.08) 0%, rgba(23, 162, 184, 0.04) 50%, rgba(255,255,255,0) 70%); filter: blur(80px); pointer-events: none; z-index: 0; }
.alterz-glow-blob-1 { top: -10%; left: -10%; }
.alterz-glow-blob-2 { bottom: -10%; right: -10%; }
.alterz-glow-blob-3 { top: 30%; right: 5%; width: 400px; height: 400px; }
/* ---------- EYEBROW / SECTION HEADING ---------- */
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-accent); font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold-deep); margin-bottom: var(--space-sm); }
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gradient-gold-line); border-radius: var(--radius-pill); flex-shrink: 0; }
.section-heading { margin-bottom: var(--space-lg); max-width: 640px; }
.section-heading-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2,
.section-heading-center h2 { margin-bottom: var(--space-xs); }
.section-heading p,
.section-heading-center p { margin-top: var(--space-sm); font-size: var(--fs-body-lg); }
/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn-alterz { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: var(--font-accent); font-weight: 600; font-size: var(--fs-small); letter-spacing: 0.05em; text-transform: uppercase; padding: 1rem 2.2rem; border-radius: var(--radius-btn); border: 2px solid transparent; cursor: pointer; position: relative; overflow: hidden; z-index: 1; transition:
    transform var(--duration-fast) var(--ease-out-soft),
    box-shadow var(--duration-fast) var(--ease-out-soft),
    background-color var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard); white-space: nowrap; text-align: center; line-height: 1.2; }
.btn-alterz::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: none; z-index: -1; }
.btn-alterz:hover::before { left: 100%; transition: left 0.75s ease-in-out; }
.btn-alterz-primary { background: var(--gradient-gold-sheen); color: var(--color-text-on-gold); box-shadow: var(--shadow-btn-gold); }
.btn-alterz-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(207, 163, 43, 0.3), 0 20px 40px rgba(207, 163, 43, 0.35); }
.btn-alterz-primary:active { transform: translateY(-1px); }
.btn-alterz-secondary { background: transparent; border-color: var(--color-navy); color: var(--color-navy); }
.btn-alterz-secondary:hover { background: var(--color-navy); color: var(--color-text-on-navy); transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.btn-alterz-on-navy { background: transparent; border-color: rgba(244, 246, 251, 0.4); color: var(--color-text-on-navy); }
.btn-alterz-on-navy:hover { background: var(--color-text-on-navy); color: var(--color-navy-deep); border-color: var(--color-text-on-navy); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(4, 10, 28, 0.3); }
.btn-alterz-sm { padding: 0.65rem 1.4rem; font-size: var(--fs-small); }
.btn-alterz-block { width: 100%; }
.btn-alterz:focus-visible { outline: 2px solid var(--color-gold-deep); outline-offset: 2px; }
/* =====================================================================
   HEADER
   ===================================================================== */
.alterz-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); display: flex; align-items: center; background: transparent; border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition:
    height var(--duration-base) var(--ease-out-soft),
    box-shadow var(--duration-base) var(--ease-out-soft),
    border-color var(--duration-base) var(--ease-out-soft),
    background-color var(--duration-base) var(--ease-out-soft); }
.alterz-header.is-scrolled { height: var(--header-height-scrolled); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%); box-shadow: var(--shadow-header); border-bottom: 1px solid rgba(207, 163, 43, 0.15); }
.alterz-header .container-alterz { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); }
/* ---------- Logo ---------- */
.alterz-logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.alterz-logo-mark { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--gradient-navy-deep); color: var(--color-gold-light); font-size: 1.2rem; box-shadow: 0 2px 6px rgba(6,15,44,0.2), 0 8px 18px rgba(6,15,44,0.3); flex-shrink: 0; transition: width var(--duration-base) var(--ease-standard), height var(--duration-base) var(--ease-standard); }
.alterz-logo-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: #ffffff; transition: color var(--duration-base) var(--ease-standard); }
.alterz-header.is-scrolled .alterz-logo-text { color: var(--color-navy); }
.alterz-logo-dot { color: var(--color-gold-deep); }
.alterz-logo-text small { font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); transition: color var(--duration-base) var(--ease-standard); }
.alterz-header.is-scrolled .alterz-logo-text small { color: var(--color-text-muted); }
.alterz-logo-sm .alterz-logo-text small { display: none; }
.alterz-logo-sm .alterz-logo-text { font-size: 1.2rem; }
.alterz-logo-sm .alterz-logo-mark { width: 36px; height: 36px; font-size: 1.05rem; }
.alterz-header.is-scrolled .alterz-logo-mark { width: 38px; height: 38px; }
/* Logo image variant */
.alterz-logo-img { height: 52px; max-height: 52px; width: auto; object-fit: contain; transition: height var(--duration-base) var(--ease-standard); }
.alterz-header.is-scrolled .alterz-logo-img { height: 42px !important; max-height: 42px !important; }
.alterz-logo .logo-white { display: block !important; }
.alterz-logo .logo-black { display: none !important; }
.alterz-header.is-scrolled .alterz-logo .logo-white { display: none !important; }
.alterz-header.is-scrolled .alterz-logo .logo-black { display: block !important; }
.alterz-logo-sm .alterz-logo-img { height: 40px !important; max-height: 40px !important; }
.alterz-footer-logo-img { height: 52px; max-height: 52px; width: auto; object-fit: contain; margin-bottom: var(--space-sm); }
/* ---------- Desktop Nav ---------- */
.alterz-nav { display: none; }
.alterz-nav ul { display: flex; align-items: center; gap: var(--space-lg); margin: 0; }
.alterz-nav a { font-family: var(--font-accent); font-weight: 600; font-size: var(--fs-small); letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); position: relative; padding: 0.4rem 0; transition: color var(--duration-fast) var(--ease-standard); }
.alterz-header.is-scrolled .alterz-nav a { color: var(--color-text); }
.alterz-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gradient-gold-line); border-radius: var(--radius-pill); transition: width var(--duration-base) var(--ease-out-soft); }
.alterz-nav a:hover, .alterz-nav a.active { color: #ffffff; }
.alterz-header.is-scrolled .alterz-nav a:hover, .alterz-header.is-scrolled .alterz-nav a.active { color: var(--color-navy); }
.alterz-nav a:hover::after, .alterz-nav a.active::after { width: 100%; }
/* ---------- Header CTA ---------- */
.alterz-header-cta { display: none; align-items: center; gap: var(--space-sm); }
.alterz-header-call { display: flex; align-items: center; gap: 0.6rem; padding-right: var(--space-sm); margin-right: 0.25rem; border-right: 1px solid rgba(255, 255, 255, 0.15); transition: opacity var(--duration-fast) var(--ease-standard), border-color var(--duration-base) var(--ease-standard); }
.alterz-header.is-scrolled .alterz-header-call { border-right: 1px solid var(--color-border); }
.alterz-header-call:hover { opacity: 0.75; }
.alterz-header-call-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--color-gold-pale); color: var(--color-gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 1px solid rgba(207, 163, 43, 0.2); }
.alterz-header-call-text { display: flex; flex-direction: column; line-height: 1.1; }
.alterz-header-call-text small { font-family: var(--font-accent); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.75); transition: color var(--duration-fast); }
.alterz-header.is-scrolled .alterz-header-call-text small { color: var(--color-text-muted); }
.alterz-header-call-text strong { font-family: var(--font-accent); font-size: 1.05rem; font-weight: 700; color: #ffffff; transition: color var(--duration-fast); }
.alterz-header.is-scrolled .alterz-header-call-text strong { color: var(--color-navy); }
.alterz-header-call:hover .alterz-header-call-text strong { color: var(--color-gold-deep); }
/* ---------- Hamburger ---------- */
.alterz-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; z-index: 1100; position: relative; border-radius: var(--radius-sm); -webkit-tap-highlight-color: transparent; }
.alterz-hamburger span { display: block; width: 24px; height: 2px; background: #ffffff; border-radius: 2px; margin: 0 auto; transition:
    background var(--duration-base) var(--ease-standard),
    transform var(--duration-base) var(--ease-standard),
    opacity var(--duration-base) var(--ease-standard); }
.alterz-header.is-scrolled .alterz-hamburger span { background: var(--color-navy); }
.alterz-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.alterz-hamburger.is-active span:nth-child(2) { opacity: 0; }
.alterz-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1200px) {
 .alterz-header-call { display: flex; }
 }
@media (min-width: 992px) {
 .alterz-nav { display: block; }
.alterz-header-cta { display: flex; }
.alterz-hamburger { display: none; }
 }
/* ---------- Mobile Slide Menu ---------- */
.alterz-mobile-overlay { position: fixed; inset: 0; background: rgba(6,15,44,0.55); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity var(--duration-base) var(--ease-standard), visibility var(--duration-base); z-index: 1050; }
.alterz-mobile-overlay.is-active { opacity: 1; visibility: visible; }
.alterz-mobile-menu { position: fixed; top: 0; right: 0; width: min(320px, 84vw); height: 100%; background: var(--color-white); box-shadow: -10px 0 40px rgba(6,15,44,0.22); transform: translateX(100%); transition: transform var(--duration-base) var(--ease-out-soft); z-index: 1060; display: flex; flex-direction: column; padding: var(--space-lg) var(--space-md); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.alterz-mobile-menu.is-active { transform: translateX(0); }
.alterz-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.alterz-mobile-close { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--color-bg-soft); color: var(--color-navy); font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; }
.alterz-mobile-menu nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.alterz-mobile-menu nav a { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-heading); font-size: 1rem; font-weight: 500; color: var(--color-navy); padding: 0.75rem 0.75rem; border-radius: var(--radius-sm); min-height: 48px; transition:
    background var(--duration-fast) var(--ease-standard),
    padding-left var(--duration-fast) var(--ease-standard); }
.alterz-mobile-menu nav a i { color: var(--color-gold-deep); font-size: 1.15rem; flex-shrink: 0; }
.alterz-mobile-menu nav a:hover,
.alterz-mobile-menu nav a.active { background: var(--color-bg-soft); padding-left: 1rem; }
.alterz-mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; padding-top: var(--space-lg); flex-shrink: 0; }
body.no-scroll { overflow: hidden; }
/* =====================================================================
   HERO — sliding backgrounds
   ===================================================================== */
.alterz-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  color: var(--color-text-on-navy);
  overflow: hidden;
  background: #000000;
}

/* Background video styling to ensure cover positioning */
.alterz-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: 1;
  pointer-events: none;
}

/* Sliding backgrounds */
.alterz-hero-slides { position: absolute; inset: 0; z-index: 0; }
.alterz-hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.0s var(--ease-standard), transform 4s var(--ease-standard); }
.alterz-hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }

/* Overlay */
.alterz-hero-overlay { position: absolute; inset: 0; z-index: 2; background: var(--gradient-navy-overlay); }
.alterz-hero-overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,15,44,0.82) 0%, rgba(6,15,44,0.5) 55%, rgba(6,15,44,0.22) 100%); }

/* Content */
.alterz-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: var(--space-xl);
}

.alterz-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 680px;
  width: 100%;
  z-index: 10;
}

.alterz-hero h1 {
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.alterz-hero h1 .line-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
  font-style: italic;
  padding-right: 4px;
}

.hero-animate-subtitle {
  color: var(--color-gold);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: inline-block;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.alterz-hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.alterz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

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

/* Dots */
.alterz-hero-dots { position: absolute; left: 0; right: 0; bottom: var(--space-lg); z-index: 4; display: flex; justify-content: center; gap: 0.6rem; }
.alterz-hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(247,248,252,0.6); background: transparent; cursor: pointer; padding: 0; transition:
    background var(--duration-base) var(--ease-standard),
    width var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard); }
.alterz-hero-dots button.is-active { background: var(--color-gold); border-color: var(--color-gold); width: 26px; border-radius: var(--radius-pill); }
@media (prefers-reduced-motion: reduce) {
 .alterz-hero-slide { transition: opacity 1.4s var(--ease-standard); transform: none !important; }
 }
/* =====================================================================
   ANIMATE ON SCROLL
   ===================================================================== */
.aos-fade-up { opacity: 0; transform: translateY(28px); transition:
    opacity var(--duration-slow) var(--ease-out-soft),
    transform var(--duration-slow) var(--ease-out-soft); }
.aos-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }
/* =====================================================================
   ABOUT SECTION
   ===================================================================== */
.alterz-about-media { position: relative; z-index: 1; }
.alterz-about-media::before { content: ''; position: absolute; inset: -15px; background: var(--gradient-premium-glow); z-index: -1; border-radius: var(--radius-card-lg); filter: blur(10px); }
.alterz-about-media img { border-radius: var(--radius-card-lg); box-shadow: var(--shadow-card-hover); width: 100%; border: 1px solid rgba(255, 255, 255, 0.2); }
.alterz-about-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: rgba(4, 10, 28, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1.5px solid rgba(207, 163, 43, 0.4); color: var(--color-white); border-radius: var(--radius-card); padding: var(--space-md) var(--space-lg); box-shadow: 0 10px 30px rgba(4, 10, 28, 0.3); transition: transform var(--duration-base) var(--ease-out-soft); }
.alterz-about-badge:hover { transform: translateY(-5px) scale(1.03); }
.alterz-about-badge .badge-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; background: var(--gradient-gold-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 2px; }
.alterz-about-badge .badge-label { font-size: var(--fs-small); color: rgba(244, 246, 251, 0.85); font-weight: 500; }
.alterz-about-list { display: flex; flex-direction: column; gap: var(--space-md); margin: var(--space-lg) 0; }
.alterz-about-list-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.alterz-about-list-item .icon-wrap { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--color-bg-soft); color: var(--color-gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.alterz-about-list-item h4 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.alterz-about-list-item p { font-size: var(--fs-small); margin: 0; }
/* =====================================================================
   SERVICE CARDS
   ===================================================================== */
.alterz-service-card { background: var(--color-white); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); position: relative; transition:
    transform var(--duration-base) var(--ease-out-soft),
    box-shadow var(--duration-base) var(--ease-out-soft),
    border-color var(--duration-base) var(--ease-standard); height: 100%; display: flex; flex-direction: column; }
.alterz-service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-gold-line); opacity: 0; transition: opacity var(--duration-base) var(--ease-standard); }
.alterz-service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); border-color: rgba(207, 163, 43, 0.25); }
.alterz-service-card:hover::after { opacity: 1; }
.alterz-service-card-img { height: 220px; overflow: hidden; position: relative; flex-shrink: 0; }
.alterz-service-card-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(8, 22, 54, 0.4)); z-index: 1; }
.alterz-service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out-soft); }
.alterz-service-card:hover .alterz-service-card-img img { transform: scale(1.06); }
.alterz-service-card-body { padding: var(--space-md); display: flex; flex-direction: column; flex-grow: 1; }
.alterz-service-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--color-navy); transition: color var(--duration-fast); }
.alterz-service-card:hover .alterz-service-card-body h3 { color: var(--color-gold-deep); }
.alterz-service-card-body p { font-size: var(--fs-small); flex-grow: 1; margin-bottom: var(--space-md); line-height: 1.6; }
.alterz-card-link { font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-small); color: var(--color-navy); display: inline-flex; align-items: center; gap: 0.4rem; transition:
    gap var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard); align-self: flex-start; }
.alterz-card-link i { transition: transform var(--duration-fast) var(--ease-standard); }
.alterz-card-link:hover { color: var(--color-gold-deep); gap: 0.7rem; }
.alterz-card-link:hover i { transform: translateX(4px); }
/* =====================================================================
   FEATURE / WHY CHOOSE US CARDS
   ===================================================================== */
.alterz-feature-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: var(--space-lg) var(--space-md); height: 100%; text-align: center; position: relative; overflow: hidden; transition:
    transform var(--duration-base) var(--ease-out-soft),
    box-shadow var(--duration-base) var(--ease-out-soft),
    border-color var(--duration-base) var(--ease-standard); }
.alterz-feature-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-soft-glow); opacity: 0; transition: opacity var(--duration-base) var(--ease-standard); pointer-events: none; }
.alterz-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(207, 163, 43, 0.2); }
.alterz-feature-card:hover::before { opacity: 1; }
.alterz-feature-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-navy-deep); color: var(--color-gold-light); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto var(--space-md); flex-shrink: 0; transition: transform var(--duration-base) var(--ease-out-soft); box-shadow: 0 4px 10px rgba(8, 22, 54, 0.15); }
.alterz-feature-card:hover .alterz-feature-icon { transform: scale(1.1) rotate(8deg); background: var(--gradient-gold-sheen); color: var(--color-navy-deep); }
.alterz-feature-card h4 { margin-bottom: 0.5rem; color: var(--color-navy); }
.alterz-feature-card p { font-size: var(--fs-small); margin: 0; line-height: 1.6; }
/* =====================================================================
   TREATMENT PROCESS
   ===================================================================== */
.alterz-process { position: relative; }
.alterz-process-track { display: flex; flex-direction: column; gap: 0; position: relative; }
.alterz-process-step { display: flex; gap: var(--space-md); position: relative; padding-bottom: var(--space-lg); }
.alterz-process-step:last-child { padding-bottom: 0; }
.alterz-process-marker { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.alterz-process-dot { width: 52px; height: 52px; border-radius: 50%; background: var(--color-white); border: 2px solid var(--color-border); color: var(--color-text-muted); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; z-index: 2; flex-shrink: 0; transition:
    background var(--duration-base) var(--ease-out-soft),
    border-color var(--duration-base) var(--ease-out-soft),
    color var(--duration-base) var(--ease-out-soft),
    box-shadow var(--duration-base) var(--ease-out-soft); }
.alterz-process-step.is-visible .alterz-process-dot { background: var(--gradient-gold-sheen); border-color: var(--color-gold); color: var(--color-text-on-gold); box-shadow: 0 0 15px rgba(207, 163, 43, 0.4); }
.alterz-process-line { width: 2px; flex-grow: 1; background: linear-gradient(180deg, var(--color-border) 0%, var(--color-gold) 50%, var(--color-border) 100%); margin-top: 4px; }
.alterz-process-step:last-child .alterz-process-line { display: none; }
.alterz-process-content { padding-top: 0.5rem; }
.alterz-process-content h4 { margin-bottom: 0.35rem; color: var(--color-navy); }
.alterz-process-content p { margin: 0; font-size: var(--fs-small); line-height: 1.6; }
@media (min-width: 768px) {
 .alterz-process-track { flex-direction: row; justify-content: space-between; }
.alterz-process-step { flex-direction: column; align-items: center; text-align: center; flex: 1; padding-bottom: 0; padding-right: var(--space-sm); }
.alterz-process-marker { position: relative; width: 100%; display: flex; justify-content: center; }
.alterz-process-line { position: absolute; top: 25px; left: calc(50% + 26px); width: calc(100% - 52px); height: 2px; background: linear-gradient(90deg, var(--color-border) 0%, var(--color-gold) 50%, var(--color-border) 100%); margin-top: 0; }
.alterz-process-content { padding-top: var(--space-sm); max-width: 160px; }
 }
/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.alterz-testimonial-card { background: var(--color-white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); border: 1px solid var(--color-border); padding: var(--space-lg) var(--space-md); height: 100%; display: flex; flex-direction: column; position: relative; z-index: 1; transition:
    box-shadow var(--duration-base) var(--ease-out-soft),
    transform var(--duration-base) var(--ease-out-soft),
    border-color var(--duration-base) var(--ease-standard); }
.alterz-testimonial-card::before { content: '“'; position: absolute; top: -15px; right: 20px; font-size: 6rem; font-family: serif; color: var(--color-gold-pale); opacity: 0.5; z-index: -1; line-height: 1; }
.alterz-testimonial-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); border-color: rgba(207, 163, 43, 0.15); }
.alterz-testimonial-stars { color: var(--color-gold); margin-bottom: var(--space-sm); font-size: 0.95rem; }
.alterz-testimonial-card p.quote { color: var(--color-text); font-size: var(--fs-body); margin-bottom: var(--space-md); flex-grow: 1; line-height: 1.7; font-style: italic; }
.alterz-testimonial-author { display: flex; align-items: center; gap: var(--space-sm); margin-top: auto; }
.alterz-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg-soft-alt); color: var(--color-navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 600; flex-shrink: 0; box-shadow: inset 0 2px 4px rgba(8, 22, 54, 0.06); }
.alterz-testimonial-author strong { font-family: var(--font-heading); font-size: var(--fs-small); color: var(--color-navy); display: block; }
.alterz-testimonial-author span { font-size: 0.75rem; color: var(--color-text-muted); }
/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.alterz-accordion-item { border-radius: 16px; border: 1px solid var(--color-border); margin-bottom: 0.85rem; overflow: hidden; background: var(--color-white); box-shadow: 0 4px 12px rgba(4, 10, 28, 0.02); transition: 
    border-color var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard),
    transform var(--duration-base) var(--ease-out-soft); }
.alterz-accordion-item:hover { border-color: rgba(207, 163, 43, 0.35); box-shadow: 0 8px 24px rgba(4, 10, 28, 0.05); transform: translateY(-2px); }
.alterz-accordion-item.is-open { border-color: rgba(207, 163, 43, 0.5); box-shadow: 0 10px 30px rgba(207, 163, 43, 0.06); }
.alterz-accordion-header { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); padding: 1.25rem 1.75rem; background: none; border: none; border-left: 4px solid transparent; text-align: left; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-navy); min-height: 58px; -webkit-tap-highlight-color: transparent; transition:
    border-color var(--duration-base) var(--ease-standard),
    background-color var(--duration-base) var(--ease-standard),
    color var(--duration-base) var(--ease-standard); }
.alterz-accordion-item.is-open .alterz-accordion-header { border-left-color: var(--color-gold); background: linear-gradient(90deg, rgba(207, 163, 43, 0.02) 0%, rgba(255, 255, 255, 0) 100%); color: var(--color-navy); }
.alterz-accordion-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--color-bg-soft-alt); color: var(--color-navy); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; transition:
    transform var(--duration-base) var(--ease-out-soft),
    background var(--duration-base) var(--ease-standard),
    color var(--duration-base) var(--ease-standard); }
.alterz-accordion-item.is-open .alterz-accordion-icon { transform: rotate(180deg); background: var(--gradient-gold-sheen); color: var(--color-text-on-gold); }
.alterz-accordion-panel { max-height: 0; overflow: hidden; transition: max-height var(--duration-base) var(--ease-standard); }
.alterz-accordion-item.is-open .alterz-accordion-panel { max-height: 1000px; }
.alterz-accordion-panel-inner { padding: 0 1.75rem 1.5rem 2rem; font-size: 0.92rem; line-height: 1.7; color: var(--color-text-muted); max-width: 720px; opacity: 0; transform: translateY(-8px); transition: 
    opacity var(--duration-base) var(--ease-out-soft),
    transform var(--duration-base) var(--ease-out-soft); }
.alterz-accordion-item.is-open .alterz-accordion-panel-inner { opacity: 1; transform: translateY(0); }
/* =====================================================================
   CTA BAND
   ===================================================================== */
.alterz-cta-band { background: var(--gradient-navy-deep); border-radius: var(--radius-card-lg); padding: var(--space-2xl) var(--space-lg); text-align: center; color: var(--color-white); position: relative; overflow: hidden; box-shadow: var(--shadow-card-hover); border: 1px solid rgba(207, 163, 43, 0.15); }
.alterz-cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(207, 163, 43, 0.15) 0%, transparent 70%); pointer-events: none; }
.alterz-cta-band h2 { color: var(--color-white); position: relative; z-index: 1; font-weight: 700; }
.alterz-cta-band p { color: rgba(244, 246, 251, 0.85); max-width: 580px; margin: var(--space-sm) auto var(--space-lg); position: relative; z-index: 1; line-height: 1.65; }
.alterz-cta-band .btn-alterz { position: relative; z-index: 1; }
.alterz-cta-section { padding: calc(var(--section-padding-y) + 1rem) 0; background: var(--color-bg-soft); position: relative; overflow: hidden; }
.alterz-cta-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
/* WhatsApp Button & Hover Fix */
.btn-alterz-whatsapp { background-color: var(--color-white) !important; color: #25d366 !important; border-color: rgba(37, 211, 102, 0.25) !important; transition: background-color 0.3s var(--ease-out-soft), color 0.3s var(--ease-out-soft), border-color 0.3s var(--ease-out-soft), box-shadow 0.3s var(--ease-out-soft), transform 0.3s var(--ease-out-soft) !important; }
.btn-alterz-whatsapp i { color: #25d366; font-size: 1.25rem; transition: color 0.3s; }
.btn-alterz-whatsapp:hover { background-color: #25d366 !important; color: var(--color-white) !important; border-color: #25d366 !important; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important; transform: translateY(-3px) scale(1.02) !important; }
.btn-alterz-whatsapp:hover i { color: var(--color-white) !important; }
/* =====================================================================
   CONTACT CARDS & MAP
   ===================================================================== */
.alterz-contact-card { display: flex; gap: var(--space-sm); align-items: flex-start; padding: var(--space-md); border-radius: var(--radius-card); background: var(--color-white); box-shadow: var(--shadow-card); border: 1px solid var(--color-border); height: 100%; transition:
    box-shadow var(--duration-base) var(--ease-out-soft),
    transform var(--duration-base) var(--ease-out-soft); }
.alterz-contact-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.alterz-contact-card .icon-wrap { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--gradient-navy-deep); color: var(--color-gold-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.alterz-contact-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.alterz-contact-card p { font-size: var(--fs-small); margin: 0; }
.alterz-contact-card a { color: var(--color-text-muted); transition: color var(--duration-fast); }
.alterz-contact-card a:hover { color: var(--color-gold-deep); }
.alterz-map-frame { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); border: 0; width: 100%; height: 100%; min-height: 280px; display: block; }
/* =====================================================================
   FORMS
   ===================================================================== */
.alterz-form-group { margin-bottom: var(--space-md); }
.alterz-form-group label { display: block; font-family: var(--font-heading); font-weight: 500; font-size: var(--fs-small); color: var(--color-navy); margin-bottom: 0.4rem; }
.alterz-form-group .required { color: var(--color-danger); }
.alterz-form-control { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; /* Prevent iOS zoom — always 16px min */
  color: var(--color-text); background: var(--color-white); -webkit-appearance: none; appearance: none; transition:
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard); }
.alterz-form-control:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.2); }
.alterz-form-control.is-invalid { border-color: var(--color-danger); }
.alterz-form-error { font-size: 0.8rem; color: var(--color-danger); margin-top: 0.35rem; display: none; }
.alterz-form-group.has-error .alterz-form-error { display: block; }
textarea.alterz-form-control { resize: vertical; min-height: 120px; }
.alterz-form-card { background: var(--color-white); border-radius: var(--radius-card-lg); box-shadow: var(--shadow-card-hover); border: 1px solid var(--color-border); padding: var(--space-lg); }
.alterz-alert { padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm); font-size: var(--fs-small); margin-bottom: var(--space-md); display: flex; align-items: flex-start; gap: 0.6rem; }
.alterz-alert-success { background: var(--color-success-bg); color: var(--color-success); }
.alterz-alert-danger { background: var(--color-danger-bg); color: var(--color-danger); }
/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.alterz-page-banner { position: relative; padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl) !important; background: var(--gradient-navy-deep); color: var(--color-white); overflow: hidden; }
.alterz-page-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(201,162,39,0.25), transparent 55%); pointer-events: none; }
.alterz-page-banner h1 { color: var(--color-white); position: relative; z-index: 1; }
.alterz-page-banner .breadcrumb-alterz { position: relative; z-index: 1; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; font-size: var(--fs-small); color: rgba(247,248,252,0.75); margin-top: var(--space-sm); }
.alterz-page-banner .breadcrumb-alterz a { color: var(--color-gold-light); }
/* =====================================================================
   FOOTER
   ===================================================================== */
.alterz-footer { background: var(--color-navy-deep); background-image: radial-gradient(circle at 15% 0%, rgba(201,162,39,0.1), transparent 45%); color: rgba(247,248,252,0.78); padding: var(--space-2xl) 0 0; position: relative; overflow: hidden; }
.alterz-footer h5 { color: var(--color-white); font-size: 1rem; font-weight: 600; margin-bottom: var(--space-md); position: relative; padding-bottom: 0.65rem; }
.alterz-footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--gradient-gold-line); border-radius: var(--radius-pill); }
.alterz-footer-logo { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--color-white); margin-bottom: var(--space-md); }
.alterz-footer-logo-mark { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(201,162,39,0.14); border: 1px solid rgba(201,162,39,0.32); color: var(--color-gold-light); font-size: 1.05rem; flex-shrink: 0; }
.alterz-footer-logo span { color: var(--color-gold); }
.alterz-footer p { color: rgba(247,248,252,0.6); font-size: var(--fs-small); max-width: 320px; }
.alterz-footer-links li { margin-bottom: 0.7rem; }
.alterz-footer-links a { font-size: var(--fs-small); color: rgba(247,248,252,0.68); display: inline-flex; align-items: center; gap: 0.5rem; transition:
    color var(--duration-fast) var(--ease-standard),
    padding-left var(--duration-fast) var(--ease-standard); min-height: 32px; }
.alterz-footer-links a i { font-size: 0.7rem; color: var(--color-gold-light); flex-shrink: 0; transition: transform var(--duration-fast) var(--ease-standard); }
.alterz-footer-links a:hover { color: var(--color-gold-light); padding-left: 4px; }
.alterz-footer-links a:hover i { transform: translateX(2px); }
.alterz-footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: var(--space-md); font-size: var(--fs-small); }
.alterz-footer-contact .icon-wrap { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: rgba(247,248,252,0.08); color: var(--color-gold-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.alterz-footer-contact span,
.alterz-footer-contact a { color: rgba(247,248,252,0.72); line-height: 1.5; transition: color var(--duration-fast) var(--ease-standard); }
.alterz-footer-contact a:hover { color: var(--color-gold-light); }
.alterz-footer-contact strong { display: block; color: var(--color-white); font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.15rem; }
.alterz-footer-newsletter { background: rgba(247,248,252,0.05); border: 1px solid rgba(247,248,252,0.1); border-radius: var(--radius-card); padding: var(--space-md); margin-top: var(--space-md); }
.alterz-footer-newsletter p { font-size: 0.8rem; color: rgba(247,248,252,0.55); margin-bottom: var(--space-sm); max-width: none; }
.alterz-footer-newsletter-form { display: flex; gap: 0.5rem; }
.alterz-footer-newsletter-form input { flex: 1; min-width: 0; padding: 0.65rem 0.9rem; border-radius: var(--radius-sm); border: 1px solid rgba(247,248,252,0.18); background: rgba(6,15,44,0.45); color: var(--color-white); font-size: 1rem; /* Prevent iOS zoom */ }
.alterz-footer-newsletter-form input::placeholder { color: rgba(247,248,252,0.45); }
.alterz-footer-newsletter-form input:focus { outline: none; border-color: var(--color-gold); }
.alterz-footer-newsletter-form button { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm); border: none; background: var(--color-gold); color: var(--color-text-on-gold); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; cursor: pointer; transition:
    background var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-out-soft); }
.alterz-footer-newsletter-form button:hover { background: var(--color-gold-light); transform: translateX(2px); }
.alterz-footer-social { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--space-md); }
.alterz-footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(247,248,252,0.08); border: 1px solid rgba(247,248,252,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; transition:
    background var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-out-soft),
    color var(--duration-fast) var(--ease-standard); }
/* Brand specific social hover styling (overriding inline styles where needed) */
.alterz-footer-social a[aria-label="Instagram"]:hover,
.alterz-footer-social a[href*="instagram.com"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; border-color: transparent !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 8px 15px rgba(214, 36, 159, 0.3) !important; }
.alterz-footer-social a[aria-label="Facebook"]:hover,
.alterz-footer-social a[href*="facebook.com"]:hover { background: #1877F2 !important; border-color: #1877F2 !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 8px 15px rgba(24, 119, 242, 0.3) !important; }
.alterz-footer-social a[aria-label="WhatsApp"]:hover,
.alterz-footer-social a[href*="wa.me"]:hover,
.alterz-footer-social a[href*="whatsapp.com"]:hover { background: #25D366 !important; border-color: #25D366 !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3) !important; }
.alterz-footer-social a[aria-label="YouTube"]:hover,
.alterz-footer-social a[href*="youtube.com"]:hover { background: #FF0000 !important; border-color: #FF0000 !important; color: #ffffff !important; transform: translateY(-3px) !important; box-shadow: 0 8px 15px rgba(255, 0, 0, 0.3) !important; }
.alterz-footer-divider { height: 1px; background: rgba(247,248,252,0.1); margin-top: var(--space-2xl); }
.alterz-footer-bottom { padding: var(--space-md) 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-sm); text-align: center; font-size: 0.8rem; color: rgba(247,248,252,0.52); }
.alterz-footer-bottom-links { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.alterz-footer-bottom-links span { opacity: 0.35; }
.alterz-footer-bottom a { color: rgba(247,248,252,0.68); transition: color var(--duration-fast) var(--ease-standard); }
.alterz-footer-bottom a:hover { color: var(--color-gold-light); }
.alterz-footer-bottom-credit { display: inline-flex; align-items: center; gap: 0.35rem; }
.alterz-footer-bottom-credit i { color: #e25555; font-size: 0.8rem; }
/* =====================================================================
   FLOATING ACTION BUTTONS
   ===================================================================== */
.alterz-float-stack { position: fixed; right: var(--space-md); bottom: var(--space-md); z-index: 900; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.alterz-float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 10px rgba(6,15,44,0.2), 0 12px 28px rgba(6,15,44,0.25); transition:
    transform var(--duration-fast) var(--ease-out-soft),
    opacity var(--duration-base) var(--ease-standard),
    visibility var(--duration-base); cursor: pointer; border: none; }
.alterz-float-btn:hover { transform: translateY(-3px) scale(1.05); }
.alterz-float-whatsapp { background: #25D366; color: var(--color-white); }
.alterz-float-scrolltop { background: var(--color-navy); color: var(--color-gold-light); opacity: 0; visibility: hidden; }
.alterz-float-scrolltop.is-visible { opacity: 1; visibility: visible; }
/* ---------- Mobile Sticky CTA Bar ---------- */
.alterz-mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; display: flex; background: var(--color-bg-soft); border-top: 1px solid var(--color-border); box-shadow: 0 -2px 8px rgba(6,15,44,0.06), 0 -8px 28px rgba(6,15,44,0.14); overflow: hidden; }
.alterz-mobile-sticky-cta a { flex: 1; text-align: center; padding: 0.95rem 0.5rem; font-family: var(--font-heading); font-weight: 600; font-size: var(--fs-small); display: flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 56px; }
.alterz-mobile-sticky-cta .sticky-call { background: var(--color-bg-soft); color: var(--color-navy); }
.alterz-mobile-sticky-cta .sticky-book { background: var(--color-gold); color: var(--color-text-on-gold); }
/* =====================================================================
   GALLERY
   ===================================================================== */
.alterz-gallery-item { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition:
    box-shadow var(--duration-base) var(--ease-out-soft),
    transform var(--duration-base) var(--ease-out-soft); }
.alterz-gallery-item:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.alterz-gallery-item img { width: 100%; height: 280px; object-fit: cover; }
/* =====================================================================
   CONTACT MAP
   ===================================================================== */
.alterz-contact-map-wrap { min-height: 320px; }
.alterz-contact-map-wrap .alterz-map-frame { min-height: 320px; }
/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.alterz-legal-content h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); font-size: 1.5rem; }
.alterz-legal-content p, .alterz-legal-content li { margin-bottom: var(--space-sm); }
.alterz-legal-content ul { padding-left: var(--space-md); list-style: disc; }
.alterz-legal-link { color: var(--color-navy); font-weight: 600; }
.alterz-legal-link:hover { color: var(--color-gold-deep); text-decoration: underline; }
/* =====================================================================
   BOOK APPOINTMENT PAGE
   ===================================================================== */
.alterz-booking-success { text-align: center; padding: var(--space-3xl) var(--space-md); max-width: 560px; margin: 0 auto; }
.alterz-booking-success-icon { font-size: 4rem; color: var(--color-success); margin-bottom: var(--space-md); line-height: 1; }
.alterz-booking-success h2 { font-family: var(--font-heading); font-size: var(--fs-h2); color: var(--color-navy); margin-bottom: var(--space-sm); }
.alterz-booking-success p { color: var(--color-text-muted); font-size: var(--fs-body-lg); margin-bottom: var(--space-md); }
.alterz-booking-ref { display: inline-block; background: var(--color-bg-soft); border: 1.5px solid var(--color-border); border-radius: var(--radius-card); padding: 0.75rem 1.5rem; font-size: var(--fs-body-lg); color: var(--color-text-muted); }
.alterz-booking-ref strong { color: var(--color-navy); font-family: var(--font-heading); font-size: 1.25rem; letter-spacing: 0.05em; }
.alterz-appt-info-card { background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: var(--space-md); }
.alterz-appt-info-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-navy); margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 0.5rem; }
.alterz-appt-info-card h4 i { color: var(--color-gold-deep); font-size: 1.1rem; }
.alterz-appt-info-card p { color: var(--color-text-muted); font-size: var(--fs-small); margin-bottom: var(--space-sm); }
.alterz-appt-info-card ul { list-style: none; padding: 0; margin: 0; }
.alterz-appt-info-card ul li { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); font-size: var(--fs-small); }
.alterz-appt-info-card ul li:last-child { border-bottom: none; }
.alterz-appt-info-card ul li span { color: var(--color-text-muted); }
.alterz-appt-info-card ul li strong { color: var(--color-navy); font-weight: 600; }
.alterz-appt-steps { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: var(--space-md); }
.alterz-appt-steps h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-navy); margin-bottom: var(--space-md); }
.alterz-appt-steps ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.alterz-appt-steps ol li { display: flex; align-items: flex-start; gap: 0.9rem; }
.alterz-appt-steps .step-num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--color-navy); color: var(--color-gold-light); font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.alterz-appt-steps ol li div { display: flex; flex-direction: column; gap: 0.15rem; }
.alterz-appt-steps ol li strong { font-size: 0.9rem; color: var(--color-navy); font-weight: 600; }
.alterz-appt-steps ol li span { font-size: 0.78rem; color: var(--color-text-muted); }
.alterz-form-note { font-size: var(--fs-small); color: var(--color-text-muted); display: flex; align-items: flex-start; gap: 0.4rem; margin-top: var(--space-sm); }
.alterz-form-note i { margin-top: 2px; flex-shrink: 0; color: var(--color-gold-deep); }
.alterz-form-group .optional { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 400; font-family: var(--font-body); }
/* =====================================================================
   404
   ===================================================================== */
.alterz-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-lg); }
.alterz-404 .code-404 { font-family: var(--font-heading); font-size: clamp(5rem, 15vw, 9rem); font-weight: 700; color: var(--color-gold); line-height: 1; }
/* =====================================================================
   GLOBAL UTILITIES
   ===================================================================== */
html, body { max-width: 100%; width: 100%; overflow-x: hidden !important; }
/* Scroll Progress Bar */
.scroll-progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: rgba(255, 255, 255, 0.05); z-index: 10000; pointer-events: none; }
.scroll-progress-bar { height: 100%; width: 0; background: var(--gradient-gold-line); transition: width 0.1s ease-out; }
/* =====================================================================
   PREMIUM ELITE STYLING UPGRADES
   ===================================================================== */
.glass-card { background: rgba(255, 255, 255, 0.7) !important; backdrop-filter: blur(12px) saturate(180%) !important; -webkit-backdrop-filter: blur(12px) saturate(180%) !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; box-shadow: var(--shadow-card) !important; }
.gold-gradient-text { background: var(--gradient-gold-text) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
/* Premium Typography refinements */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
/* Capsule buttons override */
.btn-alterz { border-radius: 50px !important; font-family: var(--font-body) !important; font-weight: 600 !important; letter-spacing: 0.02em !important; text-transform: none !important; /* Modern premium sites prefer standard case */ }
/* Section overrides for breathing room */
section { padding: var(--section-padding-y) 0; }
/* Update hero overlays to modern slate-900 transparent theme */
.alterz-hero { background: var(--color-navy-deep) !important; }
.alterz-hero-overlay { background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.9) 100%) !important; }
.alterz-hero-overlay::after { background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 55%, rgba(15, 23, 42, 0.15) 100%) !important; }
.alterz-hero h1 { font-weight: 800 !important; font-size: var(--fs-h1) !important; }
.alterz-hero h1 .line-gold { background: var(--gradient-gold-text) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; font-weight: 800 !important; font-style: normal !important; }
/* Premium Floating Cards on Images (Morphic look) */
.alterz-about-media { position: relative; }
.alterz-about-media::after { content: ''; position: absolute; top: -12px; left: -12px; width: 96px; height: 96px; border-radius: 24px; border: 2px solid rgba(212, 175, 55, 0.3); z-index: -1; pointer-events: none; }
.alterz-about-badge { background: rgba(255, 255, 255, 0.75) !important; backdrop-filter: blur(16px) saturate(180%) !important; -webkit-backdrop-filter: blur(16px) saturate(180%) !important; border: 1px solid rgba(255, 255, 255, 0.3) !important; box-shadow: var(--shadow-card-hover) !important; border-radius: 24px !important; padding: 1.25rem 2rem !important; bottom: -1rem !important; left: 1rem !important; }
.alterz-about-badge .badge-number { font-weight: 800 !important; }
.alterz-about-badge .badge-label { color: var(--color-text) !important; font-weight: 600 !important; }
/* Card and Feature redesigns to match Elite Physio Care */
.alterz-service-card { border-radius: 24px !important; border: 1px solid var(--color-border) !important; background: var(--color-white) !important; overflow: hidden !important; box-shadow: var(--shadow-card) !important; }
.alterz-service-card:hover { box-shadow: var(--shadow-card-hover) !important; border-color: rgba(212, 175, 55, 0.35) !important; }
.alterz-feature-card { border-radius: 24px !important; border: 1px solid var(--color-border) !important; background: var(--color-white) !important; box-shadow: var(--shadow-card) !important; }
.alterz-feature-card:hover { box-shadow: var(--shadow-card-hover) !important; border-color: rgba(212, 175, 55, 0.3) !important; }
.alterz-feature-icon { background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%) !important; box-shadow: 0 8px 20px rgba(7, 59, 138, 0.15) !important; }
.alterz-feature-card:hover .alterz-feature-icon { background: var(--gradient-gold-sheen) !important; color: var(--color-navy-deep) !important; }
/* Testimonial cards - elegant glass look */
.alterz-testimonial-card { background: rgba(255, 255, 255, 0.8) !important; backdrop-filter: blur(10px) !important; -webkit-backdrop-filter: blur(10px) !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; border-radius: 24px !important; box-shadow: var(--shadow-card) !important; padding: 2rem !important; }
.alterz-testimonial-card:hover { box-shadow: var(--shadow-card-hover) !important; border-color: rgba(212, 175, 55, 0.2) !important; }
.alterz-testimonial-stars i { color: var(--color-gold) !important; }
/* Process Timeline refinement */
.alterz-process-dot { background: var(--color-white) !important; border: 2px solid var(--color-border) !important; color: var(--color-text-muted) !important; box-shadow: var(--shadow-xs) !important; }
.alterz-process-step.is-visible .alterz-process-dot { background: var(--gradient-gold-sheen) !important; border-color: var(--color-gold) !important; color: var(--color-navy-deep) !important; box-shadow: var(--shadow-btn-gold) !important; }
/* Header links and Logo Text styling */
.alterz-logo-text { font-family: var(--font-heading) !important; font-weight: 800 !important; }
.alterz-nav a { font-family: var(--font-body) !important; font-weight: 600 !important; text-transform: none !important; font-size: 0.95rem !important; }
/* Call to action bands */
.alterz-cta-band { background: var(--gradient-navy-deep) !important; border-radius: 32px !important; padding: 4rem 2rem !important; text-align: center !important; box-shadow: var(--shadow-modal) !important; }
.alterz-cta-band h2 { color: var(--color-white) !important; font-size: var(--fs-h2) !important; margin-bottom: 1rem !important; }
.alterz-cta-band p { color: rgba(248, 250, 252, 0.8) !important; max-width: 600px !important; margin: 0 auto 2rem !important; }
/* =====================================================================
   HERO VISUAL WRAPPER
   ===================================================================== */
.alterz-hero-visual { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.alterz-hero-visual .alterz-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.alterz-hero-visual .alterz-hero-overlay { position: absolute; inset: 0; z-index: 2; }
/* =====================================================================
   ABOUT SECTION — PROFESSIONAL, SIMPLE, CONTENT-ONLY (v3)
   No side visual — centered heading + lead copy + feature grid + CTA
   ===================================================================== */
.alterz-about-section { padding: calc(var(--section-padding-y) + 1.5rem) 0; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(207, 163, 43, 0.03), transparent 50%), var(--color-bg-soft); }

.about-content-wrap { text-align: center; max-width: 780px; margin: 0 auto; }
.about-content-wrap h2 { margin-top: 0.35rem; margin-bottom: var(--space-md); color: var(--color-navy); font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
.about-lead-new { font-size: 1.1rem; line-height: 1.8; color: var(--color-text-muted); margin: 0 auto var(--space-xl); max-width: 680px; }

/* Feature grid — 3 clean cards, generous breathing room */
.about-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-bottom: var(--space-xl); text-align: left; }
.about-feature-item { padding: var(--space-lg) var(--space-md); border-radius: 18px; background: var(--color-white); border: 1px solid var(--color-border); transition: transform var(--duration-base) var(--ease-out-soft), box-shadow var(--duration-base) var(--ease-out-soft), border-color var(--duration-base) var(--ease-standard); }
.about-feature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(207, 163, 43, 0.3); }
.about-feature-item .feature-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--color-bg-soft); color: var(--color-gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: var(--space-md); }
.about-feature-item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--color-navy); }
.about-feature-item p { font-size: 0.9rem; line-height: 1.65; color: var(--color-text-muted); margin: 0; }

/* =====================================================================
   3. VALUES SECTION — NUMBERED CARD GRID
   ===================================================================== */
/* ---------- Values Infographic Grid ---------- */
.value-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5.5rem 4rem; margin-top: var(--space-xl); }
.value-info-card { position: relative; background: var(--color-white); padding: 4.5rem 3.5rem; min-height: 250px; display: flex; flex-direction: column; justify-content: center; z-index: 1; transition:
    transform var(--duration-base) var(--ease-out-soft),
    box-shadow var(--duration-base) var(--ease-out-soft),
    border-color var(--duration-base) var(--ease-standard); }
/* Hover effects */
.value-info-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(4, 10, 28, 0.06); }
/* Odd Card Specifics (1 and 3) */
.value-info-card.card-odd { border: 2px solid var(--card-color); border-radius: 40px 40px 0 40px; text-align: left; }
.value-info-card.card-odd::before { content: ''; position: absolute; top: -2px; right: 80px; width: calc(45% - 40px); height: 4px; background: var(--color-white); border-top: 2px dotted var(--card-color); z-index: 2; }
/* Even Card Specifics (2 and 4) */
.value-info-card.card-even { border: 2px solid var(--card-color); border-radius: 0 40px 40px 40px; text-align: right; }
.value-info-card.card-even::before { content: ''; position: absolute; bottom: -2px; left: 80px; width: calc(45% - 40px); height: 4px; background: var(--color-white); border-bottom: 2px dotted var(--card-color); z-index: 2; }
/* Giant Outline Numbers */
.value-info-number { position: absolute; font-family: var(--font-heading); font-weight: 700; font-size: 4.5rem; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--card-color); background: var(--color-white); padding: 0 10px; z-index: 3; transition: text-shadow var(--duration-base); }
.value-info-card.card-odd .value-info-number { top: -36px; right: 40px; }
.value-info-card.card-even .value-info-number { bottom: -36px; left: 40px; }
.value-info-card:hover .value-info-number { text-shadow: 0 0 10px rgba(255,255,255,0.8); }
/* Content */
.value-info-content h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--color-navy); margin-bottom: 0.85rem; }
.value-info-content p { font-size: 0.95rem; line-height: 1.7; color: var(--color-text-muted); margin: 0; }
/* Loop Icon Badges */
.value-info-icon-wrap { position: absolute; width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--card-color); background: var(--color-white); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--card-color); z-index: 4; transition: transform var(--duration-base) var(--ease-out-soft), background-color var(--duration-base); }
.value-info-card.card-odd .value-info-icon-wrap { bottom: -36px; right: -2px; }
.value-info-card.card-even .value-info-icon-wrap { top: -36px; left: -2px; }
.value-info-card:hover .value-info-icon-wrap { transform: scale(1.1) rotate(8deg); background-color: var(--card-color); color: var(--color-white); }
/* =====================================================================
   PROCESS STEPPER & TIMELINE
   ===================================================================== */
.process-stepper-container { position: relative; margin-top: var(--space-xl); padding: var(--space-md) 0; }
.stepper-progress-line { position: absolute; top: 54px; left: 12.5%; right: 12.5%; height: 4px; background: rgba(0, 82, 212, 0.08); z-index: 1; }
.stepper-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--color-navy-light); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.step-item { position: relative; z-index: 2; text-align: center; }
.step-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--color-white); border: 3px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--color-text-muted); margin: 0 auto var(--space-md) auto; position: relative; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: var(--shadow-sm); }
.step-number-badge { position: absolute; top: -5px; right: -5px; width: 26px; height: 26px; border-radius: 50%; background: var(--color-gold); color: var(--color-navy-deep); font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: all 0.4s ease; }
.step-item.is-active .step-circle { border-color: var(--color-navy-light); background: var(--color-navy-light); color: var(--color-white); box-shadow: 0 0 20px rgba(0, 82, 212, 0.25); }
.step-item.is-active .step-number-badge { background: var(--color-white); color: var(--color-navy-light); border: 2px solid var(--color-navy-light); }
.step-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--color-navy); margin-bottom: var(--space-xs); transition: color 0.4s ease; }
.step-desc { font-size: 0.88rem; line-height: 1.55; color: var(--color-text-muted); max-width: 240px; margin: 0 auto; }
/* Mobile responsive timeline layouts */
@media (max-width: 991.98px) {
 .stepper-progress-line { left: 40px; right: auto; top: 0; bottom: 0; width: 4px; height: 100%; }
.stepper-progress-fill { width: 100%; height: 0%; transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.step-item { text-align: left; display: flex; align-items: flex-start; gap: var(--space-md); margin-bottom: var(--space-xl); }
.step-item:last-child { margin-bottom: 0; }
.step-circle { margin: 0; flex-shrink: 0; }
.step-info { padding-top: var(--space-xs); }
.step-desc { max-width: 100%; margin: 0; }
 }

/* =====================================================================
   PREMIUM WAVY PRICING CARDS
   ===================================================================== */
.pricing-card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(6, 15, 44, 0.03);
  overflow: visible;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft), border-color 0.4s var(--ease-out-soft);
  position: relative;
}

.pricing-card-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(6, 15, 44, 0.12);
  border-color: rgba(201, 162, 39, 0.25);
}

.pricing-card-wrapper.popular {
  border: 2px solid #d97706;
  transform: scale(1.03);
  animation: gold-pulse 3s infinite ease-in-out;
  z-index: 2;
}

.pricing-card-wrapper.popular:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 30px 60px rgba(217, 119, 6, 0.3), 0 0 0 8px rgba(217, 119, 6, 0.05) !important;
  animation: none;
}

@keyframes gold-pulse {
  0% {
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15), 0 0 0 0px rgba(217, 119, 6, 0.2);
    border-color: rgba(217, 119, 6, 0.8);
  }
  70% {
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.25), 0 0 0 6px rgba(217, 119, 6, 0);
    border-color: rgba(217, 119, 6, 1);
  }
  100% {
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15), 0 0 0 0px rgba(217, 119, 6, 0);
    border-color: rgba(217, 119, 6, 0.8);
  }
}

.pricing-popular-tag {
  position: absolute !important;
  top: -16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 20 !important;
  background: linear-gradient(135deg, #06173a 0%, #0a1b42 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 20px rgba(6, 15, 44, 0.25) !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  border: 2.5px solid #d97706 !important;
}

/* Wavy header curve using clip-path */
.pricing-card-header {
  padding: 2.5rem 1.5rem 3.5rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  clip-path: ellipse(120% 100% at 50% 0%);
  border-radius: 20px 20px 0 0;
}

.pricing-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.12;
  background-image: radial-gradient(circle at 50% 120%, #ffffff, transparent 60%);
  pointer-events: none;
}

.pricing-card-icon {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.pricing-card-wrapper:hover .pricing-card-icon {
  transform: translateY(-4px) scale(1.08);
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0;
}

.pricing-card-body {
  padding: 2.25rem 1.75rem 2.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card-price-wrap {
  text-align: center;
  margin-bottom: var(--space-md);
}

.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card-price sup {
  font-size: 1.25rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card-period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-card-target {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.pricing-card-features {
  list-style: none;
  padding-left: 0;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text);
  line-height: 1.4;
}

.pricing-card-features li i {
  color: var(--color-gold-deep);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card-features li.more-indicator {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  font-style: italic;
  justify-content: center;
  text-align: center;
  margin-top: 8px;
}

/* ---------- BRAND VISUAL ANIMATIONS ---------- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-slow-reverse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.about-core-shield:hover {
  transform: rotate(225deg) scale(1.05) !important;
}

/* ---------- ABOUT PAGE OVERHAUL STYLES ---------- */
.about-story-quote-card {
  border-left: 5px solid var(--color-gold) !important;
  padding: 3rem 2.5rem !important;
  background-color: var(--color-white) !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 40px rgba(6, 15, 44, 0.04) !important;
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
}
.about-story-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(6, 15, 44, 0.08) !important;
}
.about-story-quote-card .quote-icon {
  font-size: 3.5rem;
  color: var(--color-gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.about-mv-card {
  padding: 3rem 2.25rem !important;
  border-radius: 20px !important;
  background: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: 0 10px 30px rgba(6, 15, 44, 0.02) !important;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
}
.about-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-navy-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-soft);
}
.about-mv-card.mission::before {
  background: var(--color-gold);
}
.about-mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(6, 15, 44, 0.08) !important;
}
.about-mv-card:hover::before {
  transform: scaleX(1);
}

.about-eco-card {
  background: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 20px !important;
  padding: 2rem 1.75rem !important;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-soft), 
              box-shadow 0.4s var(--ease-out-soft), 
              border-color 0.4s var(--ease-out-soft), 
              background-color 0.4s var(--ease-out-soft);
}
.about-eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(207, 163, 43, 0.02), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about-eco-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover) !important;
  border-color: rgba(207, 163, 43, 0.35) !important;
}
.about-eco-card:hover::before {
  opacity: 1;
}
.about-eco-card .alterz-feature-icon {
  transition: transform 0.4s var(--ease-out-soft), background 0.4s var(--ease-out-soft);
}
.about-eco-card:hover .alterz-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-gold-sheen) !important;
  color: var(--color-navy-deep) !important;
}

/* ---------- DIAGRAMMATIC ROADMAP TIMELINE ---------- */
.roadmap-timeline-wrapper {
  position: relative;
  padding: 2rem 0;
}
.roadmap-track-line {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-border) 0%, var(--color-navy-light) 50%, var(--color-gold) 100%);
  z-index: 1;
  display: none;
}
@media (min-width: 992px) {
  .roadmap-track-line {
    display: block;
  }
}
.roadmap-node-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.roadmap-circle-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-border);
  color: var(--color-text-faint);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out-soft), border-color 0.4s var(--ease-out-soft), color 0.4s var(--ease-out-soft);
}
.roadmap-circle-node.node-1 { border-color: var(--color-border); color: var(--color-text-muted); }
.roadmap-circle-node.node-2 { border-color: var(--color-navy-light); color: var(--color-navy-light); }
.roadmap-circle-node.node-3 { border-color: var(--color-gold); color: var(--color-gold-deep); }

.roadmap-step-card {
  background: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 20px !important;
  padding: 2.25rem 2rem !important;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
}
.roadmap-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover) !important;
}
.roadmap-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.roadmap-step-card.phase-1::before { background: var(--color-border); }
.roadmap-step-card.phase-2::before { background: var(--color-navy-light); }
.roadmap-step-card.phase-3::before { background: var(--color-gold); }

.roadmap-phase-badge {
  background-color: var(--color-bg-soft); 
  color: var(--color-text-muted); 
  border: 1px solid var(--color-border); 
  font-size: 0.72rem; 
  padding: 0.35rem 0.75rem; 
  border-radius: 6px; 
  margin-bottom: var(--space-xs); 
  display: inline-block;
}
.roadmap-phase-badge.badge-navy {
  background-color: var(--color-navy-light);
  color: #ffffff;
  border: none;
}
.roadmap-phase-badge.badge-gold {
  background-color: var(--color-gold);
  color: #ffffff;
  border: none;
}
.roadmap-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}
.roadmap-step-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: var(--space-sm) 0 0 0;
}
.roadmap-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.roadmap-step-list li i {
  color: var(--color-navy-light);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Mobile vertical line roadmap styling */
@media (max-width: 991.98px) {
  .roadmap-timeline-wrapper {
    padding-left: 0 !important;
    position: relative !important;
  }
  .roadmap-timeline-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-border) 0%, var(--color-navy-light) 50%, var(--color-gold) 100%);
    z-index: 1;
  }
  .roadmap-timeline-wrapper .col-lg-4 {
    position: relative !important;
    padding-left: 3.5rem !important;
    padding-right: 0.5rem !important;
  }
  .roadmap-node-container {
    position: absolute !important;
    left: 0 !important;
    top: 12px !important;
    margin-bottom: 0 !important;
    z-index: 3 !important;
  }
  .roadmap-circle-node {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    background: var(--color-white) !important;
  }
  .roadmap-step-card {
    margin-bottom: 1.5rem !important;
  }
}

/* ---------- INFINITE MARQUEE ---------- */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee-scroll 32s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- PREMIUM SERVICE CARDS ---------- */
.premium-service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(6, 15, 44, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft), border-color 0.4s var(--ease-out-soft);
  z-index: 1;
}
.premium-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy-light) 0%, var(--color-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-soft);
  pointer-events: none;
}
.premium-service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(6, 15, 44, 0.08);
  border-color: rgba(201, 162, 39, 0.2);
}
.premium-service-card:hover::after {
  transform: scaleX(1);
}
.premium-service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(0, 82, 212, 0.04);
  color: var(--color-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
  transition: transform 0.4s var(--ease-out-soft), background-color 0.4s var(--ease-out-soft), color 0.4s var(--ease-out-soft);
}
.premium-service-card:hover .premium-service-icon-wrap {
  transform: scale(1.1) rotate(8deg);
  background: var(--color-navy-light);
  color: #ffffff;
}
.premium-service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  transition: color 0.3s ease;
}
.premium-service-card:hover .premium-service-title {
  color: var(--color-navy-light);
}
.premium-service-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.premium-service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  font-weight: 600;
}
.premium-service-support-badge {
  font-size: 0.72rem;
  color: var(--color-text-faint);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.premium-service-link {
  color: var(--color-navy-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.premium-service-card:hover .premium-service-link {
  color: var(--color-gold-deep);
  gap: 10px;
}

/* ---------- AGENCY MINIMAL FORM CONTROLS (Flolapo Inspired) ---------- */
.agency-form-group {
  margin-bottom: var(--space-md);
  position: relative;
  text-align: left;
}
.agency-form-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  margin-bottom: 6px;
  display: block;
}
.agency-form-control {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid var(--color-border) !important;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-navy);
  border-radius: 0 !important;
  transition: border-color 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
  outline: none;
}
.agency-form-control::placeholder {
  color: var(--color-text-faint);
  opacity: 0.85;
}
.agency-form-control:focus {
  border-bottom-color: var(--color-navy-light) !important;
  box-shadow: 0 4px 10px rgba(0, 82, 212, 0.04) !important;
}
.agency-form-control.is-invalid {
  border-bottom-color: var(--color-danger) !important;
}
textarea.agency-form-control {
  min-height: 100px;
  resize: vertical;
}

/* ---------- SLIDING SPLIT MENU TRANSITION (Flolapo Style) ---------- */
.alterz-nav a {
  display: inline-block !important;
  overflow: hidden !important;
  vertical-align: middle !important;
  height: 30px !important;
  white-space: nowrap !important;
}
.alterz-nav a span {
  display: block !important;
  position: relative !important;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  line-height: 30px !important;
  white-space: nowrap !important;
}
.alterz-nav a span::before {
  content: attr(data-hover) !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  color: var(--color-gold-light) !important;
  font-weight: 600 !important;
}
.alterz-nav a:hover span {
  transform: translateY(-100%) !important;
}
.alterz-header.is-scrolled .alterz-nav a span::before {
  color: var(--color-navy-light) !important;
}

/* ---------- AGENCY SOCIAL FOLLOW ANIMATION (Flolapo Style) ---------- */
.agency-social-follow-container {
  padding: 2rem !important;
  border-radius: var(--radius-card) !important;
  border: 1px solid var(--color-border) !important;
  background: var(--color-white) !important;
  box-shadow: var(--shadow-card) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  transition: transform 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
}
.agency-social-follow-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover) !important;
}
.agency-social-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-faint);
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.agency-social-follow-container:hover .agency-social-title {
  color: var(--color-navy-light);
}
.agency-social-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--gradient-gold-line);
  transition: width 0.4s var(--ease-out-soft);
}
.agency-social-follow-container:hover .agency-social-title::after {
  width: 60px;
}
.agency-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: var(--space-xs) 0 0 0;
  padding: 0;
  list-style: none;
}
.agency-social-item {
  position: relative;
}
.agency-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.4s var(--ease-out-soft), 
              color 0.4s var(--ease-out-soft), 
              border-color 0.4s var(--ease-out-soft),
              box-shadow 0.4s var(--ease-out-soft);
}
.agency-social-link:hover {
  transform: scale(1.18) translateY(-3px);
  background: var(--color-navy-light);
  color: #ffffff;
  border-color: var(--color-navy-light);
  box-shadow: 0 8px 20px rgba(0, 82, 212, 0.25);
}
/* Stagger fade in animation triggers */
.agency-social-list .agency-social-item {
  opacity: 0;
  transform: translateY(12px);
  animation: agencyFadeInStagger 0.6s var(--ease-out-soft) forwards;
}
.agency-social-item:nth-child(1) { animation-delay: 0.1s; }
.agency-social-item:nth-child(2) { animation-delay: 0.2s; }
.agency-social-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes agencyFadeInStagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- ARCHITECTURAL ECOSYSTEM INDEX ---------- */
.eco-index-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.eco-sticky-heading {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.eco-index-list {
  display: flex;
  flex-direction: column;
}
.eco-index-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: padding-left 0.4s var(--ease-out-soft), border-color 0.4s var(--ease-out-soft);
  text-decoration: none !important;
}
.eco-index-item:first-child {
  border-top: 1px solid var(--color-border);
}
.eco-index-item:hover {
  padding-left: 1.25rem;
  border-bottom-color: var(--color-gold);
}
.eco-index-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.6;
  width: 32px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-soft);
}
.eco-index-item:hover .eco-index-num {
  transform: translateX(4px);
}
.eco-index-content {
  flex-grow: 1;
}
.eco-index-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.eco-index-item:hover .eco-index-title {
  color: var(--color-navy-light);
}
.eco-index-title i {
  font-size: 1.15rem;
  color: var(--color-text-faint);
  transition: color 0.3s ease, transform 0.3s ease;
}
.eco-index-item:hover .eco-index-title i {
  color: var(--color-gold);
  transform: scale(1.15);
}
.eco-index-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.eco-index-arrow {
  font-size: 1.2rem;
  color: var(--color-text-faint);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s var(--ease-out-soft), transform 0.4s var(--ease-out-soft), color 0.4s var(--ease-out-soft);
  align-self: center;
  flex-shrink: 0;
}
.eco-index-item:hover .eco-index-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-gold-deep);
}

/* Mobile responsive padding adjustments */
@media (max-width: 991.98px) {
  .eco-sticky-heading {
    position: static;
    margin-bottom: var(--space-lg);
  }
  .eco-index-item {
    padding: 1.5rem 0;
  }
}

/* ---------- ECOSYSTEM STATUS CARD (LEFT COLUMN) ---------- */
.eco-status-card {
  background: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 20px !important;
  padding: 1.75rem !important;
  box-shadow: var(--shadow-card) !important;
  margin-top: 2.5rem !important;
  max-width: 420px;
}
.status-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
  position: relative;
}
.indicator-dot.blinking::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-success);
  animation: statusPulse 1.8s infinite ease-in-out;
}
@keyframes statusPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}
.indicator-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.system-ver {
  font-size: 0.7rem;
  color: var(--color-text-faint);
  font-weight: 600;
}
.status-progress-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.progress-ring-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.progress-ring {
  transform: rotate(-90deg);
}
.progress-ring-circle {
  stroke-linecap: round;
}
.progress-ring-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-navy);
}
.progress-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.progress-info p {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}
.status-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  text-align: left;
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.metric-val {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy-light);
}
.metric-val.text-success {
  color: var(--color-success) !important;
}

/* =====================================================================
   28. PACKAGE DETAILS PAGE CUSTOM STYLING & RESPONSIVENESS
   ===================================================================== */
.package-details-section {
  padding: var(--space-xl) 0 !important; /* Overrides generic section !important padding */
}

.package-checklist-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-lg);
  padding: var(--space-lg) var(--space-md);
  height: auto !important;
}

.package-sidebar-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.package-sidebar-card {
  padding: var(--space-md);
  height: auto !important;
}

.package-tier-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: transparent;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-standard);
}

.package-tier-link:hover {
  border-color: var(--color-navy-light);
  background-color: rgba(0, 82, 212, 0.03);
}

.package-tier-link.is-active {
  border-color: var(--color-navy-light);
  background-color: var(--color-bg-soft);
}

.package-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* =====================================================================
   29. SERVICES DETAILS PAGE CUSTOM STYLING
   ===================================================================== */
.service-overview-card {
  padding: var(--space-xl) var(--space-lg);
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
  height: auto !important;
}

.service-quality-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  height: auto !important;
}

.service-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}