/*
Theme Name: Luminar Life Sciences
Theme URI: https://luminarlife.com
Description: Luminar Life Sciences Corporate Website
Author: Luminar Life Sciences
Template: twentytwentyfive
Version: 1.0.0
*/

/* ============================================
   LUMINAR LIFE SCIENCES - BRAND DESIGN SYSTEM
   Primary: #E8681A (Luminar Orange)
   Secondary: #1E4F8C (Luminar Blue)
   Dark: #0D1B2A
   Light: #F7F9FC
   ============================================ */

:root {
  --lls-orange: #E8681A;
  --lls-blue: #1E4F8C;
  --lls-dark: #0D1B2A;
  --lls-mid: #1A3A5C;
  --lls-light: #F7F9FC;
  --lls-white: #ffffff;
  --lls-border: #DDE4EE;
  --lls-text: #1A2B3C;
  --lls-muted: #6B7E93;
  --lls-orange-light: rgba(232,104,26,0.08);
  --lls-blue-light: rgba(30,79,140,0.08);
  --nav-height: 80px;
  --font-display: 'Barlow', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--lls-text);
  background: var(--lls-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ========== HIDE DEFAULT WP ELEMENTS ========== */
.wp-block-template-part,
.wp-site-blocks > header,
.wp-site-blocks > footer {
  display: none !important;
}

/* ========== HEADER / NAVBAR ========== */
#lls-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--lls-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}
#lls-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }

.lls-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.lls-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lls-logo img {
  height: 52px;
  width: auto;
  display: block;
}

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

.lls-nav-menu > li {
  position: relative;
}

.lls-nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: var(--nav-height);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--lls-blue);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.lls-nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 3px;
  background: var(--lls-orange);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px 2px 0 0;
}
.lls-nav-menu > li:hover > a,
.lls-nav-menu > li.current-menu-item > a,
.lls-nav-menu > li.current-menu-ancestor > a {
  color: var(--lls-orange);
}
.lls-nav-menu > li:hover > a::after,
.lls-nav-menu > li.current-menu-item > a::after,
.lls-nav-menu > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

/* Dropdown */
.lls-nav-menu > li > ul {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  min-width: 220px;
  background: var(--lls-white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border-radius: 0 0 8px 8px;
  border-top: 3px solid var(--lls-orange);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 999;
  padding: 8px 0;
}
.lls-nav-menu > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lls-nav-menu > li > ul > li > a {
  display: block;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--lls-text);
  transition: color 0.15s, background 0.15s;
  border-left: 3px solid transparent;
}
.lls-nav-menu > li > ul > li > a:hover {
  color: var(--lls-orange);
  background: var(--lls-orange-light);
  border-left-color: var(--lls-orange);
}

/* Mobile hamburger */
.lls-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.lls-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--lls-blue);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ========== PAGE WRAPPER ========== */
#lls-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#lls-main { flex: 1; }

/* ========== HERO SECTION ========== */
.lls-hero {
  background: linear-gradient(135deg, var(--lls-dark) 0%, var(--lls-mid) 50%, #0F3460 100%);
  color: var(--lls-white);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.lls-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,104,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.lls-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lls-orange) 0%, var(--lls-blue) 100%);
}
.lls-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.lls-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lls-orange);
  margin-bottom: 20px;
}
.lls-hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--lls-orange);
}
.lls-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}
.lls-hero h1 span { color: var(--lls-orange); }
.lls-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.lls-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.lls-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.lls-btn-primary {
  background: var(--lls-orange);
  color: var(--lls-white);
  border-color: var(--lls-orange);
}
.lls-btn-primary:hover {
  background: #c9551a;
  border-color: #c9551a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,104,26,0.35);
}
.lls-btn-outline {
  background: transparent;
  color: var(--lls-white);
  border-color: rgba(255,255,255,0.5);
}
.lls-btn-outline:hover {
  border-color: var(--lls-white);
  background: rgba(255,255,255,0.1);
}
.lls-btn-blue {
  background: var(--lls-blue);
  color: var(--lls-white);
  border-color: var(--lls-blue);
}
.lls-btn-blue:hover {
  background: var(--lls-mid);
  border-color: var(--lls-mid);
  transform: translateY(-1px);
}

/* ========== SECTION STRUCTURE ========== */
.lls-section {
  padding: 80px 40px;
}
.lls-section-sm { padding: 50px 40px; }
.lls-section-dark {
  background: var(--lls-dark);
  color: var(--lls-white);
}
.lls-section-light { background: var(--lls-light); }
.lls-section-blue {
  background: var(--lls-blue);
  color: var(--lls-white);
}

.lls-container {
  max-width: 1320px;
  margin: 0 auto;
}

.lls-section-header {
  margin-bottom: 56px;
}
.lls-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lls-orange);
  margin-bottom: 12px;
}
.lls-section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--lls-orange);
}
.lls-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--lls-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.lls-section-dark .lls-section-title,
.lls-section-blue .lls-section-title { color: var(--lls-white); }
.lls-section-desc {
  font-size: 16px;
  color: var(--lls-muted);
  max-width: 600px;
  line-height: 1.7;
}
.lls-section-dark .lls-section-desc,
.lls-section-blue .lls-section-desc { color: rgba(255,255,255,0.7); }

