/* ==========================================
   DAVININA DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */

:root {
  /* Font Families */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Outfit', var(--sans);

  /* Animation Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  /* Transitions */
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.45s var(--ease-out);
  --transition-slow: 0.75s var(--ease-out);

  /* Light Theme variables (Default) */
  --bg-canvas: #FAF9F6;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F3EFE9;
  --bg-surface-glass: rgba(250, 249, 246, 0.85);
  
  --text-primary: #121620;
  --text-secondary: #485060;
  --text-muted: #7A8496;
  
  --gold: #B48F37;
  --gold-light: #D5B468;
  --gold-dim: #7A6024;
  --gold-glow: rgba(180, 143, 55, 0.08);
  --gold-glow-hover: rgba(180, 143, 55, 0.18);
  
  --border-color: rgba(180, 143, 55, 0.14);
  --border-color-hover: rgba(180, 143, 55, 0.35);
  
  --shadow: 0 10px 40px -10px rgba(18, 22, 32, 0.05), 0 1px 3px rgba(18, 22, 32, 0.02);
  --shadow-lg: 0 20px 80px -15px rgba(18, 22, 32, 0.08);

  --scroll-bar: #EAE8E2;
  --scroll-thumb: #C2BDAF;
}

/* Dark Theme Overrides */
[data-theme="dark"] {
  --bg-canvas: #09090B;
  --bg-surface: #121215;
  --bg-surface-alt: #19191E;
  --bg-surface-glass: rgba(9, 9, 11, 0.85);
  
  --text-primary: #F3F1EC;
  --text-secondary: #9E9EAF;
  --text-muted: #5D5D68;
  
  --gold: #D7B563;
  --gold-light: #F4DA96;
  --gold-dim: #947530;
  --gold-glow: rgba(215, 181, 99, 0.06);
  --gold-glow-hover: rgba(215, 181, 99, 0.16);
  
  --border-color: rgba(215, 181, 99, 0.12);
  --border-color-hover: rgba(215, 181, 99, 0.32);
  
  --shadow: 0 10px 45px -10px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 85px -15px rgba(0, 0, 0, 0.75);

  --scroll-bar: #1A1A1F;
  --scroll-thumb: #3A3A42;
}

/* ==========================================
   BASE & STRUCTURE SETUP
   ========================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: -webkit-fill-available;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Custom cursors */
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), opacity 0.2s;
  display: none;
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s, border-color 0.3s;
  display: none;
}
@media (min-width: 1025px) {
  body { cursor: none; }
  #cursor, #cursor-ring { display: block; }
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring,
body:has(.interactive-target:hover) #cursor-ring {
  width: 50px;
  height: 50px;
  border-color: var(--gold-light);
  background-color: var(--gold-glow);
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--scroll-bar);
}
::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb);
  border-radius: 4px;
}

/* Selection Highlight */
::selection {
  background-color: var(--gold);
  color: #FFFFFF;
}

