/* ==========================================================================
   DHARIWAL SECURITIES - MINIMALIST PREMIUM DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Playfair+Display:wght@700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  /* Strict Black & White Color Palette */
  --bg-primary: #000000;
  --bg-secondary: #000000;
  --bg-tertiary: #0a0a0a;
  
  --text-primary: #ffffff;      /* White for headings */
  --text-secondary: #999999;    /* Light gray for body text */
  --text-muted: #555555;        /* Medium/dark gray for subtle elements */
  
  /* Borders */
  --border-color: #D4AF37;      /* Thin gold border color */
  --border-subtle: 0.5px solid var(--border-color);
  --border-active: 0.5px solid #ffffff;
  
  /* Typography */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #555555 #000000;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 600; /* Bold/strong body text by default */
  background-color: var(--bg-primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 800; /* Extra bold headings */
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

p {
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* Custom Selection */
::selection {
  background-color: #ffffff;
  color: #000000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #000000;
  border-left: 0.5px solid var(--border-color);
}
::-webkit-scrollbar-thumb {
  background: #555555;
  border-radius: 0 !important;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.py-section {
  padding-block: 6rem;
}

.divider {
  width: 100%;
  height: 0.5px;
  background-color: var(--border-color);
}

/* ==========================================================================
   TOP CONTACT BAR
   ========================================================================== */

.top-bar {
  background-color: #000000;
  color: #DFB743;
  border-top: none !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  margin: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 6px;
  line-height: 1.2;
  position: relative;
  top: 0;
  z-index: 1001;
  font-size: 0.85rem;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
  padding-top: 0;
  margin-top: 0;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #DFB743;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

.top-bar-item:hover {
  color: #ffffff;
}

.top-bar-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.75;
  vertical-align: middle;
}

.top-bar-divider {
  color: #DFB743;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.65;
  user-select: none;
}

@media (max-width: 768px) {
  .top-bar {
    padding-top: 0;
    padding-bottom: 5px;
  }
  .top-bar-container {
    gap: 0.75rem 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-bar-item {
    font-size: 0.78rem;
  }
  .top-bar-divider {
    display: none;
  }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid #D4AF37;
  padding-block: 10px;
  transition: padding-block var(--transition-smooth), background-color var(--transition-smooth);
}

.navbar.scrolled {
  padding-block: 10px;
  background-color: rgba(0, 0, 0, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand-logo {
  height: 2.65rem;
  width: 2.65rem;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.95;
}

.logo-main {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #DFB743;
  line-height: 1;
}

.logo-sub {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #DFB743;
  margin-top: 0.2rem;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding-block: 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #DFB743;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #DFB743;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #DFB743;
}

/* Outlined White Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  background-color: #000000;
  border: 1.5px solid #D4AF37;
  color: #ffffff;
  border-radius: 9999px;
}

.btn-outline {
  background-color: #000000;
  border: 1.5px solid #D4AF37;
  color: #ffffff;
  border-radius: 9999px;
}

.btn-outline:hover,
.nav-account-dropdown-wrapper:hover .btn-outline {
  background-color: #000000;
  color: #DFB743;
  border-color: #DFB743;
  box-shadow: 0 0 14px rgba(223, 183, 67, 0.25);
}

/* ==========================================================================
   OPEN ACCOUNT NAVBAR DROPDOWN
   ========================================================================== */
.nav-account-dropdown-wrapper {
  position: relative;
  display: inline-flex;
}

.nav-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 205px;
  background-color: #0b0b0a;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.12);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

/* Invisible bridge so mouse hover never drops between button and dropdown */
.nav-account-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-account-dropdown-wrapper:hover .nav-account-dropdown,
.nav-account-dropdown-wrapper:focus-within .nav-account-dropdown,
.nav-account-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-account-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-account-dropdown .dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.12);
  color: #DFB743;
  padding-left: 20px;
}

/* Solid White Button with Black Text */
.btn-solid-white {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 0.5px solid var(--text-primary);
}

.btn-solid-white:hover {
  background-color: transparent;
  color: var(--text-primary);
}

/* Minimal Text Link */
.text-link {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.text-link:hover {
  opacity: 0.7;
  padding-left: 0.25rem;
  border-bottom-color: var(--text-primary);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.nav-toggle-icon {
  width: 20px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-icon span {
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

.nav-toggle.active .nav-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  .nav-links-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #000000;
    border-left: var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2.5rem;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 1050;
  }

  .nav-links-wrapper.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding-block: 0.75rem;
  }

  .nav-links-wrapper .btn {
    width: 100%;
  }

  .nav-account-dropdown-wrapper {
    width: 100%;
  }

  .nav-account-dropdown {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background-color: #141414;
    border-color: rgba(212, 175, 55, 0.2);
  }
}

/* ==========================================================================
   HERO SECTION (BOLD EDITORIAL HERO)
   ========================================================================== */

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-label-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #DFB743;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.underline-gold {
  height: 1px;
  width: 40px;
  background-color: #DFB743;
}

.hero-headline {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  text-transform: none;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtext {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 320px;
  line-height: 1.6;
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.8rem 1.6rem;
  background: transparent;
  border: 0.5px solid #DFB743;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.btn-gold-outline:hover {
  background-color: #DFB743;
  color: #000000;
  border-color: #DFB743;
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-smooth);
}

.btn-gold-outline:hover .btn-arrow {
  transform: translateX(4px);
}

/* Center Column: Logo */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-logo-wrapper img {
  width: 100%;
  max-width: 440px;
  height: auto;
}

/* Right Column: Features */
.hero-features-list {
  display: flex;
  flex-direction: column;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 0.5px solid var(--border-color);
}

.hero-feature-item:first-child {
  padding-top: 0;
}

.hero-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-icon-wrapper {
  color: #DFB743;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 0.15rem;
}

.feature-icon {
  width: 100%;
  height: 100%;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.feature-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Responsive Styles for Hero */
@media (max-width: 1199px) {
  .hero-grid {
    gap: 2rem;
    grid-template-columns: 1fr 1.2fr 1fr;
  }
  .hero-logo-wrapper img {
    max-width: 360px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .hero-label-wrap {
    align-items: center;
  }
  
  .hero-subtext {
    max-width: 100%;
  }
  
  .hero-logo-wrapper {
    order: -1;
  }
  
  .hero-logo-wrapper img {
    max-width: 300px;
  }
  
  .hero-features-list {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ==========================================================================
   STATS STRIP (4-COLUMN STATS ROW)
   ========================================================================== */

.stats-section {
  position: relative;
  z-index: 10;
  width: 100%;
  clear: both;
  border-block: var(--border-subtle);
  background-color: var(--bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.stat-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: left;
  padding-block: 2.5rem;
}

.stat-column:not(:last-child) {
  border-right: var(--border-subtle);
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: #DFB743;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-column:nth-child(even) {
    border-right: none;
  }
  
  .stat-column:nth-child(1),
  .stat-column:nth-child(2) {
    border-bottom: var(--border-subtle);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-column {
    justify-content: flex-start;
    padding-left: 2.5rem;
    padding-block: 1.75rem;
  }
  
  .stat-column:not(:last-child) {
    border-right: none;
    border-bottom: var(--border-subtle);
  }
}

/* ==========================================================================
   SERVICES LIST (VERTICAL ROW-BASED LIST)
   ========================================================================== */

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

.section-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
}

.services-list {
  display: flex;
  flex-direction: column;
  border-top: var(--border-subtle);
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 2.5rem;
  border-bottom: var(--border-subtle);
  transition: padding-left var(--transition-smooth), background-color var(--transition-smooth);
}

.service-row:hover {
  padding-left: 1.25rem;
  background-color: var(--bg-tertiary);
}

.service-row-left {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
}

.service-num {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.service-info-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-name {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 600px;
}

.service-arrow {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.service-row:hover .service-arrow {
  color: var(--text-primary);
  transform: translateX(8px);
}

@media (max-width: 576px) {
  .service-row-left {
    gap: 1.5rem;
  }
}

/* ==========================================================================
   ABOUT / MISSION (MINIMAL EDITORIAL CONTENT)
   ========================================================================== */

.about-section {
  border-bottom: var(--border-subtle);
  background-color: var(--bg-primary);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.editorial-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.editorial-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.editorial-para {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   LEADERSHIP LIST (EDITORIAL ROW-BASED VIEW)
   ========================================================================== */

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

.leadership-list {
  display: flex;
  flex-direction: column;
  border-top: var(--border-subtle);
}

.leader-row {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  padding-block: 3.5rem;
  border-bottom: var(--border-subtle);
  align-items: start;
}

.leader-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leader-name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
}

.leader-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.leader-bio {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .leader-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 2.5rem;
  }
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */

.contact-section {
  border-top: var(--border-subtle);
  background-color: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.form-input {
  background-color: transparent;
  border: var(--border-subtle);
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
  border-radius: 6px;
}

.form-input:focus {
  border-color: var(--text-primary);
  background-color: var(--bg-tertiary);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.form-input.is-invalid {
  border-color: #e05656 !important;
  background-color: rgba(224, 86, 86, 0.04);
}

.form-error-msg {
  display: none;
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.form-error-msg.visible {
  display: block;
}

.form-status-box {
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all var(--transition-smooth);
}

.form-status-box.success {
  display: block !important;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid #D4AF37;
  color: #ffffff;
}

.form-status-box.error {
  display: block !important;
  background-color: rgba(224, 86, 86, 0.08);
  border: 1px solid #e05656;
  color: #ff9999;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.info-details {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 500;
}

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

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

.site-footer {
  border-top: var(--border-subtle);
  background-color: var(--bg-primary);
  padding-block: 5rem 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--text-primary);
  padding-left: 0.25rem;
}

.footer-bottom {
  border-top: var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.legal-link {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PROCESS FLOW TIMELINE
   ========================================================================== */

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 3.5rem;
  position: relative;
}

@media (min-width: 769px) {
  .process-flow::before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: var(--border-color);
    z-index: 1;
  }
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.process-step .step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  line-height: 1;
}

.process-step .step-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.process-step .step-desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    gap: 3.5rem;
    padding-left: 2rem;
    margin-top: 2rem;
  }

  .process-flow::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    width: 0.5px;
    height: 100%;
    background-color: var(--border-color);
    z-index: 1;
  }
  
  .process-step {
    align-items: flex-start;
  }
  
  .process-step .step-num {
    padding-right: 0;
    padding-inline: 0.5rem;
    background-color: var(--bg-primary);
    margin-left: -0.5rem;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   PAGE TRANSITION OVERLAY
   ========================================================================== */

.page-transition-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 99999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.page-transition-overlay.fade-out {
  opacity: 0;
}

/* ==========================================================================
   SUBTLE BACKGROUND GRAPHICS
   ========================================================================== */

.about-compass-bg,
.services-chart-bg,
.leadership-net-bg,
.why-shield-bg,
.contact-map-bg {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.05;
  transition: opacity var(--transition-smooth);
}

/* Page Header Compass styling */
.about-compass-bg {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

/* Services Wave Chart styling */
.services-chart-bg {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 550px;
  height: 350px;
}

/* Leadership Network styling */
.leadership-net-bg {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 520px;
  height: 380px;
}

/* Why Choose Us Shield styling */
.why-shield-bg {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 450px;
  height: 500px;
}

/* Contact Map styling */
.contact-map-bg {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 550px;
  height: 350px;
}

@media (max-width: 992px) {
  .about-compass-bg,
  .services-chart-bg,
  .leadership-net-bg,
  .why-shield-bg,
  .contact-map-bg {
    opacity: 0.03; /* Drop opacity on medium screens to keep content legible */
    right: 0px;
  }
}

@media (max-width: 768px) {
  .about-compass-bg {
    width: 320px;
    height: 320px;
    top: 60%;
  }
  .services-chart-bg {
    width: 350px;
    height: 220px;
    top: 60%;
  }
  .leadership-net-bg {
    width: 340px;
    height: 250px;
    top: 60%;
  }
  .why-shield-bg {
    width: 300px;
    height: 340px;
    top: 65%;
  }
  .contact-map-bg {
    width: 350px;
    height: 220px;
    top: 60%;
  }
}

/* ==========================================================================
   PREMIUM CARD & UTILITY Realignment
   ========================================================================== */

.premium-card {
  background-color: #070707;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.premium-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.03);
  transform: translateY(-2px);
}

.card-icon-box {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  margin-bottom: 1.5rem;
  background-color: rgba(212, 175, 55, 0.03);
}

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

.btn-gold-solid {
  background-color: #D4AF37;
  color: #000000;
  border: 1px solid #D4AF37;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-gold-solid:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

.mx-auto {
  margin-inline: auto;
}

/* 2-column and 3-column card grids */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

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

@media (max-width: 768px) {
  .card-grid-2,
  .card-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   ABOUT US HERO & WAVE Realignment
   ========================================================================== */

.about-hero-section {
  position: relative;
  background-color: #000000;
}

.about-hero-compass {
  position: absolute;
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.about-hero-pillars {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background-image: url('pillars.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

.editorial-title-gold {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D4AF37;
  line-height: 1.2;
}

.bottom-gold-waves {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background-color: #000000;
  margin-top: -2rem;
  margin-bottom: 2rem;
  pointer-events: none;
}

.bottom-gold-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

@media (max-width: 992px) {
  .about-hero-pillars {
    width: 60%;
    opacity: 0.15;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding-block: 6rem 3rem !important;
  }
  .about-hero-pillars {
    width: 100%;
    opacity: 0.1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 75%);
  }
  .about-hero-compass {
    width: 350px;
    height: 350px;
    left: -80px;
  }
}

/* ==========================================================================
   SERVICES PAGE BACKGROUNDS Realignment
   ========================================================================== */

.services-hero-section {
  position: relative;
  background-color: #000000;
  overflow: hidden;
  z-index: 2;
}

/* Left part of background (Financial Chart) shifted left and faded towards center */
.services-hero-left {
  position: absolute;
  top: 0;
  left: -80px;
  width: 45%;
  height: 100%;
  background-image: url('services_bg.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to right, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 65%, transparent 100%);
}

/* Right part of background (Dotted Globe) shifted right and faded towards center */
.services-hero-right {
  position: absolute;
  top: 0;
  right: -80px;
  width: 45%;
  height: 100%;
  background-image: url('services_bg.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to left, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 65%, transparent 100%);
}

.services-hero-content {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.services-hero-content > div {
  text-align: center;
  margin: 0 auto;
}

.services-hero-content .divider-gold {
  margin: 0 auto 2.5rem auto;
}

@media (max-width: 992px) {
  .services-hero-left {
    left: -120px;
    width: 48%;
    opacity: 0.25;
  }
  .services-hero-right {
    right: -120px;
    width: 48%;
    opacity: 0.25;
  }
}

@media (max-width: 768px) {
  .services-hero-section {
    padding-block: 6rem 3rem !important;
  }
  .services-hero-left {
    left: -160px;
    width: 50%;
    opacity: 0.15;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  }
  .services-hero-right {
    right: -160px;
    width: 50%;
    opacity: 0.15;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  }
  .services-hero-content {
    justify-content: center !important;
  }
  .services-hero-content > div {
    text-align: center !important;
    margin: 0 auto;
  }
  .services-hero-content .divider-gold {
    margin: 0 auto 2.5rem auto !important;
  }
}

/* ==========================================================================
   LEADERSHIP HERO & IMAGE Realignment
   ========================================================================== */

.leadership-hero-section {
  position: relative;
  background-color: #000000;
  overflow: hidden;
  z-index: 2;
}

.leadership-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('leadership_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35; /* Clearly visible skyline on left and figures on right */
  pointer-events: none;
  z-index: 1;
}

/* Dark gradient overlay centered on text for contrast */
.leadership-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 45%, transparent 80%);
  pointer-events: none;
  z-index: 2;
}

/* Leadership Card Portrait Frame */
.leader-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.premium-card:hover .leader-portrait {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
  .leadership-hero-section {
    padding-block: 6rem 3rem !important;
  }
  .leadership-hero-section::before {
    background-position: center top;
    opacity: 0.2;
  }
  .leadership-hero-section::after {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
  }
}

/* ==========================================================================
   CONTACT PAGE BACKGROUND Realignment
   ========================================================================== */

.contact-page-main {
  position: relative;
  background-color: #000000;
  overflow: hidden;
  z-index: 2;
}

.contact-page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('contact_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18; /* Subtle, slightly darkened for text and form readability */
  pointer-events: none;
  z-index: 1;
}

/* Ensure content elements render in front of the background */
.contact-page-main > * {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .contact-page-main::before {
    opacity: 0.12; /* Even more subtle on mobile for readability */
    background-position: center top;
  }
}

/* ==========================================================================
   KUBEERRA PLATFORM PAGE STYLES
   ========================================================================== */
.kubeerra-hero-section {
  padding-block: clamp(3.5rem, 6vh, 5.5rem) clamp(2.5rem, 4vh, 4rem);
  border-bottom: var(--border-subtle);
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kubeerra-page-main {
  position: relative;
}

.kub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kub-copy p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-family: var(--font-family);
}

.kub-feats {
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kub-feats li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cccccc;
  font-family: var(--font-family);
  font-weight: 500;
}

.kub-feats li::before {
  content: "—";
  color: #DFB743;
  font-weight: 700;
}

.kub-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.kub-mock {
  background: #0d0d0c;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.kub-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
}

.kub-mock-head span:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: #DFB743;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
}

.kub-mock-head span:last-child {
  color: #DFB743;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

.kub-mock-card {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.kub-mock-card:last-child {
  margin-bottom: 0;
}

.kub-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #cccccc;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kub-mock-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kub-mock-row:first-child {
  padding-top: 0;
}

.kub-mock-val {
  font-family: 'Outfit', monospace, sans-serif;
  color: #DFB743;
  font-weight: 700;
  font-size: 0.95rem;
}

.kub-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 75px;
  margin-top: 1rem;
  padding-top: 0.5rem;
}

.kub-mock-chart div {
  flex: 1;
  background: linear-gradient(180deg, #DFB743, #8C6F24);
  border-radius: 2px 2px 0 0;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .kub-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Background Geometric Pattern styling */
.hero-bg-pattern-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.70 !important;
  filter: brightness(0.85);
  background-image: url('hero-pattern.png?v=5');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   LANDING HERO FOLD RESPONSIVE STYLES
   ========================================================================== */
.landing-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom: 1px solid #D4AF37;
}

.landing-main {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(1.5rem, 3vh, 3rem) 1.5rem;
  min-height: calc(100vh - 65px);
  min-height: calc(100dvh - 65px);
}

.hero-center-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-logo-box {
  width: clamp(190px, 26vw, 320px);
  max-width: 320px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(0.75rem, 2vh, 1.25rem) auto;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.hero-product-text {
  color: #DFB743;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.05rem, 2.3vw, 2.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  max-width: 100%;
  text-align: center;
}

.hero-product-subtext {
  color: #DFB743;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: clamp(0.35rem, 0.8vh, 0.6rem) 0 0 0;
  max-width: 100%;
}

/* ==========================================================================
   LEGAL PAGES (PRIVACY POLICY, TERMS OF SERVICE, DISCLAIMER)
   ========================================================================== */

.legal-hero-section {
  position: relative;
  background-color: #000000;
  overflow: hidden;
  border-bottom: var(--border-subtle);
  padding-block: clamp(3.5rem, 6vh, 5.5rem) clamp(2.5rem, 4vh, 4rem);
}

.legal-page-section {
  padding-block: 4rem 6rem;
  background-color: var(--bg-primary);
  border-bottom: var(--border-subtle);
}

.legal-document-container {
  max-width: 860px;
  margin-inline: auto;
}

.legal-document-card {
  background-color: #050505;
  border: var(--border-subtle);
  padding: 3.5rem;
  position: relative;
}

.legal-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-date {
  font-size: 0.85rem;
  color: #DFB743;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section-block {
  margin-bottom: 2.5rem;
}

.legal-section-block:last-child {
  margin-bottom: 0;
}

.legal-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.legal-paragraph {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cccccc;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.legal-paragraph:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cccccc;
  font-weight: 400;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0.25rem;
  top: 0;
  color: #D4AF37;
  font-size: 1.1rem;
}

.legal-contact-box {
  background: rgba(212, 175, 55, 0.04);
  border-left: 2px solid #D4AF37;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
}

.legal-contact-box p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.legal-contact-box a {
  color: #DFB743;
  text-decoration: underline;
}

.legal-contact-box a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .legal-document-card {
    padding: 2rem 1.5rem;
  }
}





