/* ==========================================================================
   PICTOR SERVICES PREMIUM LANDING PAGE STYLING SYSTEM
   ========================================================================== */
/* Fonts loaded via preconnect in HTML <head> to eliminate render-blocking @import waterfall */

/* 1. CSS VARIABLES & THEMING SYSTEM */
:root {
  /* Premium Deep Purple & Gold palette */
  --bg-primary: #fbf9fe;      /* Light purple-tinted white */
  --bg-secondary: #f3eef9;    /* Soft lavender grey */
  --bg-dark: #22093a;         /* Midnight purple */
  --bg-dark-accent: #170428;  /* Deep purple-black */
  
  --color-primary: #512c82;   /* Premium Deep Purple */
  --color-primary-hover: #3d1e66;
  --color-highlight: #fbee43; /* Vibrant Gold */
  --color-text: #1a0a2a;      /* Deep purple-black */
  --color-text-light: #5e4d70;/* Muted purple-gray body text */
  --color-text-white: #fbf9fe;
  --color-success: #3c7a3c;   /* Green success */
  
  --border-color: rgba(81, 44, 130, 0.08);
  --border-color-white: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-headings: 'Bebas Neue', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Shadows and Transitions */
  --shadow-sm: 0 2px 8px rgba(34, 9, 58, 0.04);
  --shadow-md: 0 8px 30px rgba(34, 9, 58, 0.06);
  --shadow-lg: 0 16px 40px rgba(34, 9, 58, 0.1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout constraints */
  --container-width: 1200px;
  --header-height: 88px;
}

/* 2. BASE RESET & GLOBAL STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--bg-dark);
}

p {
  color: var(--color-text-light);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul {
  list-style: none;
}

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

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

/* 3. LAYOUT UTILITIES */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

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

.grid-30-70 {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}

.grid-40-60 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
}

.align-center {
  align-items: center;
}

.text-center-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  background-color: rgba(81, 44, 130, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(81, 44, 130, 0.15);
  margin-bottom: 16px;
}

