/* =============================================
   HARMONIZED CARE HOLDINGS — STYLES
   Clean, standard template look
   ============================================= */

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

:root {
  --blue-dark: #0b1a30;
  --blue-mid: #0f2140;
  --red: #c8102e;
  --red-hover: #a80d25;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--blue-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red { color: var(--red); }

::selection {
  background: var(--red);
  color: var(--white);
}

/* ── Nav ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(11,26,48,0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 36px;
  width: auto;
}

.navbar.scrolled .logo-img {
  height: 30px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-60);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: var(--white-10);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 60px;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(200, 16, 46, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-80);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--white-60);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-30);
}

.btn-outline:hover {
  background: var(--white-10);
}

/* ── Section Title ───────────────────────────── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

/* ── About ───────────────────────────────────── */
.about-section {
  padding: 120px 0;
  background: var(--blue-mid);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.section-title.left-align {
  text-align: left;
  margin-bottom: 16px;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.about-text-large {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.75;
}

/* ── Strategy ────────────────────────────────── */
.strategy-section {
  padding: 100px 0;
  background: var(--blue-dark);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.strategy-card {
  display: flex;
  gap: 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.strategy-card:hover {
  border-color: var(--white-30);
  transform: translateY(-2px);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.strategy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.strategy-content p {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ── Leadership ──────────────────────────────── */
.leadership-section {
  padding: 100px 0;
  background: var(--blue-mid);
}

.leader-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 14px;
  padding: 40px;
  margin-top: 40px;
}

.leader-image-wrapper {
  position: relative;
}

.leader-image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.leader-name-tag {
  position: absolute;
  bottom: -14px;
  left: 12px;
  right: 12px;
  background: var(--red);
  padding: 14px 16px;
  border-radius: 10px;
  text-align: center;
}

.leader-name-tag h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.leader-name-tag span {
  font-size: 0.78rem;
  color: var(--white-80);
}

.leader-headline {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.leader-headline .divider {
  color: var(--white-30);
  margin: 0 4px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  transition: color 0.2s, transform 0.2s;
  vertical-align: text-bottom;
  margin-left: 8px;
}

.linkedin-link:hover {
  color: #0a66c2;
  transform: translateY(-1px);
}

.leader-tagline {
  font-size: 0.9rem;
  color: var(--white-60);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-10);
}

.bio-text p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 14px;
}

.bio-text p:last-child { margin-bottom: 0; }

.bio-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Contact ─────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--blue-dark);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white-05);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid var(--white-10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder {
  color: var(--white-30);
}

.form-input:focus {
  border-color: var(--red);
  background: var(--white-10);
}

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

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white-60);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--red);
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.btn-send {
  padding: 14px 48px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-send:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--white-10);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-brand-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--white-30);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--white-05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--white-30);
}

/* ── Modal ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,26,48,0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--blue-mid);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.modal-message {
  font-size: 1rem;
  color: var(--white-60);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-close {
  width: 100%;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .about-layout { gap: 40px; }
  .leader-card { grid-template-columns: 260px 1fr; gap: 32px; }
  .strategy-grid { gap: 16px; }
  .strategy-card { padding: 24px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; 
    width: 100vw; height: 100vh;
    background: rgba(11,26,48,0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 28px; }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }

  .leader-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px;
  }

  .leader-image-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; }
  
  .about-layout, .strategy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title.left-align { text-align: center; }
  .about-divider { margin: 0 auto; }
  
  .hero-section { min-height: auto; padding: 130px 20px 60px; text-align: center; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; max-width: 700px; margin: 0 auto 30px; }
  .about-section, .strategy-section, .leadership-section, .contact-section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 110px 16px 50px; }
  .hero-title { font-size: 2.2rem; }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px;
  }

  .leader-card { padding: 16px; }

  .leader-name-tag {
    left: 8px; right: 8px;
    padding: 10px 12px;
  }
}
