/**
 * Liver Not Included - Modern Redesign
 * Fresh design system with premium aesthetics
 */

@charset "UTF-8";

/*--------------------------------------------------------------
# Design System - Premium Color Palette
# Deep Navy + Warm Gold - Trust, sophistication, excellence
--------------------------------------------------------------*/
:root {
  /* Typography */
  --font-primary: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", var(--font-primary);

  /* Neutral backgrounds - crisp & clean */
  --bg-base: #ffffff;
  --bg-elevated: #ffffff;
  --bg-muted: #f8fafc;
  --bg-subtle: #f1f5f9;

  /* Text - strong contrast & readability */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  /* Accent - Warm gold/amber (premium, trustworthy) */
  --accent-500: #c2410c;
  --accent-600: #9a3412;
  --accent-700: #7c2d12;
  --accent-light: #ffedd5;

  /* Primary - Deep navy (authority, trust) */
  --primary-600: #0f172a;
  --primary-700: #020617;

  /* CTA - Bold contrast */
  --cta-bg: #c2410c;
  --cta-hover: #9a3412;
  --cta-text: #ffffff;

  /* Borders & Shadows - refined */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12);

  /* Legacy variable mapping */
  --background-color: var(--bg-base);
  --default-color: var(--text-primary);
  --heading-color: var(--text-primary);
  --accent-color: var(--accent-500);
  --surface-color: var(--bg-elevated);
  --contrast-color: var(--cta-text);
  --nav-color: var(--text-secondary);
  --nav-hover-color: var(--accent-500);
  --nav-mobile-background-color: var(--bg-elevated);
  --nav-dropdown-background-color: var(--bg-elevated);
  --nav-dropdown-color: var(--text-primary);
  --nav-dropdown-hover-color: var(--accent-500);
}

/*--------------------------------------------------------------
# Base & Typography
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: 0;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

a {
  color: var(--accent-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-600);
}

/*--------------------------------------------------------------
# Header - Solid Bar Design
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary-700);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  transition: all 0.3s ease;
  border-radius: 0 0 24px 24px;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header .logo .sitename {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.header .logo .sitename:hover {
  color: rgba(255, 255, 255, 0.95);
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navmenu a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.navmenu a:hover,
.navmenu a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.header .header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--accent-500);
  color: white !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.header .header-cta:hover {
  background: var(--accent-600);
  color: white !important;
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

@media (max-width: 991px) {
  .header .header-cta { display: none; }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 90vw;
    background: var(--primary-700);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    z-index: 9998;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9997;
  }

  .mobile-nav-active .navmenu ul {
    display: flex;
    align-items: stretch;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    color: white;
  }

  .navmenu a {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navmenu a:hover, .navmenu a.active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
  }
}

/*--------------------------------------------------------------
# Hero - Modern Bold Layout
--------------------------------------------------------------*/
.hero-new {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8rem 1.5rem 5rem;
  background: var(--primary-700);
  position: relative;
  overflow: hidden;
}

.hero-new::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-600) 0%, transparent 70%);
  pointer-events: none;
}

.hero-new .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-new .hero-flip .hero-visual {
  order: 1;
}

.hero-new .hero-flip .hero-content {
  order: 2;
}

.hero-new .hero-flip .hero-meta {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Hero Text Only - About, Services, Contact pages */
.hero-new.hero-text-only {
  min-height: auto;
  padding: 6rem 1.5rem 4rem;
}

.hero-new.hero-text-only .hero-split {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-new.hero-text-only .hero-content {
  width: 100%;
}

.hero-new.hero-text-only .hero-meta {
  justify-content: center;
}

.hero-new.hero-text-only .hero-actions {
  justify-content: center;
}

.hero-new .hero-content .eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.hero-new .hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.hero-new .hero-content .lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-new .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.hero-new .hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.hero-new .hero-meta-item i {
  color: var(--accent-500);
  font-size: 1rem;
}

.hero-new .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-new .hero-actions .btn-cta-primary {
  background: var(--accent-500);
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.4);
}

.hero-new .hero-actions .btn-cta-primary:hover {
  background: #ea580c;
  box-shadow: 0 6px 20px rgba(194, 65, 12, 0.5);
}

.hero-new .hero-actions .btn-cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.hero-new .hero-actions .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.hero-new .hero-visual {
  position: relative;
}

.hero-new .hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-new .hero-badges {
  display: none;
}

.hero-new .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-new .hero-badge i {
  color: var(--accent-500);
  font-size: 0.9375rem;
}

@media (max-width: 991px) {
  .hero-new {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-new::before {
    width: 100%;
    opacity: 0.5;
  }

  .hero-new .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-new .hero-meta {
    justify-content: center;
  }

  .hero-new .hero-actions {
    justify-content: center;
  }

  .hero-new .hero-flip .hero-visual {
    order: -1;
  }
}

/* Stats Bar - Full Width */
.stats-bar {
  background: var(--primary-700);
  padding: 2rem 1.5rem;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar .stat-item {
  color: white;
}

.stats-bar .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-500);
  margin-bottom: 0.25rem;
}

.stats-bar .stat-text {
  font-size: 0.875rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Bento Grid - Services */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bento-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-light);
}

.bento-card.bento-large {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.bento-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.bento-large {
    grid-column: span 1;
  }
}

/* About - Stacked Layout */
.about-stacked {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-image-top img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}

.about-content-bottom h2 {
  margin-bottom: 1rem;
}

.about-content-bottom p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.about-content-bottom .btn-cta {
  margin-top: 0.5rem;
}

