/* ==========================================================================
   CALVIUM LOGOZ — DUAL-THEME CREATIVE & DIGITAL STUDIO ENGINE
   Default: Sophisticated Executive Light Theme • Dark Luxury Studio Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts & Custom Properties (Light by default, Dark via data-theme="dark")
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&family=Syne:wght@700;800;900&display=swap');

/* LIGHT THEME (DEFAULT) */
:root, html[data-theme="light"] {
  --theme-mode: 'light';

  /* Canvas & Surfaces */
  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-card-glass: rgba(255, 255, 255, 0.94);
  --bg-elevated: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-subtle: #F1F5F9;
  --bg-dark: #0F172A;
  --bg-header: rgba(255, 255, 255, 0.92);
  --bg-header-scrolled: rgba(255, 255, 255, 0.98);

  /* Luminous Brand Accents */
  --primary: #6D28D9;
  --primary-hover: #5B21B6;
  --primary-light: #7C3AED;
  --primary-glow: rgba(109, 40, 217, 0.18);

  --accent-cyan: #0284C7;
  --accent-cyan-glow: rgba(2, 132, 199, 0.2);
  --accent-emerald: #059669;
  --accent-emerald-glow: rgba(5, 150, 105, 0.2);
  --accent-amber: #D97706;
  --accent-amber-glow: rgba(217, 119, 6, 0.2);
  --accent-rose: #E11D48;

  /* Typography Palette (High Contrast AA/AAA) */
  --text-main: #0F172A;
  --text-primary: #0F172A;
  --text-muted: #334155;
  --text-subtle: #64748B;
  --text-inverse: #FFFFFF;
  --nav-link-color: #1E293B;
  --nav-link-active: #6D28D9;

  /* Borders & Dividers */
  --border-light: #E2E8F0;
  --border-card: #E2E8F0;
  --border-hover: rgba(109, 40, 217, 0.5);
  --border-glow: rgba(2, 132, 199, 0.4);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -4px rgba(15, 23, 42, 0.09), 0 4px 10px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 16px 32px -8px rgba(109, 40, 217, 0.18), 0 4px 12px -2px rgba(2, 132, 199, 0.1);

  /* Gradient Text & Banners for Light Mode */
  --grad-text: linear-gradient(135deg, #0F172A 0%, #6D28D9 50%, #0284C7 100%);
  --grad-primary: linear-gradient(135deg, #6D28D9 0%, #0284C7 100%);
  --promo-bg: linear-gradient(135deg, #FAF5FF 0%, #F0F9FF 50%, #EEF2FF 100%);
  --promo-border: #CBD5E1;
  --promo-text-color: #0F172A;

  /* Typography */
  --font-heading: 'Outfit', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Syne', 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Radii */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;
}

/* DARK LUXURY STUDIO THEME */
html[data-theme="dark"] {
  --theme-mode: 'dark';

  /* Obsidian Velvet Base Canvas */
  --bg-main: #090A0F;
  --bg-surface: #0E111A;
  --bg-card: #131726;
  --bg-card-hover: #1A1F33;
  --bg-card-glass: rgba(19, 23, 38, 0.85);
  --bg-elevated: #1F253C;
  --bg-alt: #0D101B;
  --bg-subtle: rgba(255, 255, 255, 0.05);
  --bg-dark: #06070A;
  --bg-header: rgba(9, 10, 15, 0.88);
  --bg-header-scrolled: rgba(9, 10, 15, 0.98);

  /* Luminous Brand Accents */
  --primary: #7C3AED;
  --primary-hover: #6D28D9;
  --primary-light: #8B5CF6;
  --primary-glow: rgba(124, 58, 237, 0.35);

  --accent-cyan: #06B6D4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.35);
  --accent-emerald: #10B981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);
  --accent-amber: #F59E0B;
  --accent-amber-glow: rgba(245, 158, 11, 0.35);
  --accent-rose: #F43F5E;

  /* Typography Palette (High Contrast AA/AAA) */
  --text-main: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-muted: #CBD5E1;
  --text-subtle: #94A3B8;
  --text-inverse: #090A0F;
  --nav-link-color: #CBD5E1;
  --nav-link-active: #38BDF8;

  /* Borders & Dividers */
  --border-light: rgba(255, 255, 255, 0.1);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(124, 58, 237, 0.55);
  --border-glow: rgba(6, 182, 212, 0.45);

  /* Shadows */
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 16px -2px rgba(0, 0, 0, 0.5), 0 2px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 28px -4px rgba(0, 0, 0, 0.6), 0 4px 12px -4px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.7), 0 8px 24px -6px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 40px -10px rgba(124, 58, 237, 0.35), 0 0 25px -5px rgba(6, 182, 212, 0.2);

  /* Gradient Text & Banners for Dark Mode */
  --grad-text: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 35%, #38BDF8 75%, #34D399 100%);
  --grad-primary: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --promo-bg: radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.3) 0%, rgba(19, 23, 38, 0.95) 60%);
  --promo-border: rgba(124, 58, 237, 0.45);
  --promo-text-color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   2. Global Reset & Body
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

/* Dynamic Ambient Glow */
body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--primary-glow) 0%, var(--accent-cyan-glow) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