.section-tag.text-light {
  color: var(--color-highlight);
  background-color: rgba(251, 238, 67, 0.12);
  border-color: rgba(251, 238, 67, 0.3);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-heading.text-white {
  color: var(--color-text-white);
}

.section-subtext {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.text-white-op {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.text-highlight {
  color: var(--color-primary);
}

.font-editorial {
  font-family: var(--font-headings);
  font-style: italic;
  font-weight: 400;
}

/* 4. BUTTONS & UI INTERACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-highlight);
  color: var(--color-primary);
  border: 1px solid var(--color-highlight);
  box-shadow: 0 4px 14px rgba(251, 238, 67, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-highlight);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: rgba(81, 44, 130, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(251, 238, 67, 0.1);
  border-color: var(--color-highlight);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-full-width {
  width: 100%;
}

/* Glassmorphism Panel base styling */
.glass-panel {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* Micro-interaction: Card Lift */
.card-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* 5. PORTAL SWITCHER & UI CONTROLS */

/* Portal Switcher toggle */
.portal-toggle-container {
  display: flex;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 3px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.portal-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.portal-toggle-btn .flag {
  font-size: 0.95rem;
}

.portal-toggle-btn:hover {
  color: var(--color-text-white);
}

.portal-toggle-btn.active {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: 0 2px 8px rgba(81, 44, 130, 0.3);
}

.calc-tab-btn {
  background: none;
  border: none;
  color: var(--color-text-light);
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-tab-btn:hover {
  color: var(--color-primary);
}

.calc-tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-text-white) !important;
  box-shadow: 0 4px 12px rgba(81, 44, 130, 0.2);
}

/* 6. STICKY NAVIGATION HEADER */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Sticky active state on scroll */
.main-header.scrolled {
  background-color: var(--bg-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo-svg, .logo-image-file {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), height var(--transition-fast);
}

.logo-container:hover .logo-image-file {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .logo-svg, .logo-image-file {
    height: 52px;
  }
}

.logo-text-brand {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.12em;
  color: var(--color-text-white);
}

.logo-subtext-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-highlight);
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================================================
   8. NAVIGATION DROPDOWN MENU
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--color-text-light);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: var(--bg-secondary);
  color: var(--color-primary);
  font-weight: 600;
}

/* Show dropdown on hover */
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Chevron Icon */
.dropdown-chevron {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
  stroke: currentColor;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

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

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

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* 7. MOBILE NAVIGATION OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-overlay.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-family: var(--font-headings);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.mobile-nav-link[style*="padding-left"] {
  font-size: 0.95rem !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-highlight);
}

.mobile-cta-li {
  margin-top: 24px;
}

.btn-mobile-cta {
  width: 100%;
  background-color: var(--color-highlight) !important;
  color: var(--color-primary) !important;
  font-weight: 700;
  text-align: center;
}

/* 8. HERO SECTION & FULL-BLEED REGIONAL HERO BACKGROUNDS */
.hero-section {
  position: relative;
  padding: 130px 0 110px;
  background-color: var(--bg-dark);
  background-image: image-set(
    url('australia_landmarks_hero.webp') type('image/webp'),
    url('australia_landmarks_hero.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 0.4s ease-in-out;
}

body.region-au .hero-section {
  background-image: image-set(
    url('australia_landmarks_hero.webp') type('image/webp'),
    url('australia_landmarks_hero.jpg') type('image/jpeg')
  );
  background-position: center right;
}

body.region-np .hero-section {
  background-image: image-set(
    url('nepal_global_pathways_hero.webp') type('image/webp'),
    url('nepal_global_pathways_hero.jpg') type('image/jpeg')
  );
  background-position: center center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(100deg, 
    rgba(23, 4, 40, 0.94) 0%, 
    rgba(34, 9, 58, 0.90) 38%, 
    rgba(34, 9, 58, 0.70) 65%, 
    rgba(15, 3, 26, 0.42) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease-in-out;
}

body.region-np .hero-section::before {
  background: linear-gradient(100deg, 
    rgba(23, 4, 40, 0.93) 0%, 
    rgba(34, 9, 58, 0.84) 42%, 
    rgba(23, 4, 40, 0.48) 72%, 
    rgba(15, 3, 26, 0.32) 100%);
}


.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.hero-content {
  width: 100%;
  max-width: 680px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.hero-heading {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-heading span.text-primary {
  color: var(--color-highlight);
  text-shadow: 0 2px 14px rgba(251, 238, 67, 0.35);
}

.hero-subheading {
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 620px;
  text-align: left;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-hero-primary {
  background-color: var(--color-highlight);
  color: var(--bg-dark);
  font-weight: 700;
  border: 1.5px solid var(--color-highlight);
  box-shadow: 0 4px 18px rgba(251, 238, 67, 0.35);
  padding: 14px 28px;
}

.btn-hero-primary:hover {
  background-color: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 28px;
}

.btn-hero-secondary:hover {
  background-color: rgba(251, 238, 67, 0.2);
  border-color: var(--color-highlight);
  color: var(--color-highlight);
  transform: translateY(-2px);
}

.hero-accreditation-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  background-color: rgba(251, 238, 67, 0.15);
  border: 1.5px solid var(--color-highlight);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  margin-top: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-accreditation-badge .badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* Real Team Trust Pill */
.hero-team-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(23, 4, 40, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 18px 6px 8px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: fit-content;
}

.hero-avatar-group {
  display: flex;
  align-items: center;
}

.hero-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  object-position: center center;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.hero-avatar-img:first-child {
  margin-left: 0;
}

.hero-avatar-img:hover {
  transform: translateY(-3px) scale(1.12);
  z-index: 5;
}

.hero-team-pill-text {
  display: flex;
  flex-direction: column;
}

.hero-team-pill-text .pill-rating {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-highlight);
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}

.hero-team-pill-text .pill-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2px;
}

/* Hero Trust Metrics Block */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 12px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stats .stat-num {
  font-family: var(--font-headings);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-highlight);
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-stats .stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.hero-landmark-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 4;
  background: rgba(23, 4, 40, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-fast);
}

.hero-landmark-tag:hover {
  background: rgba(34, 9, 58, 0.9);
  border-color: var(--color-highlight);
  color: #ffffff;
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 20px 24px;
    margin-top: 20px;
    padding-top: 16px;
  }
  .hero-stats .stat-num {
    font-size: 1.85rem;
  }
  .hero-stats .stat-lbl {
    font-size: 0.72rem;
  }
}



.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 32px;
  border-radius: 24px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.user-status-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  position: relative;
}

.avatar-dot::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 50%;
  border: 1px solid var(--color-success);
  animation: pulse-ring 2s infinite ease-out;
}

.avatar-info {
  display: flex;
  flex-direction: column;
}

.avatar-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.avatar-role {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.live-tag {
  background-color: var(--bg-dark);
  color: var(--color-highlight);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-value-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-value {
  font-size: 1.85rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--bg-dark);
}

.trend-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.trend-indicator.up {
  color: var(--color-success);
}

.trend-indicator.up svg {
  width: 14px;
  height: 14px;
}

.progress-bar-container {
  height: 4px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.stat-meta {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

/* Floating badge info on dashboard */
.floating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  max-width: 240px;
  z-index: 3;
}

.fb-icon {
  background-color: rgba(81, 44, 130, 0.1);
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-icon svg {
  width: 20px;
  height: 20px;
}

.fb-text {
  display: flex;
  flex-direction: column;
}

.fb-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.fb-desc {
  font-size: 0.75rem;
  color: var(--color-text-light);
}



/* 9. TRUST & ACCREDITATION MARQUEE BAR */
.trust-bar-section {
  padding: 40px 0;
  border-top: 2px solid var(--color-highlight);
  border-bottom: 2px solid var(--color-highlight);
  background-color: var(--bg-dark);
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.trust-bar-section .container {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.trust-bar-title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-highlight);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scrolling-track-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.scrolling-track-container::before, .scrolling-track-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.scrolling-track-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.scrolling-track-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.scrolling-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

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

.accreditation-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-primary);
  border: 1px solid rgba(251, 238, 67, 0.35);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 320px;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

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

.accreditation-icon {
  font-size: 1.85rem;
  line-height: 1;
}

.accreditation-details {
  display: flex;
  flex-direction: column;
}

.accred-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 2px;
}

.accred-num {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: normal;
  line-height: 1.3;
}

/* 10. ABOUT FOUNDER SECTION */
.about-section {
  padding: 112px 0;
  border-bottom: 1px solid var(--border-color);
}

.image-stack-container {
  position: relative;
  display: inline-block;
  width: 90%;
  max-width: 420px;
}

.stack-bg-card {
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  z-index: 1;
}

.founder-image-main {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-primary);
}

.achievement-floating-card {
  position: absolute;
  bottom: 32px;
  right: -24px;
  z-index: 3;
  padding: 16px 20px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
}

.floating-accent-text {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.floating-sub-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.founder-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.metric-box {
  border-left: 2px solid var(--color-primary);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 11. DYNAMIC SERVICES SECTION */
.services-section {
  padding: 112px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.services-tab-container-wrapper {
  position: relative;
}

.services-tabs-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: stretch;
}

.services-tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-normal);
  color: var(--color-text-light);
}

.services-tab-btn .tab-btn-icon-wrapper {
  background-color: rgba(81, 44, 130, 0.05);
  color: var(--color-text-light);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.services-tab-btn .tab-btn-icon-wrapper svg {
  width: 18px;
  height: 18px;
}

.services-tab-btn .tab-btn-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.services-tab-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
  border-color: rgba(81, 44, 130, 0.15);
}

.services-tab-btn.active {
  background: var(--bg-primary);
  border-color: var(--color-highlight);
  border-left: 4px solid var(--color-highlight);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.services-tab-btn.active .tab-btn-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-highlight); /* Gold icon on active state */
}

.services-tab-btn.active .tab-btn-title {
  color: var(--color-primary);
}

.services-tab-content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-detail-card {
  padding: 48px;
  display: none;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.service-detail-card .service-icon-wrapper {
  background-color: rgba(81, 44, 130, 0.08);
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-detail-card .service-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.service-detail-card .service-title {
  font-size: 1.85rem;
  margin-bottom: 18px;
  color: var(--color-text);
  font-family: var(--font-headings);
}

.service-detail-card .service-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.service-detail-card .service-points {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-detail-card .service-points li {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-card .service-points li::before {
  content: '✓';
  color: var(--color-highlight); /* Gold checkmarks for premium style */
  font-weight: 900;
}

.service-detail-card .service-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.service-detail-card .service-link:hover {
  color: var(--color-primary-hover);
}

.service-detail-card .service-link .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.service-detail-card .service-link:hover .arrow-icon {
  transform: translateX(6px);
}

.service-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-wrapper {
  background-color: rgba(81, 44, 130, 0.08);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

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

.service-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--color-text);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-points {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-points li {
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-points li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.service-link .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* 12. VISA PATHWAY VISUALIZER */
.pathway-section {
  padding: 96px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.pathway-inner {
  background-color: var(--bg-dark);
  border-radius: 24px;
  padding: 64px;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
}

.selector-wrapper {
  margin-top: 32px;
}

.select-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-highlight);
  margin-bottom: 12px;
}

.custom-select-container {
  position: relative;
  max-width: 320px;
}

.custom-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-white);
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  appearance: none;
  font-weight: 500;
  transition: border-color var(--transition-fast);
}

.custom-select option {
  background-color: var(--bg-dark);
  color: var(--color-text-white);
}

select option {
  background-color: #ffffff;
  color: var(--color-text);
}

.custom-select:hover {
  border-color: var(--color-highlight);
}

.custom-select-container::after {
  content: '▼';
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.pathway-results-container {
  display: flex;
  justify-content: center;
}

.pathway-card {
  width: 100%;
  max-width: 440px;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.07);
  background-color: rgba(255, 255, 255, 0.03);
  display: none;
  flex-direction: column;
}

.pathway-card.active {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

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

.pathway-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.pathway-tag {
  display: inline-block;
  background-color: rgba(81, 44, 130, 0.2);
  color: var(--color-highlight);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pathway-title {
  color: var(--color-text-white);
  font-size: 1.45rem;
}

.pathway-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pathway-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.pathway-detail-item {
  display: flex;
  flex-direction: column;
}

.detail-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}

.detail-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-highlight);
}

.checklist-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-white);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.pathway-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.pathway-checklist li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 8px;
  line-height: 1.4;
}

.pathway-checklist li::before {
  content: '✓';
  color: var(--color-highlight);
  font-weight: 700;
}

/* 13. CONSULTATION BOOKING WIZARD */
.booking-section {
  padding: 112px 0;
  border-bottom: 1px solid var(--border-color);
}

.booking-p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.benefit-item-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  background-color: rgba(81, 44, 130, 0.08);
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Wizard card styles */
.booking-wizard-container {
  display: flex;
  justify-content: center;
}

.wizard-card {
  width: 100%;
  max-width: 480px;
  padding: 20px 32px;
}

.wizard-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all var(--transition-fast);
}

.step-indicator.active {
  background-color: var(--color-primary);
  color: var(--color-highlight);
  border-color: var(--color-highlight);
  box-shadow: 0 4px 10px rgba(81, 44, 130, 0.25);
}

.step-indicator.completed {
  background-color: var(--color-primary);
  color: var(--color-highlight);
  border-color: var(--color-highlight);
}

.step-label {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-light);
  white-space: nowrap;
}

.step-indicator.active .step-label {
  color: var(--color-primary);
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-highlight), var(--color-primary));
  position: relative;
  top: 0;
  z-index: 1;
}

