/* ==========================================================================
   Marelia Holding - Aurora Design Style System
   Theme: Minimalist Modern Holding Company
   Palette: Deep Obsidian Backdrop, Fluid Aurora Meshes, Glassmorphism
   Accent Colors:
     - Holding: Iridescent White & Champagne Gold
     - Invest: Cyan-Teal (#0498a9)
     - Health: Azure-Blue (#3898ec)
     - Travel: Imperial Purple (#542c5d)
   ========================================================================== */

:root {
  /* Core Base Colors */
  --bg-space: #070a0f;
  --bg-card: rgba(18, 25, 38, 0.65);
  --bg-card-hover: rgba(26, 36, 54, 0.85);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(255, 255, 255, 0.22);
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-light: #ffffff;
  
  /* Brand Accent Colors */
  --color-invest: #0498a9;
  --color-invest-glow: rgba(4, 152, 169, 0.45);
  --color-invest-light: #12c2d6;

  --color-health: #3898ec;
  --color-health-glow: rgba(56, 152, 236, 0.45);
  --color-health-light: #60a5fa;

  --color-travel: #542c5d;
  --color-travel-glow: rgba(84, 44, 93, 0.55);
  --color-travel-light: #9d4edd;
  --color-travel-vibrant: #824391;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-spring);
  --transition-normal: 0.35s var(--ease-spring);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-space);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==========================================================================
   Aurora Ambient Glowing Mesh Background
   ========================================================================== */
.aurora-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #101928 0%, #070a0f 75%);
}

.aurora-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

/* Invest Aurora Glow (Top Left - Cyan/Teal) */
.mesh-1 {
  width: 600px;
  height: 550px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(4, 152, 169, 0.45) 0%, rgba(4, 152, 169, 0) 70%);
  animation: auroraFloat1 18s infinite;
}

/* Health Aurora Glow (Top Right - Azure Blue) */
.mesh-2 {
  width: 650px;
  height: 600px;
  top: -100px;
  right: -120px;
  background: radial-gradient(circle, rgba(56, 152, 236, 0.4) 0%, rgba(56, 152, 236, 0) 70%);
  animation: auroraFloat2 22s infinite;
}

/* Travel Aurora Glow (Center Bottom - Imperial Purple #542c5d) */
.mesh-3 {
  width: 750px;
  height: 650px;
  top: 45%;
  left: 20%;
  background: radial-gradient(circle, rgba(84, 44, 93, 0.55) 0%, rgba(130, 67, 145, 0.25) 45%, rgba(84, 44, 93, 0) 70%);
  animation: auroraFloat3 26s infinite;
}

/* Ambient Horizon Glow (Bottom Center) */
.mesh-4 {
  width: 800px;
  height: 500px;
  bottom: -200px;
  right: 15%;
  background: radial-gradient(circle, rgba(4, 152, 169, 0.3) 0%, rgba(84, 44, 93, 0.3) 50%, transparent 75%);
  animation: auroraFloat1 24s infinite reverse;
}

@keyframes auroraFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 90px) scale(1.15); }
  100% { transform: translate(-40px, 40px) scale(0.95); }
}

@keyframes auroraFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, 60px) scale(1.12); }
  100% { transform: translate(30px, -50px) scale(0.9); }
}

@keyframes auroraFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.2); }
  100% { transform: translate(-60px, 50px) scale(1); }
}

/* Subtle Film Grain Texture Overlay for Depth */
.aurora-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Interactive Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
  opacity: 0;
}

body.cursor-active .cursor-glow {
  opacity: 1;
}

/* ==========================================================================
   Main Layout Container
   ========================================================================== */
.site-container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Header Navigation (Glassmorphic)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(7, 10, 15, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Holding Brand Logo with Authentic Master Mark & Wordmark */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.brand-holding-badge {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

/* Header Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 6px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-invest), var(--color-travel-vibrant));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-light);
}

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

/* Language Switcher Capsule */
.lang-switch-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 3px;
  width: 86px;
  height: 36px;
  backdrop-filter: blur(10px);
}

.lang-pill {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease-spring);
  pointer-events: none;
}

.lang-btn {
  position: relative;
  z-index: 2;
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  line-height: 28px;
  transition: color var(--transition-fast);
}

.lang-btn.active {
  color: #ffffff;
}

/* Quick CTA Button */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.header-cta-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 90px 24px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-invest), var(--color-travel-vibrant));
  box-shadow: 0 0 10px var(--color-travel-glow);
  animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-gradient {
  background: linear-gradient(135deg, #ffffff 20%, #cbd5e1 55%, #a855f7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  color: #070a0f;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px -4px rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(255, 255, 255, 0.38);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Metric Strip */
.hero-metrics {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 36px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Subsidiaries Companies Showcase Section
   ========================================================================== */
.companies-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 24px 90px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 3 Cards Grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.company-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s var(--ease-spring);
  overflow: hidden;
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Ambient Card Radial Glow */
.card-glow {
  position: absolute;
  inset: -100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.card-invest:hover .card-glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(4, 152, 169, 0.18) 0%, transparent 65%);
}

.card-health:hover .card-glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(56, 152, 236, 0.18) 0%, transparent 65%);
}

.card-travel:hover .card-glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 30%, rgba(84, 44, 93, 0.28) 0%, transparent 65%);
}