/* ========== GRID CARDS ========== */
.lls-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lls-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lls-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.lls-card {
  background: var(--lls-white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid var(--lls-border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.lls-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lls-orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.lls-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.lls-card:hover::before { transform: scaleX(1); }

.lls-card-icon {
  width: 52px; height: 52px;
  background: var(--lls-orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lls-card-icon svg { width: 26px; height: 26px; color: var(--lls-orange); }
.lls-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--lls-dark);
  margin-bottom: 10px;
}
.lls-card p {
  font-size: 14px;
  color: var(--lls-muted);
  line-height: 1.7;
}
.lls-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lls-orange);
  transition: gap 0.2s;
}
.lls-card-link:hover { gap: 10px; }

/* ========== STAT STRIP ========== */
.lls-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lls-stat {
  padding: 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.lls-stat:last-child { border-right: none; }
.lls-stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--lls-orange);
  line-height: 1;
  margin-bottom: 8px;
}
.lls-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ========== TWO-COLUMN WITH IMAGE ========== */
.lls-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lls-split-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lls-blue-light), var(--lls-orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.lls-split-image-placeholder {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--lls-blue);
  opacity: 0.5;
  text-align: center;
  padding: 20px;
}

/* ========== PAGE INNER HEADER ========== */
.lls-page-header {
  background: linear-gradient(135deg, var(--lls-dark) 0%, var(--lls-mid) 100%);
  color: var(--lls-white);
  padding: 60px 40px 50px;
  position: relative;
}
.lls-page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lls-orange) 0%, var(--lls-blue) 100%);
}
.lls-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}
.lls-page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}
.lls-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lls-breadcrumb a { color: var(--lls-orange); }
.lls-breadcrumb-sep { opacity: 0.4; }

/* ========== SUB-NAV TABS ========== */
.lls-sub-nav {
  background: var(--lls-white);
  border-bottom: 1px solid var(--lls-border);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}
.lls-sub-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.lls-sub-nav-inner::-webkit-scrollbar { display: none; }
.lls-sub-nav a {
  display: block;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lls-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.lls-sub-nav a:hover,
.lls-sub-nav a.active {
  color: var(--lls-orange);
  border-bottom-color: var(--lls-orange);
}

/* ========== FOOTER ========== */
#lls-footer {
  background: var(--lls-dark);
  color: var(--lls-white);
}
.lls-footer-top {
  padding: 64px 40px;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
}
.lls-footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.lls-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lls-footer-social {
  display: flex;
  gap: 10px;
}
.lls-footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
  font-size: 14px;
}
.lls-footer-social a:hover {
  background: var(--lls-orange);
  color: var(--lls-white);
}
.lls-footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lls-orange);
  margin-bottom: 20px;
}
.lls-footer-col ul { list-style: none; }
.lls-footer-col ul li { margin-bottom: 10px; }
.lls-footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.lls-footer-col ul li a:hover { color: var(--lls-orange); }

.lls-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.lls-footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.lls-footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.lls-footer-legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.lls-footer-legal a:hover { color: var(--lls-orange); }

/* ========== DIVIDER LINE ========== */
.lls-divider {
  width: 60px; height: 3px;
  background: var(--lls-orange);
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ========== HIGHLIGHT BOX ========== */
.lls-highlight {
  background: linear-gradient(135deg, var(--lls-blue), var(--lls-mid));
  color: var(--lls-white);
  padding: 48px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.lls-highlight::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,104,26,0.2) 0%, transparent 70%);
}

/* ========== PARTNERSHIP CTA ========== */
.lls-cta-strip {
  background: linear-gradient(135deg, var(--lls-orange) 0%, #c9551a 100%);
  padding: 60px 40px;
  text-align: center;
  color: var(--lls-white);
}
.lls-cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
}
.lls-cta-strip p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== GLOBAL MAP ========== */
.lls-map-visual {
  background: linear-gradient(135deg, var(--lls-blue-light), #e8f0f8);
  border-radius: 12px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lls-border);
}
.lls-map-pin {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--lls-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,104,26,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,104,26,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(232,104,26,0); }
}

/* ========== CONTENT BODY ========== */
.lls-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--lls-text);
}
.lls-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--lls-dark);
  margin: 40px 0 16px;
}
.lls-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--lls-blue);
  margin: 28px 0 12px;
}
.lls-content p { margin-bottom: 16px; }
.lls-content ul { padding-left: 20px; margin-bottom: 16px; }
.lls-content li { margin-bottom: 8px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .lls-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lls-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lls-stats { grid-template-columns: repeat(2, 1fr); }
  .lls-stats .lls-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .lls-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lls-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .lls-nav-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--lls-white); flex-direction: column; align-items: flex-start; padding: 20px; overflow-y: auto; gap: 0; }
  .lls-nav-menu.open { display: flex; }
  .lls-nav-menu > li > a { height: auto; padding: 14px 0; border-bottom: 1px solid var(--lls-border); width: 100%; }
  .lls-nav-menu > li > a::after { display: none; }
  .lls-nav-menu > li > ul { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border-top: none; border-left: 3px solid var(--lls-orange); margin-left: 16px; padding: 4px 0; display: none; }
  .lls-nav-menu > li.open > ul { display: block; }
  .lls-hamburger { display: flex; }
  .lls-section { padding: 50px 20px; }
  .lls-hero { padding: 60px 20px; min-height: auto; }
  .lls-grid-3, .lls-grid-4, .lls-grid-2 { grid-template-columns: 1fr; }
  .lls-footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .lls-nav-inner { padding: 0 20px; }
  .lls-footer-bottom { flex-direction: column; text-align: center; }
  .lls-page-header { padding: 40px 20px 36px; }
  .lls-stats { grid-template-columns: 1fr 1fr; }
}