.wizard-body {
  position: relative;
  min-height: 340px;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.wizard-step-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.wizard-step-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

/* Calendar styling */
.calendar-wrapper {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 12px;
  background-color: var(--bg-primary);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calendar-month-year {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.calendar-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.calendar-nav-btn:hover {
  background-color: var(--bg-secondary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-btn {
  aspect-ratio: 1;
  border: none;
  background: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.calendar-day-btn:hover:not(:disabled) {
  background-color: var(--bg-secondary);
  color: var(--color-primary);
}

.calendar-day-btn:disabled {
  color: rgba(37, 30, 43, 0.15);
  cursor: not-allowed;
}

.calendar-day-btn.selected {
  background-color: var(--color-primary);
  color: var(--color-highlight);
  border: 1px solid var(--color-highlight);
  font-weight: 700;
}

.calendar-day-btn.today {
  border: 1.5px solid var(--color-highlight);
  color: var(--color-primary);
}

.wizard-actions {
  margin-top: 24px;
}

.wizard-actions.split-buttons {
  display: flex;
  gap: 16px;
}

.wizard-actions.split-buttons button {
  flex: 1;
}

/* Timeslots grid */
.timezone-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
  background-color: var(--bg-secondary);
  padding: 8px 12px;
  border-radius: 8px;
}

.timezone-tag {
  color: var(--color-primary);
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding: 2px;
}

.timeslot-btn {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.timeslot-btn:hover:not(:disabled) {
  border-color: var(--color-highlight);
  color: var(--color-primary);
  background-color: rgba(251, 238, 67, 0.08);
}

.timeslot-btn.selected {
  background-color: var(--color-primary);
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}

.timeslot-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: var(--bg-secondary);
}

/* Details Form inputs */
.wizard-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  margin-bottom: 16px;
}
.form-row:last-child {
  margin-bottom: 0;
}

.form-control {
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  color: var(--color-text);
  width: 100%;
}

.form-control:focus {
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 3px rgba(251, 238, 67, 0.25);
}

.dropdown-helper-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

/* Floating labels */
.floating-label-group {
  position: relative;
}

.floating-label-group input, .floating-label-group textarea {
  padding-top: 20px;
  padding-bottom: 8px;
}

.floating-label-group label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.floating-label-group input:focus ~ label,
.floating-label-group input:not(:placeholder-shown) ~ label,
.floating-label-group textarea:focus ~ label,
.floating-label-group textarea:not(:placeholder-shown) ~ label {
  top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

/* Success screens checks */
.success-screen-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.success-checkmark-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(79, 125, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.success-svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-success);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke: var(--color-success);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

.success-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.booking-receipt-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
}

.receipt-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.receipt-row span {
  color: var(--color-text-light);
}

.comment-notification {
  font-size: 0.75rem;
  color: rgba(37, 30, 43, 0.5);
  margin-bottom: 20px;
}

/* 14. MIGRATION PROCESS TIMELINE & HELPFUL TOOLS (SIDE-BY-SIDE) */
.process-tools-section {
  padding: 112px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.process-tools-container {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 4%;
  align-items: start;
}

/* Vertical Timeline */
.vertical-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}

.vertical-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-highlight), var(--color-primary));
}

.v-timeline-node {
  position: relative;
  margin-bottom: 32px;
}

.v-timeline-node:last-child {
  margin-bottom: 0;
}

.v-node-bullet {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition-fast);
}

.v-timeline-node.active .v-node-bullet {
  background-color: var(--color-primary);
  border-color: var(--color-highlight);
  color: var(--color-highlight); /* Gold text on deep purple bullet */
  box-shadow: 0 0 8px rgba(251, 238, 67, 0.4);
}

.v-node-content {
  display: flex;
  flex-direction: column;
}

.v-node-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.v-node-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-light);
}

/* Helpful Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.tools-grid .tool-card:last-child:nth-child(odd) {
  grid-column: span 2;
}

.tool-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  border-top: 4px solid var(--color-highlight);
  transition: all var(--transition-normal);
}

.tool-card:hover {
  border-color: var(--color-highlight);
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(81, 44, 130, 0.08);
}

.tool-icon-wrapper {
  background-color: rgba(81, 44, 130, 0.05);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.tool-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.tool-card:hover .tool-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-highlight);
}

.tool-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.tool-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.tool-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.tool-card:hover .tool-card-link {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .process-tools-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .tools-column {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }
}

/* 15. COMPARISON MATRIX (REDESIGNED) */
.matrix-section {
  padding: 112px 0;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.comparison-matrix-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.comparison-matrix-header {
  display: grid;
  grid-template-columns: 28% 36% 36%;
  padding: 20px 24px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hdr-pictor {
  color: var(--color-primary);
}

.comparison-card {
  display: grid;
  grid-template-columns: 28% 36% 36%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  align-items: center;
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(81, 44, 130, 0.2);
  box-shadow: var(--shadow-md);
}

.comp-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 20px;
}

.comp-feature-icon {
  font-size: 1.8rem;
  background-color: rgba(81, 44, 130, 0.06);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

.comparison-card:hover .comp-feature-icon {
  background-color: rgba(81, 44, 130, 0.12);
}

.comp-feature-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.comp-feature-info p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.comp-diy, .comp-pictor {
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-diy {
  border-right: 1px dashed var(--border-color);
  border-left: 1px dashed var(--border-color);
  opacity: 0.85;
}

.comp-label.mobile-only {
  display: none;
}

.comp-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.status-warn {
  background-color: rgba(37, 30, 43, 0.06);
  color: var(--color-text-light);
}

.status-success {
  background-color: rgba(79, 125, 79, 0.1);
  color: var(--color-success);
}

.comp-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.comp-pictor .comp-desc {
  color: var(--color-text);
  font-weight: 500;
}

/* 16. TESTIMONIALS SLIDER SECTION */
.testimonials-section {
  padding: 112px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.testimonial-slider-wrapper {
  max-width: 800px;
  margin: 48px auto 0;
  position: relative;
  text-align: center;
}

.testimonial-slider-track {
  position: relative;
  min-height: 320px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, -40px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.45s;
  padding: 36px 40px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(81, 44, 130, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-align: left;
  box-sizing: border-box;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 2;
  box-shadow: 0 14px 40px rgba(81, 44, 130, 0.1);
}

/* Direction-aware Cool 3D slide animations */
.testimonial-slide.slide-in-right {
  animation: testSlideInRight 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 3;
}

.testimonial-slide.slide-out-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: testSlideOutLeft 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 1;
}

.testimonial-slide.slide-in-left {
  animation: testSlideInLeft 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 3;
}

.testimonial-slide.slide-out-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: testSlideOutRight 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 1;
}

@keyframes testSlideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(90px, 0, -50px) scale(0.93) rotateY(6deg);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  }
}

@keyframes testSlideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-90px, 0, -50px) scale(0.93) rotateY(-6deg);
  }
}

@keyframes testSlideInLeft {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(-90px, 0, -50px) scale(0.93) rotateY(-6deg);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  }
}

@keyframes testSlideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(90px, 0, -50px) scale(0.93) rotateY(6deg);
  }
}