body::after {
  content: '';
  position: fixed;
  bottom: 10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-cyan-glow) 0%, var(--primary-glow) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

/* --------------------------------------------------------------------------
   2.1 Bootstrap Utility Dynamic Overrides
   -------------------------------------------------------------------------- */
.bg-white {
  background-color: var(--bg-card) !important;
  color: var(--text-main) !important;
}

.bg-light {
  background-color: var(--bg-alt) !important;
  color: var(--text-main) !important;
}

.bg-surface {
  background-color: var(--bg-surface) !important;
}

.bg-alt-section {
  background-color: var(--bg-alt);
}

.border {
  border-color: var(--border-card) !important;
}

.border-top {
  border-top-color: var(--border-light) !important;
}

.border-bottom {
  border-bottom-color: var(--border-light) !important;
}

.border-start {
  border-start-color: var(--border-light) !important;
}

.border-end {
  border-end-color: var(--border-light) !important;
}

.text-dark {
  color: var(--text-main) !important;
}

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

.text-secondary {
  color: var(--text-subtle) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.card-header, .card-footer {
  background-color: var(--bg-subtle);
  border-color: var(--border-light);
}

.table {
  color: var(--text-muted);
  border-color: var(--border-light);
}

.table > :not(caption) > * > * {
  background-color: transparent;
  border-bottom-color: var(--border-light);
  color: var(--text-muted);
}

.table-light {
  background-color: var(--bg-subtle) !important;
  color: var(--text-main) !important;
}

.modal {
  z-index: 1055 !important;
}

.modal-backdrop {
  z-index: 1050 !important;
}

.modal-content {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  box-shadow: var(--shadow-xl);
}

.modal-header, .modal-footer {
  border-color: var(--border-light);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 2rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal .btn-close {
  position: relative;
  z-index: 1056;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.modal .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

html[data-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background-color: var(--bg-card);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 750;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-subtle);
  color: var(--primary);
  box-shadow: none;
}

html[data-theme="dark"] .accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: var(--text-muted);
  background-color: var(--bg-card);
}

/* --------------------------------------------------------------------------
   3. Typography & Gradient Highlights
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.4rem, 4.8vw, 4.1rem); font-weight: 850; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 750; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.12rem; font-weight: 700; }
h6 { font-size: 0.98rem; font-weight: 700; }

p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--primary);
}

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

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #D97706 0%, #B45309 50%, #78350F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation + Theme Toggle
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  height: var(--header-height);
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: var(--bg-header-scrolled);
  box-shadow: var(--shadow-md);
  height: 72px;
  border-bottom-color: var(--border-card);
}

.navbar {
  height: 100%;
  padding: 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--text-main) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.03em;
}

.brand-logo-img {
  height: 42px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 46px;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-primary);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.brand-icon::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 650;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  color: var(--nav-link-color) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--nav-link-active) !important;
  background: var(--bg-subtle);
}

.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dropdown-item {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.dropdown-item i {
  font-size: 1.05rem;
  color: var(--accent-cyan);
}

.dropdown-item:hover, .dropdown-item.active {
  background: var(--bg-subtle);
  color: var(--primary);
}

.dropdown-divider {
  border-top-color: var(--border-light);
}

/* Theme Toggle Button Switch */
.theme-toggle-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  color: var(--text-main);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.theme-toggle-btn:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.theme-icon-dark, .theme-icon-light {
  font-size: 1rem;
  transition: transform var(--transition-spring);
}

/* Theme Icon Visibility Switch */
html[data-theme="light"] .theme-icon-light { display: none; }
html[data-theme="light"] .theme-icon-dark { display: inline-block; color: #6D28D9; }

html[data-theme="dark"] .theme-icon-dark { display: none; }
html[data-theme="dark"] .theme-icon-light { display: inline-block; color: #F59E0B; }

/* Navigation CTA Pill */
.nav-btn-cta {
  background: var(--grad-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.nav-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   5. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn-primary-custom {
  background: var(--grad-primary);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #FFFFFF !important;
}

.btn-secondary-custom {
  background: var(--bg-card);
  color: var(--text-main) !important;
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary) !important;
}

.btn-pill {
  border-radius: var(--radius-pill) !important;
}

.btn-sm {
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
}

.badge-tag {
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.badge-tag-primary {
  background: var(--bg-subtle);
  color: var(--primary);
  border: 1px solid var(--border-hover);
}

.badge-tag-cyan {
  background: var(--bg-subtle);
  color: var(--accent-cyan);
  border: 1px solid var(--border-glow);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* --------------------------------------------------------------------------
   6. Hero Agency Section
   -------------------------------------------------------------------------- */
.main-wrapper {
  padding-top: var(--header-height);
  position: relative;
  z-index: 1;
}

.hero-agency {
  padding: 90px 0 110px;
  position: relative;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-badge-floating {
  position: absolute;
  z-index: 2;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: -20px;
  right: -15px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -15px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   7. Brand Trust Strip
   -------------------------------------------------------------------------- */
.brand-strip-container {
  padding: 32px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brand-marquee-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
  margin-bottom: 18px;
}

.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 50px;
}

.brand-logo-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  opacity: 0.75;
}

.brand-logo-item:hover {
  color: var(--text-main);
  opacity: 1;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   8. Section Layouts & Headers
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 55px;
}

.sub-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 10px;
}

.main-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   9. Service Cards & Bento
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--grad-primary);
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.08);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

.service-card-link {
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.92rem;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.service-card-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   10. Feature & Advantage Items
   -------------------------------------------------------------------------- */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: var(--bg-subtle);
}

.feature-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-item h5 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-main);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. Portfolio Filter Bar & Cards Showcase
   -------------------------------------------------------------------------- */
.portfolio-filter-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  max-width: 980px;
  margin: 0 auto 45px;
  position: relative;
  z-index: 2;
}

.portfolio-filter-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  outline: none;
  user-select: none;
}