/* Contact - Split Layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-detail-item i {
  color: var(--accent-500);
  font-size: 1.125rem;
}

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

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-cta-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  box-shadow: var(--shadow-md);
}

.btn-cta-primary:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(194, 65, 12, 0.35);
}

.btn-cta-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-cta-secondary:hover {
  border-color: var(--accent-500);
  color: var(--accent-600);
  background: var(--accent-light);
}

/*--------------------------------------------------------------
# Section Patterns
--------------------------------------------------------------*/
.section-new {
  padding: 5rem 0;
}

.section-new .section-header {
  margin-bottom: 3rem;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

/*--------------------------------------------------------------
# Card Grid - Services
--------------------------------------------------------------*/
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.card-modern {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
}

.card-modern:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--accent-light);
}

.card-modern .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card-modern h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-modern p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.card-modern a {
  color: inherit;
}

.card-modern a:hover {
  color: inherit;
}

/*--------------------------------------------------------------
# Split Layout - About
--------------------------------------------------------------*/
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.split-section.reverse .split-content {
  order: 2;
}

.split-section.reverse .split-visual {
  order: 1;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content > p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.split-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.stat-box .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-500);
  line-height: 1.2;
}

.stat-box .label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-content,
  .split-section.reverse .split-visual {
    order: unset;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*--------------------------------------------------------------
# Timeline - About Page
--------------------------------------------------------------*/
.timeline {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-dot {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-500);
  border: 4px solid var(--bg-base);
  box-shadow: var(--shadow-md);
}

.timeline-content h4 {
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Full-Width CTA Section
--------------------------------------------------------------*/
.cta-full {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: var(--cta-text);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-full h2 {
  color: inherit;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-full p {
  font-size: 1.125rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-full .btn-cta-primary {
  background: var(--accent-500);
  color: white;
  position: relative;
}

.cta-full .btn-cta-primary:hover {
  background: var(--accent-600);
  color: white;
}

/* CTA secondary on dark backgrounds */
.btn-cta-outline-light {
  background: rgba(255, 255, 255, 0.12) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-cta-outline-light:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/*--------------------------------------------------------------
# Testimonials - Card Slider
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonials - Redesigned
--------------------------------------------------------------*/
.testimonials-section {
  padding: 5rem 0;
  background: var(--primary-700);
  position: relative;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-section .section-header .eyebrow {
  color: var(--accent-500);
}

.testimonials-section .section-header h2 {
  color: #ffffff;
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--accent-500);
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

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

/*--------------------------------------------------------------
# Team - Meet the Experts (Improved)
--------------------------------------------------------------*/
.team-section {
  padding: 5rem 0;
  background: var(--primary-700);
  position: relative;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team-section .section-header .eyebrow {
  color: var(--accent-500);
}

.team-section .section-header h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.team-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-500);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.team-card-photo {
  margin-bottom: 1.5rem;
}

.team-card-photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-card-photo img {
  border-color: var(--accent-500);
}

.team-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.team-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 0.875rem;
  color: var(--accent-500);
  font-weight: 500;
}

.team-focus {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.team-cta {
  text-align: center;
  margin-top: 3rem;
}

.team-cta .btn-cta-primary {
  background: var(--accent-500);
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.4);
}

.team-cta .btn-cta-primary:hover {
  background: #ea580c;
  box-shadow: 0 6px 20px rgba(194, 65, 12, 0.5);
}

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

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

  .team-card-photo img {
    width: 80px;
    height: 80px;
  }
}

/*--------------------------------------------------------------
# Contact Form - Modern
--------------------------------------------------------------*/
.contact-section-new {
  padding: 5rem 0;
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-form-card {
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-card h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form-card .form-control {
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  padding: 0 1.25rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.2);
  outline: none;
}

.contact-form-card textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 1rem 1.25rem;
}

.contact-form-card label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  display: block;
}

.contact-form-card .opt-in-box {
  background: var(--bg-muted);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-form-card .opt-in-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-500);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-form-card .opt-in-label {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-card .opt-in-label a {
  color: var(--accent-500);
  font-weight: 600;
}

.contact-form-card .submit-btn {
  width: 100%;
  height: 52px;
  background: var(--cta-bg);
  color: var(--cta-text);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form-card .submit-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Footer - Redesigned Multi-Column
--------------------------------------------------------------*/
.footer-new {
  background: linear-gradient(180deg, var(--primary-700) 0%, #000000 100%);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 24px 24px 0 0;
  margin-top: 4rem;
}

.footer-new .footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.footer-new .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-new .footer-brand .sitename {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-new .footer-brand .sitename:hover {
  color: var(--accent-light);
}

.footer-new .footer-brand .tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-new .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-new .footer-contact-item i {
  color: var(--accent-500);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-new .footer-links h4 {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

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

.footer-new .footer-links li {
  margin-bottom: 0.625rem;
}

.footer-new .footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.footer-new .footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-new .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.5rem;
}

.footer-new .footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-new .footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

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

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

  .footer-new .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Scroll Top & Preloader (Compatibility)
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-700);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-500);
  color: white;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-light);
  border-top-color: var(--accent-500);
  border-radius: 50%;
  animation: preloader-spin 0.8s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Legacy Hero/About/Section Compatibility (minimal)
--------------------------------------------------------------*/
.hero.section,
.about.section,
section.section {
  padding-top: 6rem;
}

/* Hide legacy elements when using new structure */
.hero-new ~ .hero.section { display: none; }