/* Micro-animations inside active slide */
.testimonial-slide.active .rating-stars {
  animation: starPop 0.42s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.testimonial-slide.active .testimonial-quote {
  animation: quoteRise 0.46s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.testimonial-slide.active .testimonial-author {
  animation: authorRise 0.5s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  70% {
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes quoteRise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes authorRise {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Google Reviews Summary Trust Badge */
.google-reviews-summary-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 16px 26px;
  max-width: 800px;
  margin: 32px auto 0;
  box-shadow: 0 4px 20px rgba(81, 44, 130, 0.04);
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.google-badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.google-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #202124;
  line-height: 1;
}

.google-stars {
  color: #fbbc04;
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}

.google-review-count {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #5f6368;
}

.google-review-count strong {
  color: #202124;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  color: #3c4043;
  background: #ffffff;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-google-review:hover {
  background: #f8f9fa;
  border-color: #512c82;
  color: #512c82;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Slide Header & Metadata */
.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f3f4;
}

.review-source-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5f6368;
}

.review-source-meta svg {
  flex-shrink: 0;
}

.review-source-name {
  font-weight: 700;
  color: #202124;
}

.review-relative-time {
  color: #70757a;
}

.review-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #512c82;
  background-color: rgba(81, 44, 130, 0.07);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.rating-stars {
  font-size: 1.15rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
  color: #fbbc04;
}

.testimonial-quote {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 400;
  color: #202124;
  margin-bottom: 22px;
  font-style: normal;
  max-width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote p {
  margin: 0 0 10px;
}
.testimonial-quote p:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid #f1f3f4;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #512c82;
  color: #ffffff;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #202124;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-check-icon {
  width: 15px;
  height: 15px;
  color: #1a73e8;
  display: inline-block;
}

.author-meta {
  font-size: 0.82rem;
  color: #5f6368;
  font-weight: 500;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 0 8px;
}

.slider-nav-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c4043;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.slider-nav-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(81, 44, 130, 0.25);
}

.slider-nav-btn svg {
  width: 18px;
  height: 18px;
}

.slider-center-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.slider-counter {
  font-size: 0.86rem;
  font-weight: 600;
  color: #5f6368;
}

.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  max-width: 280px;
  overflow-x: auto;
  padding: 4px 6px;
  scrollbar-width: none;
}

.slider-dots::-webkit-scrollbar {
  display: none;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #dadce0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.slider-dot.active {
  background: linear-gradient(135deg, #512c82 0%, #7c3aed 100%);
  width: 26px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(81, 44, 130, 0.35);
}

/* ==========================================================================
   MOBILE SWIPE & HORIZONTAL SCROLL-SNAP SYSTEM
   ========================================================================== */
.mobile-swipe-hint {
  display: none;
}

.swipe-hint-pill {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin: 16px auto 0;
    text-align: center;
    user-select: none;
  }

  .swipe-hint-pill {
    display: none !important;
  }

  .swipe-dots-bar {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 4px;
  }

  .swipe-dots-bar .swipe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .swipe-dots-bar .swipe-dot.active {
    background-color: #512c82;
    width: 20px;
    border-radius: 999px;
  }

  /* 1. Mobile Team Cards Swipe Carousel */
  .team-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 16px 20px 24px !important;
    margin: 24px -20px 0 !important;
    scrollbar-width: none !important;
    touch-action: pan-x pan-y !important;
  }

  .team-grid::-webkit-scrollbar {
    display: none !important;
  }

  .team-grid .team-card {
    flex: 0 0 82% !important;
    max-width: 82% !important;
    scroll-snap-align: center !important;
    box-shadow: 0 8px 24px rgba(81, 44, 130, 0.08) !important;
  }

  /* 2. Mobile Social Feed Cards Swipe Carousel */
  .social-feed-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 12px 20px 24px !important;
    margin: 20px -20px 0 !important;
    scrollbar-width: none !important;
    touch-action: pan-x pan-y !important;
  }

  .social-feed-grid::-webkit-scrollbar {
    display: none !important;
  }

  .social-feed-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
  }

  /* 3. Mobile Comparison Matrix Cards Swipe Carousel */
  .comparison-matrix-container,
  .comparison-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 12px 20px 24px !important;
    margin: 20px -20px 0 !important;
    scrollbar-width: none !important;
    touch-action: pan-x pan-y !important;
  }

  .comparison-matrix-container::-webkit-scrollbar,
  .comparison-grid::-webkit-scrollbar {
    display: none !important;
  }

  .comparison-matrix-container .comparison-card,
  .comparison-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center !important;
  }

  .comparison-matrix-header {
    display: none !important;
  }

  /* 4. Mobile Tools Grid Swipe Carousel */
  .tools-grid {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 12px 20px 24px !important;
    margin: 16px -20px 0 !important;
    scrollbar-width: none !important;
    touch-action: pan-x pan-y !important;
    align-items: stretch !important;
  }

  .tools-grid::-webkit-scrollbar {
    display: none !important;
  }

  .tools-grid .tool-card,
  .tool-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    min-width: 85% !important;
    max-width: 85% !important;
    height: 320px !important;
    min-height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 28px 24px !important;
    box-sizing: border-box !important;
    scroll-snap-align: center !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
    -webkit-touch-callout: none !important;
  }

  .tools-grid .tool-card-desc,
  .tool-card-desc {
    flex-grow: 1 !important;
    margin-bottom: 16px !important;
  }

  .tools-grid .tool-card-link,
  .tool-card-link {
    margin-top: auto !important;
  }

  /* 5. Mobile Services Card Transition */
  .service-detail-card {
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-detail-card.slide-in-right {
    animation: serviceInRight 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .service-detail-card.slide-in-left {
    animation: serviceInLeft 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .service-detail-card.slide-out-left {
    animation: serviceOutLeft 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .service-detail-card.slide-out-right {
    animation: serviceOutRight 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes serviceInRight {
    0% { opacity: 0; transform: translateX(45px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  @keyframes serviceInLeft {
    0% { opacity: 0; transform: translateX(-45px); }
    100% { opacity: 1; transform: translateX(0); }
  }

  @keyframes serviceOutLeft {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-45px); }
  }

  @keyframes serviceOutRight {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(45px); }
  }

  /* 6. Mobile Process Timeline Stepper */
  .v-timeline-node {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .v-timeline-node.active .v-node-bullet {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(81, 44, 130, 0.2);
  }

  /* 7. Mobile Review Cards Size Consistency */
  .testimonial-slider-wrapper {
    margin-top: 24px !important;
    padding: 0 4px !important;
  }

  .testimonial-slider-track {
    min-height: 425px !important;
    height: 425px !important;
  }

  .testimonial-slide {
    min-height: 425px !important;
    height: 425px !important;
    padding: 22px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  .testimonial-slide.active {
    height: 425px !important;
    min-height: 425px !important;
  }

  .testimonial-slide.slide-out-left,
  .testimonial-slide.slide-out-right {
    height: 425px !important;
    min-height: 425px !important;
  }

  .testimonial-card-header {
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
    flex-shrink: 0 !important;
  }

  .rating-stars {
    margin-bottom: 8px !important;
    font-size: 1.05rem !important;
    flex-shrink: 0 !important;
  }

  .testimonial-quote {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: safe center !important;
    margin: auto 0 !important;
    margin-bottom: 8px !important;
    font-size: 0.91rem !important;
    line-height: 1.5 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .testimonial-quote::-webkit-scrollbar {
    display: none !important;
  }

  .testimonial-quote p {
    margin: 0 0 6px !important;
  }

  .testimonial-quote p:last-child {
    margin-bottom: 0 !important;
  }

  .testimonial-author {
    padding-top: 10px !important;
    margin-top: auto !important;
    flex-shrink: 0 !important;
  }
}

/* 17. FAQ ACCORDION SECTION */
.faq-section {
  padding: 112px 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--bg-primary);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(37, 30, 43, 0.15);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  padding-right: 16px;
}

.faq-icon-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.icon-line {
  position: absolute;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-line:first-child {
  top: 9px; left: 2px;
  width: 16px; height: 2px;
}

.icon-line:last-child {
  top: 2px; left: 9px;
  width: 2px; height: 16px;
}

/* Active FAQ rotations */
.faq-item.active {
  border-color: var(--color-highlight);
  box-shadow: 0 4px 12px rgba(81, 44, 130, 0.05);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-item.active .icon-line {
  background-color: var(--color-highlight);
}

.faq-item.active .icon-line:first-child {
  transform: rotate(45deg);
}

.faq-item.active .icon-line:last-child {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* 18. LEAD CAPTURE FORM / CONTACT */
.contact-section {
  padding: 112px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.contact-p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.contact-offices-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.office-flag {
  font-size: 1.25rem;
}

.office-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.office-detail {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.contact-form-container {
  display: flex;
  justify-content: center;
}

.form-wrapper-card {
  width: 100%;
  max-width: 540px;
  padding: 40px;
}

.form-progress-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.form-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: all var(--transition-fast);
}

.form-step-dot.active {
  background-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(81, 44, 130, 0.15);
}

.form-step-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--border-color);
  margin: 0 12px;
}

.lead-form {
  position: relative;
  min-height: 280px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.form-card-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.form-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.full-width-field {
  width: 100%;
}

.text-area-control {
  min-height: 100px;
  resize: vertical;
}

.form-actions-row {
  margin-top: 16px;
}

.form-actions-row.split-buttons {
  display: flex;
  gap: 16px;
}

.form-actions-row.split-buttons button {
  flex: 1;
}

.receipt-box-contact {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  width: 100%;
}

.receipt-box-contact p {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.receipt-box-contact p:last-child {
  margin-bottom: 0;
}

.receipt-box-contact strong {
  color: var(--color-text-light);
}

/* 19. REGIONALIZATION FADE ENGINE */
/* Regional blocks toggle layout display */
body.region-au .regional-block[data-region="np"],
body.region-np .regional-block[data-region="au"],
body.region-au .regional-text-li.show-np,
body.region-np .regional-text-li.show-au {
  display: none !important;
}

body.region-au .regional-block[data-region="au"],
body.region-np .regional-block[data-region="np"] {
  display: block;
}

body.region-au .regional-block.services-tab-wrapper[data-region="au"],
body.region-np .regional-block.services-tab-wrapper[data-region="np"] {
  display: block;
}

/* Smooth crossfade triggers */
.regional-content-wrapper,
.about-offices-container,
.about-visual,
.hero-content,
.hero-graphics {
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

body.portal-switching .regional-content-wrapper,
body.portal-switching .hero-content,
body.portal-switching .hero-graphics,
body.portal-switching .office-box {
  opacity: 0;
  transform: translateY(4px);
}

/* 20. MOTION REVEAL DESIGN SYSTEM */
.reveal {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.fade-up {
  transform: translateY(40px);
}

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

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

.reveal.scale-in {
  transform: scale(0.95);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* 21. FOOTER */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--color-text-white);
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 40% repeat(2, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-image-file {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

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

.social-link-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.social-link-btn:hover {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-col-title {
  color: var(--color-highlight);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

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

.footer-offices-row {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 0;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px dashed rgba(251, 238, 67, 0.2);
}

.footer-offices-row strong {
  color: var(--color-highlight);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  max-width: 50%;
}

/* Footer Portal Switcher */
.footer-portal-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-switcher-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.3px;
}

.footer-toggle-container {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px;
  border-radius: 30px;
  display: inline-flex;
}

.footer-toggle-container .portal-toggle-btn {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-toggle-container .portal-toggle-btn:hover {
  color: #ffffff;
}

.footer-toggle-container .portal-toggle-btn.active {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(81, 44, 130, 0.45);
}

@media (max-width: 820px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .copyright-text {
    max-width: 100%;
    order: 2;
  }
  .footer-portal-switcher {
    order: 1;
    justify-content: center;
    width: 100%;
  }
  .back-to-top-btn {
    order: 3;
  }
}

.back-to-top-btn {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   22. RESPONSIVENESS MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .grid-2, .grid-30-70, .grid-40-60 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-graphics {
    justify-content: center;
  }
  
  .motion-map-container {
    width: 100%;
    max-width: 520px;
    transform: none;
  }
  
  .about-visual {
    order: 2;
    display: flex;
    justify-content: center;
  }
  
  .about-content {
    order: 1;
  }
  
  .testimonials-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .services-tabs-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-tab-buttons {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 12px;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .services-tab-buttons::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  
  .services-tab-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 12px 20px;
    border-radius: 12px;
  }
  
  .services-tab-btn.active {
    transform: none;
  }
  
  .services-tab-btn:hover {
    transform: none;
  }
  
  .service-detail-card {
    padding: 32px 24px;
  }
  
  .service-detail-card .service-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand-col {
    grid-column: span 2;
  }

  /* Redesigned comparison matrix 1024px query */
  .comparison-matrix-header {
    display: none;
  }
  .comparison-card {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
  }
  .comp-feature {
    grid-column: span 2;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }
  .comp-diy {
    border-left: none;
    padding-left: 0;
  }
  .comp-pictor {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu, .btn-nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .portal-toggle-container {
    width: 100%;
    justify-content: center;
  }
  
  .portal-toggle-btn {
    flex: 1;
    justify-content: center;
  }
  
  /* Hero section map removal */
  .hero-graphics {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer-brand-col {
    grid-column: span 1 !important;
  }
  
  /* Trust Bar Touch Scroll */
  .scrolling-track-container {
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  
  .scrolling-track-container::before, .scrolling-track-container::after {
    width: 30px; /* Thinner gradient shadows for small screens */
  }
  
  .scrolling-track {
    animation: none;
    width: max-content;
  }
  
  .scrolling-track .accreditation-card:nth-child(n+5) {
    display: none !important;
  }
  
  /* Pathway inner padding */
  .pathway-inner {
    padding: 32px 20px;
    border-radius: 16px;
  }
  
  .custom-select-container {
    max-width: 100%;
  }
  
  /* About Founder Image */
  .image-stack-container {
    width: 80%;
    margin: 0 auto 32px auto;
  }
  
  .stack-bg-card {
    left: -12px;
    top: 12px;
  }
  
  .achievement-floating-card {
    right: 0 !important;
    bottom: 16px;
    padding: 10px 14px;
    max-width: 150px;
  }
  
  /* Timeline styling mobile fallback */
  .timeline-progress-bar {
    left: 16px; /* Align with center of the bullets: radius 16px */
    transform: none;
    top: 16px;
    bottom: 16px;
    width: 4px;
    height: auto;
  }
  
  .timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .timeline-node {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    text-align: left !important;
    align-items: start;
  }

  .node-bullet {
    margin-bottom: 0;
    margin-top: 8px; /* Offset to align with content top */
  }

  .timeline-node:hover .node-content {
    transform: translateY(-4px);
  }
  
  /* Redesigned comparison matrix 768px query */
  .comparison-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  
  .comp-feature {
    grid-column: span 1;
  }
  
  .comp-diy, .comp-pictor {
    border-right: none;
    border-left: none;
    padding: 16px;
    border-radius: 12px;
  }
  
  .comp-diy {
    background-color: rgba(37, 30, 43, 0.02);
    border: 1px solid var(--border-color);
  }
  
  .comp-pictor {
    background: rgba(81, 44, 130, 0.03);
    border: 1px solid rgba(81, 44, 130, 0.15);
  }
  
  .comp-label.mobile-only {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 2px;
  }
  
  .comp-pictor .comp-label.mobile-only {
    color: var(--color-primary);
  }
  
  /* Services & Testimonials grids */
  .testimonials-masonry {
    grid-template-columns: 1fr;
  }
  
  /* Metrics */
  .founder-metrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-cta-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 20px 16px !important;
  }
  
  .form-wrapper-card, .wizard-card {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }
  
  .step-label {
    display: none !important;
  }
  
  .timeslots-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .timeslot-btn {
    padding: 10px 6px !important;
    font-size: 0.8rem !important;
  }
  
  .dashboard-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    left: 10px;
    bottom: -36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-brand-col {
    grid-column: span 1;
  }
  
  .copyright-text {
    max-width: 100%;
  }

  .page-header-section {
    padding: 40px 0 28px 0 !important;
  }

  .section-heading {
    font-size: 1.9rem !important;
  }

  .section-subtext {
    font-size: 0.9rem !important;
  }
}

/* ==========================================================================
   23. COMPONENT RESPONSIVENESS & CALCULATORS SYSTEM
   ========================================================================== */

/* Universal Calculator Grid (Cost Estimator & Processing Times) */
.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: stretch;
}

.calculator-inputs-card,
.calculator-results-card {
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.cost-grand-total {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  word-break: break-word;
}

.processing-time-display {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

/* Service Detail Block for Services Page */
.service-detail-block {
  padding: 48px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-sizing: border-box;
}

/* Filter Group Scrollable Container */
.filter-group-wrapper {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 10px 2px;
  scrollbar-width: none;
}

.filter-group-wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 992px) {
  .calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  .service-detail-block {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 32px 24px !important;
  }
}

@media (max-width: 768px) {
  .calculator-inputs-card,
  .calculator-results-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  
  .cost-grand-total {
    font-size: 2.2rem !important;
  }
  
  .processing-time-display {
    font-size: 2.5rem !important;
  }

  .service-detail-block {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }

  .filter-group {
    display: flex !important;
    width: max-content;
    white-space: nowrap;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 8px 16px !important;
    font-size: 0.84rem !important;
  }
}

@media (max-width: 480px) {
  .calculator-inputs-card,
  .calculator-results-card {
    padding: 20px 14px !important;
  }
  
  .cost-grand-total {
    font-size: 1.9rem !important;
  }
  
  .processing-time-display {
    font-size: 2.1rem !important;
  }

  .service-detail-block {
    padding: 20px 14px !important;
  }

  .service-detail-block ul {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   26. SOCIAL FEED SECTION
   ========================================================================== */
.social-feed-section {
  padding: 112px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.social-feed-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(37, 30, 43, 0.06);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(26, 21, 32, 0.015);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.social-feed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: background-color var(--transition-normal);
}

.social-feed-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 30, 43, 0.12);
  box-shadow: 0 16px 40px rgba(26, 21, 32, 0.05);
}

/* Subtle top line indicator of platform color on hover */
.social-feed-card:hover.card-fb::before { background-color: #4267B2; }
.social-feed-card:hover.card-ig::before { background-color: #E1306C; }
.social-feed-card:hover.card-ln::before { background-color: #0077B1; }
.social-feed-card:hover.card-tt::before { background-color: var(--color-primary); }

.social-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.social-profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-platform-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.social-platform-icon-wrapper .platform-icon {
  width: 18px;
  height: 18px;
}

.platform-facebook {
  background-color: rgba(66, 103, 178, 0.06);
  color: #4267B2;
}

.platform-instagram {
  background-color: rgba(225, 48, 108, 0.06);
  color: #E1306C;
}

.platform-linkedin {
  background-color: rgba(0, 119, 181, 0.06);
  color: #0077B1;
}

.platform-tiktok {
  background-color: rgba(26, 21, 32, 0.06);
  color: var(--color-text);
}

.profile-details {
  display: flex;
  flex-direction: column;
}

.profile-handle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.profile-handle .verified-icon {
  width: 14px;
  height: 14px;
  color: var(--color-highlight);
}

.post-platform-label {
  font-size: 0.72rem;
  color: var(--color-text-light);
  opacity: 0.85;
}

.post-date {
  font-size: 0.72rem;
  color: var(--color-text-light);
  opacity: 0.7;
  font-weight: 500;
  margin-top: 2px;
}

.social-post-text {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin-bottom: 28px;
  flex-grow: 1;
}

.social-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 20px;
}

.social-post-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.social-post-link:hover {
  color: var(--color-primary);
}

.link-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.social-post-link:hover .link-arrow-icon {
  transform: translateX(4px);
}

/* Responsive override for social feed grid */
@media (max-width: 1024px) {
  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-feed-grid {
    grid-template-columns: 1fr;
  }
}

/* 13b. GOOGLE CALENDAR INTEGRATION STYLES */
.booking-method-selector {
  display: flex;
  gap: 6px;
  background: rgba(37, 30, 43, 0.04);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  margin-bottom: 28px;
}

.method-tab-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.method-tab-btn:hover {
  color: var(--color-primary);
  background: rgba(81, 44, 130, 0.05);
}

.method-tab-btn.active {
  background: var(--color-primary);
  color: var(--color-text-white) !important;
  box-shadow: 0 4px 12px rgba(81, 44, 130, 0.2);
}

.google-calendar-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.calendar-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(254, 253, 251, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  border-radius: 12px;
}

.spinner-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(81, 44, 130, 0.1);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.calendar-fallback {
  text-align: center;
  padding: 40px 24px;
  border: 1px dashed var(--border-color);
  border-radius: 16px;
  background: rgba(254, 253, 251, 0.5);
}

.fallback-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.calendar-popup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: rgba(254, 253, 251, 0.4);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(81, 44, 130, 0.03);
}

.popup-card-icon {
  background: rgba(81, 44, 130, 0.08);
  border-radius: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.popup-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  font-family: var(--font-headings);
}

.popup-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 340px;
}

/* Spinner for timeslots loading */
.timeslots-loader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 0;
}

.small-spinner {
  width: 28px !important;
  height: 28px !important;
  border-width: 2px !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   26. VISA POINTS CALCULATOR (POSITIVE MIGRATION THEME ALIGNED)
   ========================================================================== */

/* Main Layout Grid */
.calculator-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .calculator-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Left Sidebar Resources Menu */
.calculator-sidebar {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.sidebar-sticky-box {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.sidebar-title {
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.sidebar-link:hover {
  background-color: var(--bg-secondary);
  color: var(--color-primary);
}

.sidebar-link.active {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-weight: 600;
}

.sidebar-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Center Wizard Layout Container */
.calculator-wizard-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.wizard-main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* Sticky Score Banner (side-aligned horizontal layout) */
.sticky-score-banner {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  z-index: 90;
  background-color: var(--bg-dark);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-color-white);
  color: var(--color-text-white);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-md);
  height: 440px; /* Equal height to right column selection card */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.left-panel-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: auto;
}

.banner-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.score-display-box {
  display: flex;
  flex-direction: column;
}

.score-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-highlight);
  letter-spacing: 0.1em;
}

.score-number {
  font-size: 1.8rem; /* Slightly smaller score text */
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.1;
  font-family: var(--font-body);
}

.badge-status {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
}

.badge-status.getting-close {
  background-color: rgba(217, 156, 83, 0.15);
  color: var(--color-highlight);
  border-color: rgba(217, 156, 83, 0.3);
}

.badge-status.eligible {
  background-color: rgba(79, 125, 79, 0.2);
  color: #8ce08c;
  border-color: rgba(79, 125, 79, 0.4);
}

.score-message {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.4;
}

.progress-bar-wrapper {
  position: relative;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 18px;
  overflow: visible;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-highlight) 100%);
  border-radius: 4px;
  transition: width 0.4s ease-out;
}

.progress-threshold-line {
  position: absolute;
  top: -8px;
  height: 24px;
  width: 2px;
  background-color: var(--color-highlight);
  z-index: 1;
}

.threshold-marker-text {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-highlight);
  white-space: nowrap;
}

/* Wizard tracker and progress indicators */
.wizard-tracker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 10px 24px; /* Reduced padding */
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 12px;
}

.wizard-step-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wizard-step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wizard-current-step-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.wizard-progress-dots {
  display: flex;
  gap: 8px;
}

.wizard-progress-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.wizard-progress-dots .dot:hover {
  background-color: var(--color-primary-hover);
}

.wizard-progress-dots .dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
  border-color: var(--color-primary);
}

/* Wizard Slider & Track */
.wizard-slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.wizard-slider-window {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-primary);
  height: 440px; /* Set comfortable height on desktop since it is side-by-side */
  display: flex;
  flex-direction: column;
}

.wizard-form {
  height: calc(100% - 54px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wizard-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
}

.wizard-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--bg-primary);
  padding: 16px 28px; /* Reduced padding */
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto; /* Allow scroll within the card only if content exceeds 100% */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  visibility: hidden; /* Prevent focus and tabbing on hidden slides */
  transition: visibility 0.5s;
}

.wizard-slide::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.wizard-slide.active-slide {
  visibility: visible;
}

/* Desktop Arrow Navigation buttons */
.wizard-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 10;
}

.wizard-arrow-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.wizard-arrow-btn:disabled {
  opacity: 0.15;
  cursor: not-allowed;
  transform: none;
}

.wizard-arrow-btn svg {
  width: 24px;
  height: 24px;
}

/* Bottom Navigation Controls - Placed on the bottom-right corner */
.wizard-bottom-nav {
  display: flex;
  justify-content: flex-end; /* Align buttons container to bottom right */
  align-items: center;
  padding: 8px 24px;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 20px 20px;
  height: 54px;
  box-sizing: border-box;
}

.wizard-nav-buttons-container {
  display: flex;
  gap: 8px;
}

.wizard-nav-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.wizard-nav-arrow-btn:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.wizard-nav-arrow-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wizard-nav-arrow-btn svg {
  width: 18px;
  height: 18px;
}

/* Responsive Media Queries for Mobile/Tablet */
@media (max-width: 992px) {
  .calculator-wizard-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sticky-score-banner {
    position: relative;
    top: 0;
    margin-bottom: 8px;
    height: auto !important;
    min-height: auto !important;
    padding: 20px !important;
  }
}

@media (max-width: 768px) {
  .wizard-slider-window {
    height: auto !important; /* Dynamic height on mobile */
    min-height: auto !important;
    border-radius: 16px !important;
  }
  .wizard-form {
    height: auto !important;
    overflow: visible !important;
  }
  .wizard-slider-track {
    height: auto !important;
  }
  .wizard-slide {
    height: auto !important;
    padding: 20px 16px !important;
    overflow-y: visible !important;
    min-height: 280px;
  }
  .wizard-bottom-nav {
    padding: 12px 16px !important;
    height: auto !important;
  }
  .wizard-arrow-btn {
    display: none !important;
  }
  .wizard-slider-container {
    gap: 0 !important;
  }
  .sticky-score-banner {
    padding: 16px 18px !important;
    border-radius: 16px !important;
  }
  .score-number {
    font-size: 1.6rem !important;
  }
  .wizard-tracker {
    padding: 12px 16px !important;
    border-radius: 16px !important;
  }
  .wizard-current-step-name {
    font-size: 1.05rem !important;
  }
  .wizard-progress-dots {
    gap: 6px !important;
  }
  .wizard-progress-dots .dot {
    width: 8px !important;
    height: 8px !important;
  }
  .option-card {
    padding: 12px 14px !important;
  }
  .option-label-text {
    font-size: 0.9rem !important;
  }
  .option-points-val {
    font-size: 0.82rem !important;
  }
  .action-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .action-buttons .btn {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 12px 20px !important;
  }
}

@media (max-width: 480px) {
  .sticky-score-banner {
    padding: 14px 14px !important;
  }
  .score-number {
    font-size: 1.45rem !important;
  }
  .badge-status {
    padding: 4px 10px !important;
    font-size: 0.68rem !important;
  }
  .wizard-slide {
    padding: 16px 12px !important;
  }
  .calc-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .section-title {
    font-size: 1.05rem !important;
  }
  .section-score-badge {
    align-self: flex-start;
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
  }
  .breakdown-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* Questions and Sections */
.calc-section {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.calc-section:focus-within,
.calc-section:hover {
  border-color: rgba(81, 44, 130, 0.25);
  box-shadow: var(--shadow-md);
}

.calc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 12px; /* Reduced bottom spacing */
  gap: 20px;
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-title {
  font-size: 1.15rem; /* More compact title */
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 0.82rem; /* More compact description */
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.4;
}

.section-score-badge {
  background-color: var(--bg-secondary);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.section-score-badge.active {
  background-color: var(--color-highlight);
  color: var(--bg-dark);
  box-shadow: 0 4px 10px rgba(217, 156, 83, 0.2);
}

/* Radio Option Cards */
.options-container {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Closer gap */
}

.option-card {
  display: flex;
  align-items: center;
  padding: 10px 16px; /* Compact padding */
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.option-card:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(81, 44, 130, 0.2);
  transform: translateY(-1px);
}

.option-card.selected {
  border-color: var(--color-highlight);
  background-color: rgba(217, 156, 83, 0.04);
  box-shadow: 0 4px 12px rgba(217, 156, 83, 0.08);
}

.option-radio-input,
.option-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.option-radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-text-light);
  border-radius: 50%;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.option-card:hover .option-radio-circle {
  border-color: var(--color-primary);
}

.option-card.selected .option-radio-circle {
  border-color: var(--color-highlight);
}

.option-card.selected .option-radio-circle::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--color-highlight);
  border-radius: 50%;
  display: block;
}

.option-label-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  margin-right: auto;
}

.option-points-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-light);
  white-space: nowrap;
}

.option-card.selected .option-points-val {
  color: var(--color-primary);
}

/* Checkbox Cards (For Boosts) */
.checkboxes-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-checkbox-square {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-text-light);
  border-radius: 4px;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.option-card:hover .option-checkbox-square {
  border-color: var(--color-primary);
}

.option-card.selected .option-checkbox-square {
  border-color: var(--color-highlight);
  background-color: var(--color-highlight);
}

.option-card.selected .option-checkbox-square::after {
  content: '✓';
  color: var(--bg-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

/* Points Breakdown Section */
.points-breakdown-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  color: var(--bg-dark);
  border: none;
}

.breakdown-title {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; /* Reduced gap */
  margin-bottom: 16px;
}

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

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

.breakdown-item {
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all var(--transition-fast);
}

.breakdown-item:hover {
  background-color: #fff;
  border-color: rgba(81, 44, 130, 0.25);
  transform: translateY(-1px);
}

.breakdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-primary); /* Purple label on light theme background */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breakdown-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.breakdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px; /* Reduced spacing */
  font-family: var(--font-body);
}

.breakdown-footer-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-white);
}

.breakdown-footer-score {
  font-size: 2.25rem; /* Smaller score text */
  font-weight: 800;
  color: var(--color-highlight);
  line-height: 1;
}

/* Footer disclaimer and actions */
.calculator-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduced gap */
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 16px 24px; /* Reduced padding */
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.disclaimer-text a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.legal-notice {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Action buttons - Side-by-side on desktop, wraps on mobile */
.action-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.action-buttons .btn {
  flex: 1;
  min-width: 0;
  padding: 10px 20px; /* Reduced button padding */
}

.action-buttons .print-btn {
  gap: 8px;
}

/* ==========================================================================
   AGENT SELECTION & STRIPE PAYMENT WIZARD STYLES (AU PORTAL)
   ========================================================================== */

/* Enforce consistent booking card height & layout */
.wizard-card {
  height: 760px !important;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Google Calendar iframe adjustments for height consistency */
.google-calendar-container {
  height: calc(100% - 48px);
  margin-top: 16px;
}

#google-calendar-iframe {
  height: 100% !important;
}

/* Flex layout for manual booking steps */
.wizard-body {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 8px;
}

.wizard-step {
  display: none;
  flex-direction: column;
  height: 100%;
}

.wizard-step.active {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

/* Inner scrollable area for steps */
.wizard-step-content {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 12px;
  padding-right: 4px;
}

/* Custom premium scrollbar for wizard step content */
.wizard-step-content::-webkit-scrollbar {
  width: 6px;
}
.wizard-step-content::-webkit-scrollbar-track {
  background: rgba(81, 44, 130, 0.02);
  border-radius: 10px;
}
.wizard-step-content::-webkit-scrollbar-thumb {
  background: rgba(81, 44, 130, 0.15);
  border-radius: 10px;
}
.wizard-step-content::-webkit-scrollbar-thumb:hover {
  background: rgba(81, 44, 130, 0.3);
}

.wizard-actions {
  margin-top: auto; /* Pin buttons to the bottom of the card */
  padding-top: 12px;
  border-top: 1px solid rgba(81, 44, 130, 0.05);
  flex-shrink: 0;
}

/* Redesigned Compact Agent Cards (Horizontal Row) */
.agents-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}

.agent-card {
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  background: rgba(255, 255, 255, 0.65);
  gap: 16px;
  width: 100%;
}

.agent-card:hover {
  border-color: rgba(81, 44, 130, 0.2);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: none;
}

.agent-card.selected {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 1px var(--color-primary);
}

.agent-avatar-container {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.agent-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-secondary);
  transition: border-color var(--transition-fast);
}

.agent-card.selected .agent-photo {
  border-color: var(--color-primary);
}

.agent-info-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
}

.agent-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.agent-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0;
}

.agent-badge {
  position: static;
  transform: none;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.agent-card.selected .agent-badge {
  background-color: var(--color-highlight);
  color: var(--color-primary);
}

.agent-title {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.3;
  margin: 0;
}

.booking-payment-section {
  background: rgba(81, 44, 130, 0.03);
  border: 1px solid rgba(81, 44, 130, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  text-align: left;
}

.payment-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 4px;
}

.payment-desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.4;
}

.stripe-card-element-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.stripe-card-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  transition: all var(--transition-fast);
}