/* Card Hover Elevation & Border Accents */
.company-card:hover {
  transform: translateY(-7px);
  background: var(--bg-card-hover);
}

.card-invest:hover {
  border-color: rgba(4, 152, 169, 0.45);
  box-shadow: 0 20px 40px -15px rgba(4, 152, 169, 0.25);
}

.card-health:hover {
  border-color: rgba(56, 152, 236, 0.45);
  box-shadow: 0 20px 40px -15px rgba(56, 152, 236, 0.25);
}

.card-travel:hover {
  border-color: rgba(130, 67, 145, 0.55);
  box-shadow: 0 20px 40px -15px rgba(84, 44, 93, 0.35);
}

/* Card Header */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.invest-badge {
  background: rgba(4, 152, 169, 0.12);
  color: var(--color-invest-light);
  border: 1px solid rgba(4, 152, 169, 0.3);
}
.invest-badge .badge-dot-sm { background: var(--color-invest-light); }

.health-badge {
  background: rgba(56, 152, 236, 0.12);
  color: var(--color-health-light);
  border: 1px solid rgba(56, 152, 236, 0.3);
}
.health-badge .badge-dot-sm { background: var(--color-health-light); }

.travel-badge {
  background: rgba(84, 44, 93, 0.3);
  color: #c084fc;
  border: 1px solid rgba(130, 67, 145, 0.45);
}
.travel-badge .badge-dot-sm { background: #c084fc; }

.card-arrow-icon {
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.company-card:hover .card-arrow-icon {
  color: #ffffff;
  transform: translate(3px, -3px);
}

/* High Fidelity Logo Display Box */
.logo-display-box {
  width: 100%;
  height: 155px;
  background: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.company-card:hover .logo-display-box {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.company-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: contrast(102%);
}

/* Card Body */
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.company-domain {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.card-invest .company-domain { color: var(--color-invest-light); }
.card-health .company-domain { color: var(--color-health-light); }
.card-travel .company-domain { color: #c084fc; }

.company-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

.feature-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.feature-pills li {
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Card Button Link */
.card-footer {
  margin-top: auto;
}

.company-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-invest {
  background: rgba(4, 152, 169, 0.15);
  border: 1px solid rgba(4, 152, 169, 0.4);
  color: #38dbe9;
}
.btn-invest:hover {
  background: var(--color-invest);
  color: #ffffff;
  border-color: var(--color-invest);
  box-shadow: 0 8px 20px var(--color-invest-glow);
}

.btn-health {
  background: rgba(56, 152, 236, 0.15);
  border: 1px solid rgba(56, 152, 236, 0.4);
  color: #70b4ff;
}
.btn-health:hover {
  background: var(--color-health);
  color: #ffffff;
  border-color: var(--color-health);
  box-shadow: 0 8px 20px var(--color-health-glow);
}

/* Imperial Purple Button (#542c5d) */
.btn-travel {
  background: rgba(84, 44, 93, 0.45);
  border: 1px solid rgba(130, 67, 145, 0.55);
  color: #e9d5ff;
}
.btn-travel:hover {
  background: linear-gradient(135deg, #542c5d 0%, #753584 100%);
  color: #ffffff;
  border-color: #8f4da0;
  box-shadow: 0 8px 20px rgba(84, 44, 93, 0.6);
}

/* ==========================================================================
   Contact & Headquarters Section
   ========================================================================== */
.contact-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 30px 24px 100px;
}

.contact-glass-card {
  background: linear-gradient(145deg, rgba(22, 30, 46, 0.75) 0%, rgba(13, 18, 28, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.contact-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-header-info {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-lead {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.action-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #070a0f;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.action-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.3);
}

.action-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: none;
}

.action-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Contact Info Items List */
.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon {
  background: rgba(4, 152, 169, 0.14);
  color: var(--color-invest-light);
  border: 1px solid rgba(4, 152, 169, 0.3);
}

.phone-icon {
  background: rgba(56, 152, 236, 0.14);
  color: var(--color-health-light);
  border: 1px solid rgba(56, 152, 236, 0.3);
}

.email-icon {
  background: rgba(84, 44, 93, 0.35);
  color: #c084fc;
  border: 1px solid rgba(130, 67, 145, 0.45);
}

.item-content {
  flex: 1;
}

.item-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.item-value {
  font-style: normal;
  font-size: 0.96rem;
  color: #f1f5f9;
  line-height: 1.5;
  margin-bottom: 10px;
}

.item-value-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.item-value-link:hover {
  color: var(--color-health-light);
}

.sub-caption {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.address-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-invest-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.map-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  width: 100%;
  background: rgba(4, 7, 12, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 50px 24px 34px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.holding-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.footer-copy-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 480px;
}

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

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

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

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

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .companies-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta-btn span {
    display: none;
  }
  .header-cta-btn {
    padding: 8px 12px;
  }

  .hero-section {
    padding: 60px 16px 50px;
  }

  .hero-metrics {
    gap: 18px;
    padding: 14px 20px;
    width: 100%;
    max-width: 380px;
  }

  .metric-num {
    font-size: 1.35rem;
  }

  .metric-label {
    font-size: 0.72rem;
  }

  .contact-glass-card {
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .brand-logo-img {
    height: 32px;
  }

  .brand-holding-badge {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn, .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-cta-row {
    flex-direction: column;
  }

  .action-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