/* Utility Containers */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography elements */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.badge-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-title span {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
}
.btn-primary {
  background-color: var(--gold);
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 143, 55, 0.25);
}
.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}
.btn-outline:hover {
  background-color: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER NAVIGATION BAR
   ========================================== */

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: padding 0.4s var(--ease-out), background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header-nav.scrolled {
  padding: 0.9rem 0;
  background-color: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  border-color: var(--border-color);
  box-shadow: var(--shadow);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-menu {
  display: none;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
@media (min-width: 992px) {
  .nav-menu { display: flex; }
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition-normal);
}
.nav-link:hover::after { width: 100%; }

/* Desktop Submenu Styling */
.has-submenu {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.submenu-chevron {
  transition: transform var(--transition-fast);
}
.has-submenu:hover .submenu-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}
.submenu-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: var(--bg-surface-alt);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: var(--shadow-lg), 0 10px 30px -10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  z-index: 1000;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
}
.submenu-container::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--bg-surface-alt);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}
.has-submenu:hover .submenu-container {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.submenu-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border-radius: 4px;
}
.submenu-link:hover {
  background: var(--bg-surface);
  color: var(--gold);
}
.submenu-icon {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
}
.submenu-link:hover .submenu-icon {
  color: var(--gold);
}
.submenu-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}
.submenu-title {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.submenu-link:hover .submenu-title {
  color: var(--gold);
}
.submenu-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Mobile Submenu Styling */
.mobile-has-submenu {
  width: 100%;
  text-align: center;
}
.mobile-submenu-toggle-btn {
  background: none;
  border: none;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.5rem 0;
  margin: 0 auto;
  width: 100%;
}
.mobile-submenu-toggle-btn:hover {
  color: var(--gold);
}
.mobile-chevron {
  transition: transform 0.3s;
}
.mobile-submenu-toggle-btn[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  background: var(--bg-surface-alt);
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.mobile-submenu.open {
  display: flex;
}
.mobile-submenu .mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 600;
}


.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.lang-selector {
  position: relative;
  display: inline-block;
}
.lang-selected-btn {
  border: 1px solid var(--border-color);
  background: none;
  color: var(--text-primary);
  height: 40px;
  padding: 0 0.85rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.lang-selected-btn:hover {
  border-color: var(--gold);
  background-color: var(--gold-glow);
  color: var(--gold);
}
.lang-chevron {
  transition: transform var(--transition-fast);
}
.lang-selector.active .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-surface-alt);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: var(--shadow-lg), 0 10px 30px -10px rgba(0,0,0,0.25);
  margin-top: 0.5rem;
  padding: 0.3rem 0;
  min-width: 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.lang-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-opt {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-opt:hover {
  background-color: var(--bg-surface);
  color: var(--gold);
}

.theme-toggle-btn {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.theme-toggle-btn:hover {
  border-color: var(--gold);
  background-color: var(--gold-glow);
  color: var(--gold);
}
.theme-toggle-btn .sun-icon { display: none; }
.theme-toggle-btn .moon-icon { display: block; }
[data-theme="dark"] .theme-toggle-btn .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle-btn .moon-icon { display: none; }

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  background-color: var(--bg-canvas);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.mobile-nav-link {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ==========================================
   HOMEPAGE SPECIFIC LAYOUTS
   ========================================== */

#hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-glow-bg {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: center;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
}
.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 10;
}
.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.hero-tagline {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1.5px solid var(--text-muted);
  border-radius: 9px;
  position: relative;
}
.scroll-wheel {
  width: 3px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 1.5px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.6s ease-in-out infinite;
}
@keyframes wheelScroll {
  0% { transform: translate(-50%, 0); opacity: 0; }
  25% { opacity: 1; }
  75% { transform: translate(-50%, 7px); opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================
   SERVICES PILLARS SECTION (HOMEPAGE CARD FACES)
   ========================================== */

#services-home {
  padding: 8rem 0;
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.services-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .services-home-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-pillar-home-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 3.5rem 2.5rem;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.service-pillar-home-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-lg);
}

.home-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.home-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--gold-glow);
  border: 1px solid var(--border-color);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-card-num {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.service-pillar-home-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}
.service-pillar-home-card .card-pillar-intro {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.home-card-subservices {
  border-top: 1px dashed var(--border-color);
  padding-top: 1.5rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.home-card-subservices h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.subservices-list-preview {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.subservices-list-preview li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.subservices-list-preview li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.home-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  align-self: flex-start;
  transition: color var(--transition-fast);
}
.home-pillar-link svg {
  transition: transform var(--transition-normal);
}
.service-pillar-home-card:hover .home-pillar-link {
  color: var(--gold-light);
}
.service-pillar-home-card:hover .home-pillar-link svg {
  transform: translateX(6px);
}

/* ==========================================
   SUB-PAGES (SEPARATE DEDICATED SECTIONS)
   ========================================== */

.sub-hero-section {
  padding: 10rem 0 5rem;
  background-color: var(--bg-surface-alt);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .sub-hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.sub-hero-visual {
  border-radius: 4px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}
.sub-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-hero-info h1 {
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sub-hero-info h1 span {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.sub-hero-info p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sub-services-detail-section {
  padding: 8rem 0;
}
.detail-grid-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.detail-grid-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-color);
}

.subpage-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .subpage-services-grid { grid-template-columns: repeat(2, 1fr); }
}

.subpage-service-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.subpage-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.subpage-card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.subpage-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.subpage-service-card:hover .subpage-card-img-wrapper img {
  transform: scale(1.05);
}
.subpage-card-content {
  padding: 2.25rem 2rem;
}
.subpage-service-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.subpage-service-card h3 svg {
  color: var(--gold);
  flex-shrink: 0;
}
.subpage-service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================
   ABOUT NARRATIVE & METRICS (HOMEPAGE)
   ========================================== */

#about-home {
  padding: 8rem 0;
}
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about-home-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.about-home-text p {
  font-size: 1.025rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.about-home-metrics {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.metric-item-home .metric-val-home {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.metric-item-home .metric-lbl-home {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.about-home-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-home-card {
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  padding: 2.25rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.about-home-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.about-home-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-home-card h3 svg {
  color: var(--gold);
}
.about-home-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ==========================================
   VALUES & FOUNDATION SECTION
   ========================================== */

#values-home {
  padding: 8rem 0;
  background-color: var(--bg-canvas);
}
.values-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .values-home-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .values-home-grid { grid-template-columns: repeat(4, 1fr); }
}
.value-home-card {
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  padding: 2.25rem 2rem;
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.value-home-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.value-home-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color-hover);
}
.value-home-card:hover::after {
  transform: scaleX(1);
}
.value-home-card .value-icon-home {
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-flex;
}
.value-home-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.value-home-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================
   WHY CHOOSE US (HOMEPAGE SECTION)
   ========================================== */

#why-home {
  padding: 8rem 0;
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.why-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .why-home-grid { grid-template-columns: 1.1fr 0.9fr; gap: 6rem; }
}
.why-home-features {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.why-feature-home-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}
.why-feature-home-card .feat-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.7;
}
.why-feature-home-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.why-feature-home-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.why-home-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-svg-element {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 400px;
  pointer-events: none;
}
.orbit-svg-element circle {
  fill: none;
  stroke: var(--border-color);
  stroke-dasharray: 4 6;
}
.orbit-home-center {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow);
  z-index: 5;
  position: relative;
}
.orbit-node-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

/* ==========================================
   DELIVERY PROCESS METHODOLOGY
   ========================================== */

#timeline-home {
  padding: 8rem 0;
}
.process-home-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-home-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .process-home-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
  }
}
.process-step-home-node {
  text-align: center;
  position: relative;
  z-index: 5;
}
.process-step-home-node .step-num-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.4s var(--ease-out);
}
.process-step-home-node:hover .step-num-circle {
  border-color: var(--gold);
  background-color: var(--gold-glow);
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--gold-glow-hover);
}
.process-step-home-node h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.process-step-home-node p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