.stripe-card-input-wrapper:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(81, 44, 130, 0.1);
}

.card-icon-prefix {
  margin-right: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  color: var(--color-text-light);
}

.stripe-mock-input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  font-family: inherit;
}

.stripe-mock-input::placeholder {
  color: rgba(94, 77, 112, 0.4);
}

.stripe-card-row {
  display: flex;
  gap: 12px;
}

.stripe-card-input-wrapper.half-width {
  flex: 1;
}

.stripe-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}

.stripe-stub-badge {
  color: var(--color-primary);
  font-weight: 600;
  background: rgba(81, 44, 130, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  border: 1px solid rgba(81, 44, 130, 0.15);
}

.payment-total-amount {
  color: var(--color-text-light);
}

.payment-total-amount strong {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 800;
}

/* ==========================================================================
   AGENT CONSULTATION FEE & VISA OPTIONS PAGE STYLES
   ========================================================================== */

/* Agent Fee Display inside Booking Wizard */
.agent-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 0.8rem;
  border-top: 1px dashed rgba(81, 44, 130, 0.08);
  padding-top: 6px;
}

.agent-fee-label {
  color: var(--color-text-light);
  font-weight: 500;
}

.agent-fee-val {
  color: var(--color-primary);
  font-weight: 700;
  background: rgba(81, 44, 130, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.agent-card.selected .agent-fee-val {
  background: var(--color-highlight);
  color: var(--bg-dark);
}

/* Global Regional Portal Visibility Overrides */
body.region-np .show-au,
body.region-au .show-np {
  display: none !important;
}

/* Visa Options Page Layout & Cards */
.visa-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.visa-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  transition: all var(--transition-normal);
}

.visa-card-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(81, 44, 130, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.visa-card-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.visa-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.visa-card-pricing-box {
  background: rgba(81, 44, 130, 0.03);
  border: 1px solid rgba(81, 44, 130, 0.06);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.pricing-label {
  color: var(--color-text-light);
}

.pricing-value {
  font-weight: 700;
  color: var(--bg-dark);
}

.pricing-value.highlighted {
  color: var(--color-primary);
  font-size: 0.95rem;
}

.visa-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.visa-card-highlights li {
  font-size: 0.88rem;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.visa-card-highlights li::before {
  content: '✓';
  color: var(--color-highlight);
  font-weight: 900;
  flex-shrink: 0;
}

.visa-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.visa-card-actions .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 769px) {
  .wizard-step-content {
    overflow-y: hidden !important;
  }
  .wizard-step-content::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }
  .wizard-step-content::-webkit-scrollbar-track {
    background: transparent !important;
  }
  .wizard-step-content::-webkit-scrollbar-thumb {
    background: transparent !important;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 54px 0 60px;
    background-position: center top;
  }

  .hero-section::before {
    background: linear-gradient(180deg, 
      rgba(23, 4, 40, 0.92) 0%, 
      rgba(34, 9, 58, 0.88) 55%, 
      rgba(23, 4, 40, 0.95) 100%);
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-accreditation-badge {
    margin: 0 auto 16px auto;
  }

  .hero-heading {
    font-size: clamp(2.15rem, 7.5vw, 3rem);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }

  .hero-subheading {
    font-size: 1.05rem;
    line-height: 1.55;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 22px auto;
  }

  .hero-cta-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
    margin: 0 auto 22px auto;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-team-pill {
    margin: 0 auto 24px auto;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    padding: 8px 14px;
    gap: 10px;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 18px 16px;
    background: rgba(23, 4, 40, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .hero-stat-item {
    text-align: center;
    padding: 6px 4px;
  }

  .hero-stat-item .stat-num {
    font-size: 1.85rem;
  }

  .hero-stat-item .stat-lbl {
    font-size: 0.75rem;
  }

  .hero-landmark-tag {
    display: none;
  }
}

@media (max-width: 768px) {
  .visa-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .visa-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  .visa-card-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .visa-card-actions .btn {
    width: 100% !important;
  }

  /* Booking Wizard Mobile Enhancements */
  .wizard-card {
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    padding: 24px 16px !important;
  }
  .wizard-body {
    height: auto !important;
    overflow: visible !important;
  }
  .wizard-step {
    height: auto !important;
  }
  .wizard-step-content {
    overflow-y: visible !important;
    max-height: none !important;
  }
  .calendar-wrapper {
    padding: 12px 8px !important;
  }
  .calendar-days .cal-day {
    padding: 8px 4px !important;
    font-size: 0.85rem !important;
  }
  .split-buttons {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 10px !important;
  }
  .split-buttons .btn {
    width: 100% !important;
  }
  .agent-card {
    padding: 10px 12px !important;
    gap: 12px !important;
  }
  .agent-name {
    font-size: 0.95rem !important;
  }
  .agent-title {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 480px) {
  .visa-card {
    padding: 20px 14px !important;
  }
  .visa-card-title {
    font-size: 1.25rem !important;
  }
  .pricing-item {
    font-size: 0.8rem !important;
  }
}

.footer-admin-link {
  display: none;
}

/* ==========================================================================
   STATIC CONTACT & OFFICE INFORMATION SHOWCASE
   ========================================================================== */
.static-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.static-office-card {
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.static-office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-highlight));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.static-office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(81, 44, 130, 0.25);
}

.static-office-card:hover::before {
  opacity: 1;
}

.static-office-card.card-featured {
  border-color: rgba(81, 44, 130, 0.3);
  box-shadow: 0 10px 30px rgba(81, 44, 130, 0.08);
}

.static-office-card.card-featured::before {
  opacity: 1;
}

.office-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(81, 44, 130, 0.08);
  padding-bottom: 20px;
}

.office-flag-icon {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.office-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(81, 44, 130, 0.08);
  color: var(--color-primary);
}

.office-name {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--bg-dark);
  margin: 0 0 6px 0;
}

.office-role {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin: 0;
}

.office-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.94rem;
  color: var(--color-text);
  line-height: 1.5;
}

.office-info-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-top: 2px;
}