.portfolio-filter-btn:hover {
  color: var(--text-main);
  background: var(--bg-subtle);
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.portfolio-filter-btn.active {
  background: var(--grad-primary) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px var(--primary-glow) !important;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .portfolio-filter-container {
    border-radius: var(--radius-lg);
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 14px;
    -webkit-overflow-scrolling: touch;
  }
  .portfolio-filter-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
    flex-shrink: 0;
  }
}

.portfolio-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-item-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.portfolio-thumb svg, .portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.portfolio-item-card:hover .portfolio-thumb svg,
.portfolio-item-card:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.portfolio-overlay .zoom-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0c0e18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transform: scale(0.8);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item-card:hover .portfolio-overlay .zoom-indicator {
  transform: scale(1);
}

.portfolio-info {
  padding: 24px;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   Lightbox Modal (Image Alone Viewer + Gallery Navigation)
   -------------------------------------------------------------------------- */
.lightbox-modal {
  z-index: 1065 !important;
}

.lightbox-modal .modal-dialog {
  max-width: 95vw;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 2rem);
}

.lightbox-modal .modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.lightbox-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 84vh;
  margin: 0 auto;
  user-select: none;
}

.lightbox-img-wrapper img {
  max-height: 84vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 20, 32, 0.65);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1075;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  user-select: none;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.lightbox-close-btn {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
}