#testimonials-home {
  padding: 8rem 0;
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.testimonials-home-carousel {
  position: relative;
  width: 100%;
}
.testimonials-home-track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding: 1.5rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-home-track::-webkit-scrollbar {
  display: none;
}
.testimonial-home-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow);
  transition: border-color 0.3s;
}
@media (min-width: 768px) {
  .testimonial-home-card { flex: 0 0 calc(50% - 0.875rem); }
}
@media (min-width: 1200px) {
  .testimonial-home-card { flex: 0 0 calc(33.333% - 1.17rem); }
}
.testimonial-home-card:hover {
  border-color: var(--gold);
}
.testimonial-quote-symbol {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
  margin-bottom: 0.25rem;
}
.testimonial-home-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}
.testimonial-home-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--gold-glow);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-meta h5 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.author-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.carousel-btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.carousel-nav-btn {
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.carousel-nav-btn:hover {
  border-color: var(--gold);
  background-color: var(--gold-glow);
  color: var(--gold);
}

/* ==========================================
   CONTACT FORMS & SECTIONS
   ========================================== */

#contact-home {
  padding: 8rem 0;
}
.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media (min-width: 992px) {
  .contact-home-grid { grid-template-columns: 0.9fr 1.1fr; gap: 6rem; }
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact-detail-home-card {
  display: flex;
  gap: 1.25rem;
}
.contact-detail-home-card .detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}
.contact-detail-home-card:hover .detail-icon {
  border-color: var(--gold);
  background-color: var(--gold-glow);
}
.contact-detail-home-card h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-detail-home-card a, .contact-detail-home-card span {
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color 0.3s;
}
.contact-detail-home-card a:hover {
  color: var(--gold);
}