.office-info-item strong {
  color: var(--bg-dark);
  font-weight: 600;
}

.office-info-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.office-info-item a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.office-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.office-action-buttons .btn {
  flex: 1 1 calc(50% - 6px);
  min-width: 140px;
  text-align: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.contact-guide-banner {
  background: linear-gradient(135deg, rgba(81, 44, 130, 0.04) 0%, rgba(184, 138, 47, 0.08) 100%);
  border: 1px solid rgba(81, 44, 130, 0.12);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-guide-content h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin: 0 0 6px 0;
}

.contact-guide-content p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   TEAM MEMBERS SHOWCASE (teampics)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 16px 20px 24px !important;
    margin: 24px -20px 0 !important;
    scrollbar-width: none !important;
  }

  .team-grid::-webkit-scrollbar {
    display: none !important;
  }

  .team-grid .team-card {
    flex: 0 0 82% !important;
    max-width: 82% !important;
    min-width: 82% !important;
    scroll-snap-align: center !important;
    box-shadow: 0 8px 24px rgba(81, 44, 130, 0.08) !important;
  }
}



.team-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(81, 44, 130, 0.3);
}

.team-photo-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 8px 20px rgba(81, 44, 130, 0.15);
  position: relative;
  background-color: var(--bg-secondary);
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

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

.team-name {
  font-family: 'Oswald', 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bg-dark);
  margin: 0 0 6px 0;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0 0 12px 0;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 138, 47, 0.12);
  color: #8b6416;
  border: 1px solid rgba(184, 138, 47, 0.25);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.team-badge.badge-omara {
  background: rgba(81, 44, 130, 0.1);
  color: var(--color-primary);
  border-color: rgba(81, 44, 130, 0.25);
}

/* ==========================================================================
   PRINT STYLES FOR CLEAN STATIC REPORT EXPORTS
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  .main-header,
  .main-footer,
  .nav-menu,
  .mobile-nav-overlay,
  .slider-controls,
  .latex-modal-overlay,
  .back-to-top-btn,
  .portal-toggle-container,
  .location-bar,
  #header,
  button,
  .btn {
    display: none !important;
  }
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .glass-panel {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    background: #fff !important;
  }
}



