/* ==========================================================
   VYOMA HEALTH - COMPLETE STYLESHEET
   ========================================================== */

/* ----- VARIABLES ----- */
: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: #666666;
}

/* ----- GLOBAL RESET ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5%;
  height: 68px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: left center;
}
.nav-links { display: flex; align-items: center; gap: 42px; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.nav-links a:hover { color: var(--gold); }
.btn-book {
  background: var(--gold);
  color: var(--green-dark);
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}
.btn-book:hover { background: var(--gold-light); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: url('images/hero-banner.png') right center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero--about { background-image: url('images/about-hero.png'); }
.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 4% 0 10%;
  max-width: 900px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4vw, 58px);
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 50px;
}
.hero-title .g { color: var(--gold); font-style: italic; }
.h-div { display: flex; align-items: center; gap: 10px; margin: 18px 0 20px; }
.h-div .hl { display: block; height: 1px; width: 50px; background: var(--gold); }
.h-div .hd { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 400px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-p {
  background: var(--gold); color: var(--green-dark);
  padding: 13px 22px; border-radius: 30px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-p:hover { background: var(--gold-light); }
.btn-s {
  background: rgba(255,255,255,0.07); color: #fff;
  padding: 12px 20px; border-radius: 30px;
  font-size: 13.5px; font-weight: 500;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
}
.btn-s:hover { background: rgba(255,255,255,0.13); }

/* ============================================
   PAGE SHARED COMPONENTS (pg-hero)
   ============================================ */
.pg-hero {
  min-height: 420px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.pg-hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.pg-hero-overlay {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  background: linear-gradient(to right, var(--green-dark) 0%, rgba(14,42,28,0.4) 40%, transparent 80%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* ============================================
   ABOUT + WHY CHOOSE
   ============================================ */
.aw-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: -120px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.about-col { display: grid; grid-template-columns: 1fr 1fr; }
.vase-photo { background: url('images/vase.png') left center / cover no-repeat; min-height: 400px; }
.about-text-box {
  background: var(--cream);
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ey {
  color: var(--gold); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px; display: block;
}
.at-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--green-dark); line-height: 1.28; margin-bottom: 4px;
}
.gd { display: flex; align-items: center; gap: 9px; margin: 12px 0 18px; }
.gd .gl { display: block; height: 1px; width: 40px; background: var(--gold); }
.gd .gs { color: var(--gold); font-size: 12px; }
.at-desc { color: var(--text-muted); font-size: 13.5px; line-height: 1.8; margin-bottom: 8px; }

/* Why Choose Right */
.why-col {
  background: #091b12; padding: 50px 36px;
  display: flex; flex-direction: column;
  justify-content: center; border-top-left-radius: 60px;
}
.why-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 2vw, 28px);
  color: #fff; text-align: center; line-height: 1.28;
}
.why-4 { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.wc4-icon {
  width: 75px; height: 75px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center;
  margin: 0 auto 12px; color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ============================================
   SECTIONS (SERVICES / CONTACT / TEAM)
   ============================================ */
.svc-grid-section, .contact-section, .team-section { background: var(--cream); padding: 72px 5%; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff; border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; overflow: hidden;
  transition: all 0.3s; text-align: center;
}
.team-card:hover { border-color: var(--gold); box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }

/* ============================================
   CTA BANNER & FOOTER
   ============================================ */
.cta-bar { background: var(--green-dark); padding: 36px 5%; position: relative; overflow: hidden; }
footer { background: var(--green-dark); border-top: 1px solid rgba(201,168,76,0.08); padding: 16px 5%; }
.foot-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.f-copy { color: rgba(255,255,255,0.36); font-size: 12px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .aw-wrap { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-logo img { height: 54px; }
  .pg-hero-photo, .pg-hero-overlay { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .foot-in { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-page .hero { background-image: url('images/team-hero.png'); }
.team-page .team-section { background: #fdfaf6; padding: 72px 4% 90px; }
.team-page .services-header-center { text-align: center; margin-bottom: 50px; }
.team-page .services-header-center h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.team-page .services-header-icon { color: var(--gold); font-size: 16px; }
.team-page .team-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}
.team-page .team-card {
  background: #f6f1e8;
  border: 1px solid rgba(201,168,76,0.09);
  border-radius: 14px;
  padding: 14px 14px 22px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 22px rgba(14,42,28,0.055);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-page .team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 34px rgba(14,42,28,0.11);
}
.team-page .team-photo {
  aspect-ratio: 1 / 1.1;
  border-radius: 9px 9px 14px 14px;
  background-image: url('images/team-hero.png');
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 18px;
}
.team-page .team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
.team-page .team-role { color: var(--green-dark); font-size: 0.8rem; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.team-page .team-card p { color: var(--text-muted); font-size: 0.78rem; line-height: 1.55; }
@media (max-width: 1100px) { .team-page .team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 768px) { .team-page .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .team-page .team-grid { grid-template-columns: 1fr; } }

/* Service cards do not currently contain photography, but retain the same
   image finish for any service imagery added to the existing cards. */
.services-page .serv-card img,
.services-page .serv-card .service-image {
  border-radius: 9px 9px 14px 14px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page .pg-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  margin-left: 4.5%;
  padding: 42px 0;
}
.contact-page .pg-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-page .pg-title,
.contact-page .contact-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: var(--green-dark);
}
.contact-page .pg-title {
  color: #fff;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.14;
  margin: 15px 0 0;
}
.contact-page .pg-gold { color: var(--gold); }
.contact-page .pg-divider,
.contact-page .contact-divider,
.contact-page .bc-div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-page .pg-divider { margin: 18px 0; }
.contact-page .pd-line,
.contact-page .cd-line {
  display: block;
  width: 58px;
  height: 1px;
  background: var(--gold);
}
.contact-page .pd-dot,
.contact-page .contact-divider span:not(.cd-line) { color: var(--gold); font-size: 12px; }
.contact-page .pg-desc {
  max-width: 490px;
  color: rgba(255,255,255,.83);
  font-size: 14px;
  line-height: 1.8;
}
.contact-page .pg-hero-arc {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 31%;
  height: 100%;
  pointer-events: none;
}
.contact-page .pg-hero-arc svg { width: 100%; height: 100%; }
.contact-page .pg-leaf-tr {
  position: absolute;
  right: 1.8%;
  bottom: 3%;
  z-index: 3;
  width: 175px;
  pointer-events: none;
}
.contact-page .contact-section {
  background: #fdfaf6;
  padding: 64px 5.5% 34px;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(45px, 5vw, 86px);
  max-width: 1360px;
  margin: 0 auto;
}
.contact-page .contact-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 225px;
  column-gap: 38px;
  align-content: start;
}
.contact-page .contact-left > .pg-eyebrow,
.contact-page .contact-left > .contact-title,
.contact-page .contact-left > .contact-divider,
.contact-page .contact-left > .contact-desc { grid-column: 1 / -1; }
.contact-page .contact-title {
  font-size: clamp(28px, 2.4vw, 37px);
  line-height: 1.18;
  margin-top: 10px;
}
.contact-page .contact-divider { margin: 14px 0 18px; }
.contact-page .contact-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.contact-page .contact-item {
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(14,42,28,.12);
}
.contact-page .contact-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--green-dark);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.18);
}
.contact-page .contact-item h4 {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  margin: 3px 0 6px;
}
.contact-page .contact-item p {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.65;
}
.contact-page .bc-card {
  grid-column: 2;
  grid-row: 5 / span 3;
  align-self: stretch;
  min-height: 286px;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 8px;
  background: rgba(246,241,232,.72);
  box-shadow: 0 8px 22px rgba(14,42,28,.035);
}
.contact-page .bc-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  border-radius: 50%;
  background: rgba(201,168,76,.16);
}
.contact-page .bc-card h4 {
  font-family: "Playfair Display", serif;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}
.contact-page .bc-div { justify-content: center; margin: 12px 0 13px; }
.contact-page .bc-div .cd-line { width: 35px; }
.contact-page .bc-card p { color: var(--text-muted); font-size: 11.5px; line-height: 1.75; }
.contact-page .contact-right {
  min-width: 0;
  padding-left: clamp(35px, 4vw, 72px);
  border-left: 1px solid rgba(201,168,76,.58);
}
.contact-page .contact-form { margin-top: 17px; }
.contact-page .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 12px; }
.contact-page input,
.contact-page select,
.contact-page textarea {
  width: 100%;
  border: 1px solid rgba(14,42,28,.16);
  border-radius: 7px;
  outline: none;
  background: transparent;
  color: var(--text-dark);
  font: 400 12px "Inter", sans-serif;
  padding: 13px 14px;
  transition: border-color .25s, box-shadow .25s;
}
.contact-page select { color: var(--text-muted); appearance: auto; }
.contact-page textarea { display: block; min-height: 105px; resize: vertical; margin-top: 12px; }
.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.contact-page .form-btn {
  border: 0;
  border-radius: 28px;
  background: var(--green-dark);
  color: var(--gold-light);
  cursor: pointer;
  padding: 12px 22px;
  margin-top: 13px;
  font: 600 12px "Inter", sans-serif;
}
.contact-page .form-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 16px;
}
.contact-page .footer-bar {
  background: var(--green-dark);
  padding: 22px 5.5%;
}
.contact-page .footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1420px;
  margin: 0 auto;
}
.contact-page .footer-bar-links { display: flex; align-items: center; gap: 34px; }
.contact-page .footer-bar .f-logo img {
  height: 50px !important;
  transform: scale(1.30);
  transform-origin: center;
}
.contact-page .footer-bar .cta-btn { border-radius: 6px; }
.contact-page footer { padding: 14px 5.5%; }