.lightbox-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.6rem;
}

.lightbox-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
  left: 24px;
}

.lightbox-next-btn {
  right: 24px;
}

.lightbox-meta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1075;
}

.lightbox-counter-badge {
  display: inline-block;
  background: rgba(15, 20, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .lightbox-prev-btn {
    left: 10px;
  }
  .lightbox-next-btn {
    right: 10px;
  }
  .lightbox-meta {
    bottom: 16px;
  }
  .lightbox-img-wrapper img {
    max-height: 76vh;
    max-width: 94vw;
  }
}

.portfolio-category, .portfolio-cat {
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.portfolio-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   12. Website Spotlight Card & Promo Bento Banner
   -------------------------------------------------------------------------- */
.website-spotlight-card {
  background: var(--promo-bg);
  border: 1.5px solid var(--promo-border);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.website-spotlight-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.website-spotlight-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.website-promo-banner {
  background: var(--promo-bg);
  border: 1.5px solid var(--promo-border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: var(--shadow-xl);
  color: var(--promo-text-color);
  position: relative;
  overflow: hidden;
}

.website-promo-banner h2 {
  color: var(--text-main) !important;
}

.website-promo-banner p {
  color: var(--text-muted) !important;
}

/* --------------------------------------------------------------------------
   13. Pricing Matrices
   -------------------------------------------------------------------------- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-smooth);
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 20px;
  text-align: center;
}

.package-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 8px;
}

.package-delivery-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(124, 58, 237, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.package-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 11px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pricing-features-list li i {
  color: var(--accent-emerald);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features-list li strong {
  color: var(--text-main);
}

@media print {
  body * {
    visibility: hidden !important;
  }
  #printableReceiptArea, #printableReceiptArea * {
    visibility: visible !important;
  }
  #printableReceiptArea {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    background: #FFFFFF !important;
    color: #000000 !important;
  }
  .d-print-none, .modal-backdrop, .site-header, .site-footer {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   14. INTERACTIVE WEBSITE CALCULATOR & REQUIREMENT BUILDER ENGINE
   -------------------------------------------------------------------------- */
.calculator-app-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.calc-stepper-nav {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  gap: 12px;
}

.calc-step-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.84rem;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  user-select: none;
}

.calc-step-tab .step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  transition: all var(--transition-fast);
}

.calc-step-tab.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.calc-step-tab.active .step-num {
  background: #FFFFFF;
  color: var(--primary);
}

.calc-step-tab.completed {
  border-color: var(--accent-emerald);
  color: var(--text-main);
}

.calc-step-tab.completed .step-num {
  background: var(--accent-emerald);
  color: #FFFFFF;
}

.calc-progress-container {
  padding: 16px 36px 0;
  background: var(--bg-card);
}

.calc-progress-bar-wrap {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-subtle);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.calc-progress-bar-fill {
  height: 100%;
  background: var(--grad-primary);
  transition: width 0.4s ease;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.calc-wizard-body {
  padding: 36px 36px 24px;
  min-height: 440px;
}

.calc-step-pane {
  display: none;
}

.calc-step-pane.active {
  display: block;
  animation: fadeInCalcStep 0.35s ease;
}

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

.calc-pane-heading {
  margin-bottom: 26px;
}

.calc-pane-title {
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 6px;
}

.calc-pane-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Option Cards (Radio & Checkbox) */
.calc-selectable-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: all var(--transition-fast);
  position: relative;
  user-select: none;
}

.calc-selectable-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.calc-selectable-card.selected {
  border-color: var(--primary);
  background: var(--bg-subtle);
  box-shadow: var(--shadow-md), 0 0 0 2px var(--primary-glow);
}

.calc-card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.calc-selectable-card.selected .calc-card-icon-box {
  background: var(--grad-primary);
  color: #FFFFFF;
  border-color: transparent;
}

.calc-card-content h5 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.calc-card-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.calc-check-bubble {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: transparent;
  transition: all var(--transition-fast);
}

.calc-selectable-card.selected .calc-check-bubble {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

/* Feature Badge Pill Cards (Multi-select) */
.calc-feature-pill {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.94rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
  user-select: none;
  position: relative;
}

.calc-feature-pill:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.calc-feature-pill.selected {
  border-color: var(--primary);
  background: var(--bg-subtle);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.calc-feature-pill i {
  font-size: 1.25rem;
  color: var(--accent-cyan);
}

.calc-feature-pill.selected i {
  color: var(--primary);
}

/* Step 7 Live Scope Blueprint Card */
.blueprint-summary-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.blueprint-meta-item {
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.blueprint-meta-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 2px;
}

.blueprint-meta-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
}

.calc-wizard-footer {
  padding: 22px 36px 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   15. Forms & Inputs
   -------------------------------------------------------------------------- */
.form-control, .form-select {
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-size: 0.98rem;
  color: var(--text-main);
  background-color: var(--bg-card);
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
  background-color: var(--bg-card);
  color: var(--text-main);
}

.form-control::placeholder {
  color: var(--text-subtle);
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 750;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   16. Breadcrumbs & Page Heroes
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  padding: 75px 0 60px;
}

.breadcrumb-custom {
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
}

.breadcrumb-custom a {
  color: var(--text-muted);
}

.breadcrumb-custom a:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   17. Site Footer (Permanently Dark Studio Signature)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #080A0F !important;
  color: #94A3B8 !important;
  padding: 85px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
  z-index: 1;
}

.site-footer .brand-icon {
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer h5 {
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: #FFFFFF !important;
}

.site-footer p {
  color: #94A3B8 !important;
}

.site-footer span {
  color: #94A3B8;
}

.site-footer .text-white {
  color: #FFFFFF !important;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site-footer .footer-links a {
  color: #94A3B8 !important;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.site-footer .footer-links a:hover {
  color: #38BDF8 !important;
  padding-left: 6px;
}

.site-footer .footer-contact-item {
  color: #94A3B8 !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.site-footer .footer-contact-item i {
  color: #38BDF8 !important;
  margin-top: 4px;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 60px;
  padding-top: 26px;
  font-size: 0.88rem;
  color: #64748B !important;
}

.site-footer .footer-bottom a {
  color: #94A3B8 !important;
}

.site-footer .footer-bottom a:hover {
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   18. Back to Top Button
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 1030;
}

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

.back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-hover);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   19. Responsive Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .site-header {
    height: auto;
    padding: 14px 0;
  }
  .navbar-collapse {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 14px;
    box-shadow: var(--shadow-xl);
  }
  .hero-agency {
    padding: 60px 0 80px;
  }
  .section-padding {
    padding: 70px 0;
  }
  .calc-wizard-body, .calc-wizard-footer, .calc-stepper-nav {
    padding: 24px 18px;
  }
  .calc-progress-container {
    padding: 12px 18px 0;
  }
  .website-promo-banner {
    padding: 40px 24px;
  }
}