.contact-form-panel {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3.5rem 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 576px) {
  .form-group-row { grid-template-columns: 1fr 1fr; }
}
.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-field-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.95rem 1.15rem;
  border-radius: 4px;
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B48F37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 1rem;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  background-color: var(--bg-surface);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
}
.form-feedback-box {
  display: none;
  padding: 1.25rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.form-feedback-box.success {
  display: block;
  background-color: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--gold);
  animation: slideUpFade 0.4s var(--ease-out) forwards;
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */

footer {
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 576px) {
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .footer-top-grid { grid-template-columns: 2fr repeat(3, 1fr); gap: 2rem; }
}
.footer-brand-column {
  max-width: 320px;
}
.footer-logo-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand-column p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.footer-brand-motto {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  margin-top: 1rem;
}
.footer-column h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-link-item a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer-link-item a:hover {
  color: var(--text-primary);
}
.footer-bottom-row {
  border-top: 1px solid var(--border-color);
  padding-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-bottom-row { flex-direction: row; }
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-tagline-motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 1024px) {
  .header-nav { padding: 1.25rem 0; }
  .container { padding: 0 1.5rem; }
  #hero-home { padding-top: 7.5rem; }
}
@media (max-width: 768px) {
  .contact-form-panel, .sub-hero-visual { padding: 2rem 1.5rem; }
  .service-pillar-home-card { padding: 2.5rem 1.75rem; }
  .subpage-service-card { padding: 2rem 1.5rem; }
  .detail-process-timeline::before { display: none; }
  .process-home-timeline::before { display: none; }
}

/* Animation reveal utilities default states */
.gsap-reveal {
  opacity: 1;
  transform: none;
}

/* ==========================================
   FLOATING CHATBOT WIDGET STYLING
   ========================================== */

.chatbot-launcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  box-shadow: 0 4px 20px rgba(180, 143, 55, 0.4);
  transition: transform 0.3s var(--ease-out), background-color var(--transition-fast);
}
.chatbot-launcher:hover {
  transform: scale(1.08);
  background-color: var(--gold-light);
}
.chatbot-launcher-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #EF4444;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg-canvas);
}

.chatbot-panel {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 380px;
  max-width: calc(100vw - 4rem);
  height: 540px;
  max-height: calc(100vh - 8rem);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background-color var(--transition-normal);
}
.chatbot-panel.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.chatbot-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-bot-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  background-color: var(--gold-glow);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
}
.chatbot-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  border: 1.5px solid var(--bg-surface);
}
.chatbot-title h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.chatbot-title span {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.chatbot-close-btn {
  color: var(--text-primary);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}
.chatbot-close-btn:hover {
  opacity: 1;
  color: var(--gold);
}

.chatbot-body {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--bg-canvas);
  transition: background-color var(--transition-normal);
}

