/* ==========================================================
   VYOMA HEALTH - FULL SCREEN COMPLIANT STYLESHEET (NO SIDE GAPS)
   Fixed to match reference "About Us" design
   ========================================================== */

:root {
  --green-dark: #0e2a1c;
  --green-deeper: #071510;
  --green-light: #2a5c3f;
  --gold: #c9a84c;
  --gold-light: #e2c06e;
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
}

/* ----- GLOBAL RESET ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ----- NAVIGATION ----- */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: var(--green-dark);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-navbar .nav-logo img {
  height: 48px; 
  width: auto;
  display: block;
  object-fit: contain;
}

.main-navbar .nav-links {
  display: flex;
  gap: 35px;
}

.main-navbar .nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.main-navbar .nav-links a:hover, 
.main-navbar .nav-links a.active {
  color: var(--gold);
}

.main-navbar .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.main-navbar .btn-book {
  background: var(--gold);
  color: var(--green-dark);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.main-navbar .btn-book:hover {
  background: var(--gold-light);
}

/* ----- HERO SECTION -----
   FIX: 85vh + 160px bottom padding was making the hero far too tall
   (that's what was pushing the split section way down the page).
   Switched to a fixed, reference-matched height + tighter padding. */
.ab-hero {
  min-height: 560px;
  background: linear-gradient(to right, 
                rgba(14,42,28,1) 0%, 
                rgba(14,42,28,1) 34%, 
                rgba(14,42,28,0.7) 55%, 
                rgba(14,42,28,0.15) 78%,
                rgba(14,42,28,0) 100%), 
              url('images/about-hero.png') no-repeat;
  background-position: right 12%;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 130px 8% 60px 8%;
  position: relative;
}

.ab-hero-content {
  max-width: 620px;
  z-index: 5;
}

.ab-hero-subtitle {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.ab-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4.5vw, 54px);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
}

.ab-hero-title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.ab-divline-left {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}

.ab-divline-left .line {
  height: 1px;
  width: 35px;
  background: var(--gold);
}

.ab-divline-left .leaf-icon {
  color: var(--gold);
  font-size: 11px;
}

.dark-line .line { background: rgba(14,42,28,0.2); }
.dark-line .leaf-icon { color: var(--green-dark); }

.ab-hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==========================================================
   SPLIT SECTION (TRUE FULL SCREEN - NO SIDE GAPS)
   ========================================================== */
.ab-split-wrap {
  padding: 0;
  background: var(--white);
  width: 100%;
}

.ab-split {
  display: grid;
  grid-template-columns: 44fr 56fr;
  margin-top: -65px;
  position: relative;
  z-index: 20;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
}

/* Left Column (What We Do)
   FIX: asymmetric 8%/12% padding pulled content off-balance;
   evened out to match reference spacing on both columns. */
.ab-approach-col {
  background: var(--cream);
  padding: 70px 7% 70px 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ab-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  flex-shrink: 0;
}

.ab-icon-circle svg,
.ab-icon-circle i {
  width: 26px;
  height: 26px;
  font-size: 24px;
}

.ab-col-ey {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.ab-col-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 2.5vw, 32px);
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 700;
}