@media (max-width: 900px) {
  .contact-page .contact-grid { grid-template-columns: 1fr; }
  .contact-page .contact-right { padding: 42px 0 0; border: 0; border-top: 1px solid rgba(201,168,76,.58); }
  .contact-page .footer-bar-inner, .contact-page .footer-bar-links { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 620px) {
  .contact-page .footer-bar .f-logo img { height: 46px !important; }
  .contact-page .pg-hero-content { margin: 0; padding: 42px 7%; }
  .contact-page .pg-hero-arc, .contact-page .pg-leaf-tr { display: none; }
  .contact-page .contact-section { padding: 46px 7%; }
  .contact-page .contact-left { grid-template-columns: 1fr; }
  .contact-page .contact-item, .contact-page .bc-card { grid-column: 1; }
  .contact-page .bc-card { grid-row: auto; margin-top: 22px; }
  .contact-page .form-row { grid-template-columns: 1fr; }
  .contact-page .footer-bar-links { gap: 16px; }
  .contact-page .footer-bar-links .cta-vsep { display: none; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 50px; }
  .contact-page .footer-bar .f-logo img { height: 42px !important; }
}

/* Contact hero uses the supplied, full-width artwork while preserving the
   existing overlay and ornamental treatment. */
.contact-page .contact-hero {
  background: #071510 url('images/contact-hero.png') center center / cover no-repeat;
}
.contact-page .contact-hero .pg-hero-photo { display: none; }
.contact-page .contact-hero .pg-hero-overlay {
  left: 0;
  width: 100%;
  clip-path: none;
  background: linear-gradient(90deg, rgba(7,21,16,.28) 0%, rgba(7,21,16,.08) 56%, transparent 78%);
}