.chat-message {
  max-width: 80%;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-message.bot {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}
.chat-message.user {
  background-color: var(--gold);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-options-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.chat-action-option {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-out);
  text-align: left;
}
.chat-action-option:hover {
  border-color: var(--gold);
  background-color: var(--gold-glow);
  color: var(--gold);
  transform: translateY(-1px);
}
.chat-action-option svg {
  color: var(--gold);
  flex-shrink: 0;
}

.chatbot-input-bar {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.75rem;
  background-color: var(--bg-surface);
  transition: background-color var(--transition-normal);
}
.chatbot-input-bar input {
  flex-grow: 1;
  background-color: var(--bg-canvas);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s;
}
.chatbot-input-bar input:focus {
  border-color: var(--gold);
  background-color: var(--bg-surface);
}
.chatbot-send-btn {
  background-color: var(--gold-glow);
  border: 1px solid var(--border-color);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.chatbot-send-btn:hover {
  background-color: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* Mini Scheduler Inside Chatbot */
.chat-scheduler-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}
.chat-scheduler-container h5 {
  font-size: 0.85rem;
  color: var(--text-primary);
}
.chat-scheduler-container input[type="date"] {
  background-color: var(--bg-canvas);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.5rem;
  font-size: 0.8rem;
  border-radius: 4px;
  outline: none;
}
.chat-scheduler-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.chat-time-slot {
  font-size: 0.75rem;
  padding: 0.4rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.chat-time-slot.selected {
  background-color: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-chat-schedule-submit {
  background-color: var(--gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.2s;
}
.btn-chat-schedule-submit:hover {
  background-color: var(--gold-light);
}

/* ==========================================
   TABBED CONTACT FORM STYLING
   ========================================== */

.form-tabs-header {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}
.form-tab-btn {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.25rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.form-tab-btn:hover {
  color: var(--text-primary);
}
.form-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.form-tab-content {
  display: block;
}
.form-tab-content.hidden {
  display: none;
}

/* Interactive Meeting Scheduler slots */
.scheduler-type-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.scheduler-type-label {
  flex: 1;
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface-alt);
  padding: 0.95rem;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.scheduler-type-label input[type="radio"] {
  display: none;
}
.scheduler-type-label:has(input:checked) {
  background-color: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

.scheduler-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .scheduler-slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.time-slot-label {
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface-alt);
  padding: 0.85rem 0.5rem;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.time-slot-label input[type="radio"] {
  display: none;
}
.time-slot-label:has(input:checked) {
  background-color: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================
   HERO PARALLAX IMAGE GRID STYLING
   ========================================== */
.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hero-parallax-grid {
  position: relative;
  height: 480px;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .hero-parallax-grid {
    display: block;
  }
}
.parallax-img-wrapper {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-surface);
  transition: border-color 0.3s;
}
.parallax-img-wrapper:hover {
  border-color: var(--gold);
}
.parallax-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wrapper-1 {
  top: 0;
  left: 10%;
  width: 55%;
  height: 280px;
  z-index: 3;
}
.wrapper-2 {
  top: 180px;
  right: 5%;
  width: 50%;
  height: 240px;
  z-index: 2;
}
.wrapper-3 {
  top: 80px;
  left: -5%;
  width: 40%;
  height: 180px;
  z-index: 1;
}

/* ==========================================
   COVER-IMAGE SERVICE CARD STYLING
   ========================================== */
.service-pillar-home-card.has-img-bg {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 460px;
}
.card-image-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.service-pillar-home-card.has-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(18, 22, 32, 0.4) 0%, rgba(18, 22, 32, 0.9) 80%);
  transition: opacity 0.5s;
}
.service-pillar-home-card.has-img-bg:hover .card-image-bg {
  transform: scale(1.08);
}
.service-pillar-home-card.has-img-bg:hover::after {
  background: linear-gradient(to bottom, rgba(18, 22, 32, 0.55) 0%, rgba(18, 22, 32, 0.95) 90%);
}
.card-content-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}
.card-content-overlay h3 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.card-content-overlay .home-card-num {
  color: var(--gold-light);
}
.card-content-overlay .card-pillar-intro {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.card-slide-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s var(--ease-out), opacity 0.5s var(--ease-out);
}
.service-pillar-home-card.has-img-bg:hover .card-slide-details {
  max-height: 350px;
  opacity: 1;
}
.card-slide-details .home-card-subservices {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}
.card-slide-details .subservices-list-preview li {
  color: rgba(255, 255, 255, 0.85);
}
.card-slide-details .subservices-list-preview li svg {
  color: var(--gold-light);
}
.card-content-overlay .home-pillar-link {
  color: var(--gold-light);
}

/* ==========================================
   ABOUT ASYMMETRICAL COLLAGE STYLING
   ========================================== */
.about-image-collage {
  position: relative;
  width: 100%;
  height: 420px;
  display: none;
}
@media (min-width: 768px) {
  .about-image-collage {
    display: block;
  }
}
.collage-img-item {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}
.collage-img-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 320px;
  z-index: 2;
}
.collage-img-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  z-index: 3;
  border-color: var(--gold-light);
}
.collage-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   SECTORS SHOWCASE GALLERY STYLING
   ========================================== */
.showcase-gallery-section {
  padding: 8rem 0;
  background-color: var(--bg-canvas);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover .gallery-item-img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 22, 32, 0.2) 0%, rgba(18, 22, 32, 0.85) 90%);
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.gallery-overlay h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  font-family: var(--display);
}
.gallery-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.4;
}
.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
  z-index: 3;
}

/* ==========================================
   PARTNER MARQUEE STYLING
   ========================================== */
.partner-marquee-section {
  padding: 3rem 0;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.partner-marquee-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-viewport {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.marquee-viewport::before, .marquee-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface), transparent);
}
.marquee-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface), transparent);
}
.marquee-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marqueeSlide 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.partner-logo-item {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--display);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.3s;
  cursor: pointer;
}
.partner-logo-item:hover {
  color: var(--gold);
}
@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   FAQ ACCORDION STYLING
   ========================================== */
.faq-section {
  padding: 8rem 0;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  border-color: var(--gold);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question-text {
  font-family: var(--display);
}
.faq-icon-indicator {
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.active .faq-icon-indicator {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 2rem 1.75rem;
  font-size: 0.9rem;
  line-height: 1.625;
  color: var(--text-secondary);
}

/* ==========================================
   LEAFLET MAP WRAPPER STYLING
   ========================================== */
.map-container {
  width: 100%;
  height: 280px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
  box-shadow: var(--shadow);
  z-index: 10;
  background-color: var(--bg-surface-alt);
}
.leaflet-bar {
  border-color: var(--border-color) !important;
  box-shadow: none !important;
}
.leaflet-bar a {
  background-color: var(--bg-surface) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-color) !important;
  transition: background-color 0.2s;
}
.leaflet-bar a:hover {
  background-color: var(--bg-surface-alt) !important;
  color: var(--gold) !important;
}

/* ==========================================
   FOOTER NEWSLETTER SIGNUP STYLING
   ========================================== */
.footer-newsletter-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 320px;
}
.newsletter-field-group {
  display: flex;
  gap: 0.5rem;
}
.newsletter-input {
  flex-grow: 1;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.65rem 0.95rem;
  border-radius: 4px;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s;
}
.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-glow);
}
.newsletter-submit-btn {
  background-color: var(--gold);
  color: white;
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.newsletter-submit-btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(180, 143, 55, 0.2);
}
.newsletter-feedback {
  font-size: 0.72rem;
  line-height: 1.4;
  min-height: 1rem;
}
.newsletter-feedback.success {
  color: var(--gold);
}
.newsletter-feedback.error {
  color: #EF4444;
}