.ab-col-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ab-btn-pill {
  background: var(--green-dark);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  margin-top: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-btn-pill:hover {
  background: var(--green-light);
}

/* Right Column (How We Help) */
.ab-support-col {
  background: var(--green-dark);
  padding: 70px 9% 70px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.white-text { color: var(--white); }
.gold-text { color: rgba(201,168,76,0.9); }

.ab-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin-top: 20px;
}

.ab-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ab-check-item svg {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ab-check-item span {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ----- COMMITMENT SECTION -----
   FIX: cards were centered; reference shows each card left-aligned
   (icon, heading and paragraph all sharing the same left edge). */
.ab-commitment-section {
  padding: 70px 5% 65px 5%;
  background: var(--cream);
  text-align: center;
}

.ab-commit-ey {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 40px;
}

.ab-commit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1300px;
  margin: 0 auto;
}

.ab-commit-card {
  padding: 0 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.ab-commit-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

.ab-commit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.ab-commit-card h3 {
  font-size: 16px;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.ab-commit-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ----- CTA FOOTER BAR -----
   FIX: right side (button + phone + email) was stacked in a column;
   reference has them laid out in one horizontal row. */
.ab-footer-bar {
  background: var(--green-dark);
  padding: 32px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.ab-foot-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ab-foot-logo-mark {
  color: var(--gold);
  font-size: 30px;
}

.ab-foot-text h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.ab-foot-text p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.ab-btn-gold-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 13px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.ab-btn-gold-cta:hover {
  background: var(--gold-light);
}

.ab-foot-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.ab-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  white-space: nowrap;
}

.ab-contact-item svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ----- RESPONSIVENESS ----- */
@media (max-width: 1100px) {
  .ab-commit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .ab-commit-card:nth-child(2)::after { display: none; }
  .ab-commit-card:not(:last-child)::after { display: none; }
}

@media (max-width: 992px) {
  .ab-hero {
    min-height: auto;
    background: linear-gradient(to bottom, rgba(14,42,28,0.55) 0%, rgba(14,42,28,0.92) 55%, rgba(14,42,28,0.98) 100%), 
                url('images/about-hero.png') no-repeat center 15% / cover;
    padding: 110px 6% 60px 6%;
  }
  .ab-split {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }
  .ab-approach-col, .ab-support-col {
    padding: 55px 8%;
  }
  .ab-footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .ab-foot-left {
    flex-direction: column;
  }
  .ab-foot-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .ab-check-grid { grid-template-columns: 1fr; }
  .ab-commit-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .ab-commit-card::after { display: none !important; }
}

.about-page .hero { background-image: url('images/about-hero.png'); }

.about-page .split-section {
  min-height: 360px;
  margin-top: 0;
  overflow: hidden;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.about-page .split-left,
.about-page .split-right { padding: 38px 6%; }
.about-page .split-left {
  flex: 0 0 44%;
  align-items: center;
}
.about-page .split-right { flex: 1; }
.about-page .split-left-top {
  width: 100%;
  align-items: center;
  gap: 48px;
  margin: 0;
}
.about-page .split-left-content { flex: 1; }
.about-page .split-icon {
  width: 102px;
  height: 102px;
}
.about-page .split-left h3,
.about-page .split-right h3 {
  font-size: 27px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.about-page .split-left-top h3 { margin: 0 0 15px; }
.about-page .about-hero-divider { margin-bottom: 16px; }
.about-page .about-hero-divider .ln { background: var(--gold); }
.about-page .split-left p {
  font-size: 13px;
  line-height: 1.62;
  margin-bottom: 13px;
}
.about-page .split-btn {
  margin-top: 9px;
  padding: 11px 23px;
  font-size: 12px;
}
.about-page .split-right .split-eyebrow { margin-bottom: 11px; }
.about-page .split-right .about-hero-divider { margin-bottom: 16px; }
.about-page .check-grid {
  gap: 18px 34px;
  margin-top: 0;
}
.about-page .check-item { gap: 9px; }
.about-page .check-item span {
  font-size: 12.5px;
  line-height: 1.58;
}

.about-page .commit-section { padding: 42px 6% 48px; }
.about-page .commit-grid { margin-top: 30px; }
.about-page .commit-item {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
}
.about-page .commit-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  margin: 0;
}
.about-page .commit-icon svg { width: 30px; height: 30px; }
.about-page .commit-item h4 { font-size: 14px; margin-bottom: 7px; }
.about-page .commit-item p { font-size: 11.5px; line-height: 1.55; }


@media (max-width: 1000px) {
  .about-page .split-left { flex-basis: 50%; }
  .about-page .split-left-top { gap: 24px; }
  .about-page .split-icon { width: 78px; height: 78px; }
  .about-page .commit-item { padding: 0 18px; }
}
@media (max-width: 768px) {
  .about-page .split-section { min-height: 0; }
  .about-page .split-left,
  .about-page .split-right { padding: 55px 8%; }
  .about-page .split-left-top { align-items: flex-start; }
  .about-page .commit-section { padding: 52px 8%; }
  .about-page .commit-item { flex-direction: row; }
}
@media (max-width: 560px) {
  .about-page .split-left-top { flex-direction: column; gap: 20px; }
  .about-page .split-icon { width: 72px; height: 72px; }
  .about-page .check-grid { grid-template-columns: 1fr; }
  .about-page .commit-item { padding: 0 0 24px; }
}