/* ==========================================
   SPAM-PROTECTION CHECKBOX STYLING
   ========================================== */
.form-checkbox-group {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: left;
}
.form-checkbox-group input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  margin-top: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox-label {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

/* ==========================================
   3D TILT SMOOTHNESS DEFINITION
   ========================================== */
.service-pillar-home-card, .parallax-img-wrapper {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease-out, border-color 0.3s;
  transform-style: preserve-3d;
}

/* ==========================================
   DELIVERY METHODOLOGY SECTION
   ========================================== */
.methodology-section {
  padding: 8rem 0;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}
.methodology-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.5rem;
}
.methodology-tabs::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: var(--border-color);
  z-index: 1;
}
.methodology-progress-line {
  position: absolute;
  top: 25px;
  left: 10%;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  z-index: 2;
  transition: width 0.4s ease;
}
.methodology-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
  width: 100px;
  flex-shrink: 0;
}
.methodology-tab-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.methodology-tab-btn:hover .methodology-tab-num {
  border-color: var(--gold);
  color: var(--gold);
}
.methodology-tab-btn.active .methodology-tab-num {
  background-color: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 0 15px var(--gold-glow);
}
.methodology-tab-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.3s;
  white-space: nowrap;
}
.methodology-tab-btn.active .methodology-tab-lbl {
  color: var(--gold);
}

.methodology-content-container {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 280px;
}
.methodology-step-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.methodology-step-pane.active {
  display: block;
  opacity: 1;
}
.methodology-pane-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .methodology-pane-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.methodology-pane-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.methodology-pane-text p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.methodology-deliverables h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.methodology-deliverables ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 576px) {
  .methodology-deliverables ul {
    grid-template-columns: 1fr 1fr;
  }
}
.methodology-deliverables li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.methodology-deliverables li svg {
  color: var(--gold);
}
.methodology-pane-visual {
  width: 100%;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
}
.methodology-pane-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   INTERACTIVE SCOPE ESTIMATOR SECTION
   ========================================== */
.estimator-section {
  padding: 8rem 0;
  background-color: var(--bg-surface-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.estimator-container {
  max-width: 1000px;
  margin: 0 auto;
}
.estimator-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.estimator-tab-btn {
  padding: 0.85rem 1.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: pointer;
}
.estimator-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.estimator-tab-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 5px 15px rgba(180, 143, 55, 0.2);
}

.estimator-pane {
  display: none;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow);
}
.estimator-pane.active {
  display: block;
}
.estimator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 992px) {
  .estimator-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.estimator-calculator h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.estimator-calculator p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.estimator-field-group {
  margin-bottom: 2.25rem;
}
.estimator-field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Range Slider Premium Styling */
.estimator-slider-container {
  position: relative;
  padding-top: 0.5rem;
}
.estimator-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  cursor: pointer;
}
.estimator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-surface);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15), 0 0 0 3px var(--gold-glow);
  transition: transform 0.1s;
}
.estimator-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.estimator-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
}

.estimator-select-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.estimator-select-btn {
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.estimator-select-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.estimator-select-btn.active {
  background-color: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}

/* Results Panel Display */
.estimator-results {
  background-color: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.estimator-results-header {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.estimator-results-header h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.estimator-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.estimator-metric-lbl {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.estimator-metric-val {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
}
.estimator-metric-val span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.estimator-results-checklist h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.estimator-checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.estimator-checklist-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: opacity 0.3s;
}
.estimator-checklist-list li.unchecked {
  opacity: 0.4;
  text-decoration: line-through;
}
.estimator-checklist-list li svg {
  flex-shrink: 0;
}
.estimator-checklist-list li.unchecked svg {
  color: var(--text-muted) !important;
}

