/* ================================================================
   EMINENT HEALTHCARE SERVICES — SHARED STYLESHEET
   File: assets/css/style.css
   All pages link to this file.
================================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy:        #0e2a4a;
  --navy-mid:    #183d6b;
  --navy-light:  #1f4d87;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-pale:   #f5edd6;
  --teal:        #1a7a8a;
  --teal-light:  #22a8bc;
  --white:       #ffffff;
  --off-white:   #f8f6f1;
  --gray-light:  #e8e4dc;
  --gray-mid:    #9a9590;
  --text-dark:   #0d1b2a;
  --text-body:   #3a3530;
  --radius:      4px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 12px rgba(10,22,40,.07);
  --shadow-card: 0 8px 40px rgba(10,22,40,.12);
  --shadow-hover:0 20px 60px rgba(10,22,40,.20);
  --transition:  all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes marquee  { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes panelIn  { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }

.reveal { opacity:0; transform:translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.10s; }
.reveal-delay-2 { transition-delay:.20s; }
.reveal-delay-3 { transition-delay:.30s; }
.reveal-delay-4 { transition-delay:.40s; }

/* ================================================================
   TOPBAR
================================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.topbar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.topbar-left  { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar a     { color: rgba(255,255,255,.8); transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar i     { margin-right: 5px; color: var(--gold); font-size: .75rem; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 26px; height: 26px;
  border: 1px solid rgba(201,168,76,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; transition: var(--transition);
}
.topbar-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ================================================================
   NAVBAR
   ── Logo guidance ────────────────────────────────────────────
   Logo file: assets/images/logo.png  (transparent PNG, ≥ 400×160 px)
   Navbar height: 52px  |  Footer height: 56px
   To update: change src on .site-logo-img in every HTML file's <header>
================================================================ */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(10,22,40,.10); }

.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 88px; gap: 28px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo-img {
  height: 88px; width: auto;
  object-fit: contain; object-position: left center;
  display: block; max-width: 220px;
}
.logo-fallback { display: flex; flex-direction: column; line-height: 1.2; }
.logo-fallback-main { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:700; color:var(--navy); }
.logo-fallback-sub  { font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); font-weight:500; }
.logo-fallback.hidden { display:none; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: flex-end;
}
.nav-links > a, .nav-links > .nav-dropdown-wrap > a {
  padding: 8px 12px;
  font-size: .84rem; font-weight: 500; color: var(--navy);
  border-radius: var(--radius); transition: var(--transition);
  letter-spacing: .02em; position: relative; cursor: pointer;
  white-space: nowrap;
}
.nav-links > a::after,
.nav-links > .nav-dropdown-wrap > a::after {
  content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform .3s;
}
.nav-links > a:hover::after,
.nav-links > .nav-dropdown-wrap:hover > a::after { transform: scaleX(1); }
.nav-links > a:hover,
.nav-links > .nav-dropdown-wrap:hover > a { color: var(--navy-light); }

/* Enquiry CTA */
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 9px 18px !important; border-radius: 2px !important;
  font-size: .82rem !important; letter-spacing: .05em !important;
  margin-left: 8px; border: 1px solid var(--navy) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; }

/* ── Services Dropdown ───────────────────────────────────────── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-wrap > a .dropdown-caret { font-size: .6rem; margin-left: 4px; transition: transform .25s; }
.nav-dropdown-wrap:hover > a .dropdown-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(10,22,40,.14);
  min-width: 240px; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--white);
  border-top: none; filter: drop-shadow(0 -1px 0 var(--gray-light));
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; font-size: .86rem; color: var(--text-body);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--navy); }
.nav-dropdown a i { width: 18px; text-align: center; color: var(--teal); font-size: .9rem; }
.nav-dropdown .dd-label { display: flex; flex-direction: column; }
.nav-dropdown .dd-label span { font-size: .7rem; color: var(--gray-mid); margin-top: 1px; }
.nav-dropdown hr { border: none; border-top: 1px solid var(--gray-light); margin: 6px 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ================================================================
   MOBILE MENU
================================================================ */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 1000;
  flex-direction: column; align-items: center; justify-content: center;
  overflow-y: auto; padding: 60px 0 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer;
}
.mobile-menu > a, .mobile-nav-services-toggle {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--white); padding: 13px 40px; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s; cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'Cormorant Garamond', serif;
}
.mobile-menu > a:last-of-type { border-bottom: none; }
.mobile-menu > a:hover, .mobile-nav-services-toggle:hover { color: var(--gold-light); }
.mobile-nav-services-submenu {
  display: none; width: 100%; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-services-submenu.open { display: block; }
.mobile-nav-services-submenu a {
  display: block; color: rgba(255,255,255,.75); font-size: 1rem;
  padding: 12px 48px; border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: 'DM Sans', sans-serif; font-weight: 400;
}
.mobile-nav-services-submenu a:hover { color: var(--gold-light); }
.mobile-menu-social { display: flex; gap: 14px; margin-top: 28px; }
.mobile-menu-social a {
  width: 44px; height: 44px; border: 1px solid rgba(201,168,76,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8);
  font-size: 1rem; transition: var(--transition);
}
.mobile-menu-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ================================================================
   ABOUT PANEL
================================================================ */
.about-panel {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(10,22,40,.65); backdrop-filter: blur(6px);
  overflow-y: auto; padding: 40px 20px;
}
.about-panel.open { display: flex; align-items: flex-start; justify-content: center; }
.about-panel-inner {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 960px; width: 100%; padding: 60px 64px;
  position: relative; animation: panelIn .4s cubic-bezier(.4,0,.2,1) both;
}
.about-panel-close {
  position: absolute; top: 22px; right: 26px;
  background: var(--off-white); border: none; border-radius: 50%;
  width: 38px; height: 38px; font-size: .9rem; cursor: pointer;
  color: var(--navy); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.about-panel-close:hover { background: var(--navy); color: var(--white); }
.about-panel-label { font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:12px; }
.about-panel-title { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:700; color:var(--navy); line-height:1.15; margin-bottom:22px; }
.about-panel-title em { font-style:italic; color:var(--teal); }
.about-panel-lead { font-size:1rem; color:var(--text-body); line-height:1.85; margin-bottom:18px; }
.about-panel-body { font-size:.92rem; color:var(--gray-mid); line-height:1.9; margin-bottom:18px; }
.about-panel-pillars { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:32px; }
.about-pillar-card { padding:26px; background:var(--off-white); border-radius:var(--radius); border-left:3px solid var(--gold); transition:var(--transition); }
.about-pillar-card:hover { box-shadow:var(--shadow-card); transform:translateY(-2px); }
.about-pillar-card i { color:var(--teal); font-size:1.3rem; margin-bottom:10px; }
.about-pillar-card h4 { font-size:.94rem; font-weight:600; color:var(--navy); margin-bottom:7px; }
.about-pillar-card p { font-size:.81rem; color:var(--gray-mid); line-height:1.7; }
.about-panel-vision { margin-top:32px; padding:28px; background:var(--navy); border-radius:var(--radius-lg); }
.about-panel-vision h4 { font-family:'Cormorant Garamond',serif; font-size:1.25rem; color:var(--gold-light); margin-bottom:10px; }
.about-panel-vision p { font-size:.87rem; color:rgba(255,255,255,.7); line-height:1.85; }

/* ================================================================
   SECTION COMMONS
================================================================ */
section { padding: 96px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:12px;
  display:flex; align-items:center; gap:10px;
}
.section-label::before { content:''; display:block; width:32px; height:1.5px; background:var(--gold); }

.section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.9rem,3.2vw,2.75rem); font-weight:700;
  color:var(--navy); line-height:1.2; margin-bottom:18px;
}
.section-title em { font-style:italic; color:var(--teal); }
.section-desc { font-size:.98rem; color:var(--gray-mid); max-width:600px; line-height:1.85; }

.section-header { margin-bottom:52px; }
.section-header.center { text-align:center; }
.section-header.center .section-label { justify-content:center; }
.section-header.center .section-label::before { display:none; }
.section-header.center .section-desc { margin:0 auto; }

/* Buttons */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--gold); color:var(--navy);
  padding:14px 30px; font-size:.9rem; font-weight:600; letter-spacing:.04em;
  border-radius:2px; transition:var(--transition); border:2px solid var(--gold);
}
.btn-primary:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 28px rgba(201,168,76,.35); }
.btn-primary.teal  { background:var(--teal); border-color:var(--teal); color:var(--white); }
.btn-primary.teal:hover { background:var(--teal-light); border-color:var(--teal-light); }
.btn-primary.navy  { background:var(--navy); border-color:var(--navy); color:var(--white); }
.btn-primary.navy:hover { background:var(--navy-light); border-color:var(--navy-light); }
.btn-outline {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--white);
  padding:14px 28px; font-size:.9rem; font-weight:500; letter-spacing:.03em;
  border-radius:2px; transition:var(--transition); border:1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.7); transform:translateY(-2px); }
.btn-whatsapp {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--white);
  padding:14px 28px; font-size:.9rem; font-weight:500; letter-spacing:.03em;
  border-radius:2px; transition:var(--transition); border:1.5px solid rgba(255,255,255,.38);
}
.btn-whatsapp:hover { background:#25D366; border-color:#25D366; transform:translateY(-2px); }

/* ================================================================
   HERO (HOMEPAGE — SLIDER)
================================================================ */
.hero {
  position:relative; min-height:96vh;
  display:flex; align-items:center; overflow:hidden;
}
.hero-slides { position:absolute; inset:0; }
.hero-slide {
  position:absolute; inset:0; opacity:0;
  background-size:cover; background-position:center center;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
}
.hero-slide.active { opacity:1; }

/* 4 premium copyright-free Unsplash images */
.hero-slide:nth-child(1){
  background-image:
    linear-gradient(135deg,rgba(8,16,32,.88) 0%,rgba(10,22,40,.75) 55%,rgba(26,122,138,.38) 100%),
    url('https://images.unsplash.com/photo-1551076805-e1869033e561?w=1920&auto=format&fit=crop&q=80');
}
.hero-slide:nth-child(2){
  background-image:
    linear-gradient(135deg,rgba(8,16,32,.88) 0%,rgba(10,22,40,.75) 55%,rgba(26,122,138,.38) 100%),
    url('https://images.unsplash.com/photo-1516841273335-e39b37888115?w=1920&auto=format&fit=crop&q=80');
}
.hero-slide:nth-child(3){
  background-image:
    linear-gradient(135deg,rgba(8,16,32,.88) 0%,rgba(10,22,40,.75) 55%,rgba(26,122,138,.38) 100%),
    url(https://images.unsplash.com/photo-1504439468489-c8920d796a29?w=1920&auto=format&fit=crop&q=80);
}
.hero-slide:nth-child(4){
  background-image:
    linear-gradient(135deg,rgba(8,16,32,.88) 0%,rgba(10,22,40,.75) 55%,rgba(26,122,138,.38) 100%),
    url('https://images.unsplash.com/photo-1543333995-a78aea2eee50?w=1920&auto=format&fit=crop&q=80');
}

.hero-slide-dots { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:5; }
.hero-dot { width:8px; height:8px; border-radius:50%; border:1.5px solid rgba(255,255,255,.5); background:transparent; cursor:pointer; transition:var(--transition); padding:0; }
.hero-dot.active { background:var(--gold); border-color:var(--gold); width:26px; border-radius:4px; }

.hero-content { position:relative; z-index:2; width:100%; }
.hero-inner { max-width:1320px; margin:0 auto; padding:120px 24px 140px; }
.hero-inner-text { max-width:680px; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,.14); border:1px solid rgba(201,168,76,.38);
  color:var(--gold-light); font-size:.72rem; letter-spacing:.15em; text-transform:uppercase;
  padding:6px 16px; border-radius:2px; margin-bottom:28px;
  animation:fadeUp .8s ease both;
}
.hero-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,5.5vw,4.8rem); font-weight:700;
  color:var(--white); line-height:1.12; margin-bottom:22px;
  animation:fadeUp .8s .12s ease both;
}
.hero-title em { font-style:italic; color:var(--gold-light); }
.hero-subtitle {
  font-size:1.08rem; color:rgba(255,255,255,.72); margin-bottom:42px;
  font-weight:300; line-height:1.85;
  animation:fadeUp .8s .24s ease both;
}
.hero-actions {
  display:flex; gap:16px; flex-wrap:wrap;
  animation:fadeUp .8s .36s ease both;
}
.hero-scroll-hint {
  margin-top:60px; display:flex; align-items:center; gap:12px;
  color:rgba(255,255,255,.4); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  animation:fadeIn 1.2s .8s ease both;
}
.hero-scroll-hint::before { content:''; display:block; width:1px; height:40px; background:rgba(255,255,255,.25); }

/* Service page hero (static) */
.page-hero {
  position:relative; min-height:56vh;
  display:flex; align-items:center; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(8,16,32,.90) 0%,rgba(10,22,40,.78) 55%,rgba(26,122,138,.40) 100%); }
.page-hero-content { position:relative; z-index:2; max-width:1320px; margin:0 auto; padding:100px 24px 80px; }
.page-hero-content .hero-badge { animation:none; }
.page-hero-content .hero-title { font-size:clamp(2.6rem,4.5vw,4rem); animation:none; }
.page-hero-content .hero-subtitle { animation:none; }
.page-hero-content .hero-actions { animation:none; }
.page-hero-breadcrumb {
  display:flex; align-items:center; gap:8px;
  color:rgba(255,255,255,.5); font-size:.78rem; margin-bottom:24px;
}
.page-hero-breadcrumb a { color:rgba(255,255,255,.5); }
.page-hero-breadcrumb a:hover { color:var(--gold-light); }
.page-hero-breadcrumb .sep { color:rgba(255,255,255,.3); }

/* ================================================================
   HOSPITAL PARTNERS — LOGO MARQUEE
   ── How to add / replace hospital logos ─────────────────────
   1. Place PNG files in:  assets/images/hospitals/
   2. Recommended size:    300 × 120 px, transparent background
   3. Naming convention:   apollo.png  kokilaben.png  nanavati.png etc.
   4. In the HTML, locate the .hosp-logo-track div and update the
      <img src="..."> for each hospital card.
   5. The marquee duplicates all logos for seamless looping — make sure
      BOTH sets (first and duplicate) are updated.
================================================================ */
.hospitals-section { background:var(--white); padding:72px 0; overflow:hidden; }
.hosp-stats-row {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--gray-light);
  border:1px solid var(--gray-light); border-radius:var(--radius-lg);
  overflow:hidden; margin-bottom:60px; box-shadow:var(--shadow-sm);
}
.hosp-stat-cell { background:var(--white); padding:36px 28px; text-align:center; transition:var(--transition); }
.hosp-stat-cell:hover { background:var(--navy); }
.hosp-stat-cell:hover .hs-num { color:var(--gold-light); }
.hosp-stat-cell:hover .hs-label { color:rgba(255,255,255,.6); }
.hs-num { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:700; color:var(--navy); line-height:1; transition:color .3s; }
.hs-num span { color:var(--gold); }
.hs-label { font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-mid); margin-top:8px; transition:color .3s; }

/* Marquee track */
.hosp-marquee-label { text-align:center; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gray-mid); margin-bottom:28px; font-weight:500; }
.hosp-track-wrap { position:relative; overflow:hidden; }
.hosp-track-wrap::before,
.hosp-track-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2;
}
.hosp-track-wrap::before { left:0; background:linear-gradient(to right,var(--white),transparent); }
.hosp-track-wrap::after  { right:0; background:linear-gradient(to left, var(--white),transparent); }
.hosp-logo-track {
  display:flex; gap:24px; padding:8px 0;
  animation:marquee 38s linear infinite;
  width:max-content;
}
.hosp-logo-track:hover { animation-play-state:paused; }

/* Individual logo card */
.hosp-logo-card {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; width:160px; flex-shrink:0;
  background:var(--off-white); border:1px solid var(--gray-light); border-radius:10px;
  padding:18px 16px; transition:var(--transition); text-align:center;
}
.hosp-logo-card:hover { border-color:var(--gold); box-shadow:0 4px 20px rgba(201,168,76,.12); transform:translateY(-2px); background:var(--white); }
/* Logo image (add real logo via img tag) */
.hosp-logo-card img {
  height:44px; width:auto; max-width:130px;
  object-fit:contain; object-position:center;
  filter:grayscale(0%) brightness(1); opacity:1;
  transition:var(--transition);
}
.hosp-logo-card:hover img { filter:grayscale(0%) brightness(1); opacity:1; }
/* Icon placeholder shown when no image is provided */
.hosp-icon-placeholder {
  width:44px; height:44px; border-radius:8px;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); font-size:1.1rem; transition:var(--transition);
}
.hosp-logo-card:hover .hosp-icon-placeholder { background:var(--gold); color:var(--navy); }
.hosp-card-name { font-size:.72rem; font-weight:600; color:var(--navy); line-height:1.25; }

/* ================================================================
   SERVICES GRID
================================================================ */
.services-section { background:var(--off-white); }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.service-card {
  background:var(--white); border:1px solid var(--gray-light);
  border-radius:var(--radius-lg); padding:38px 26px; text-align:center;
  transition:var(--transition); position:relative; overflow:hidden;
  display:flex; flex-direction:column;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--teal));
  transform:scaleX(0); transition:transform .4s ease;
}
.service-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-6px); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon {
  width:70px; height:70px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 22px; font-size:1.6rem; transition:var(--transition);
}
.service-card:hover .service-icon { transform:scale(1.1) rotate(-5deg); }
.icon-Travel   { background:rgba(201,168,76,.1);  color:var(--gold); }
.icon-equipment { background:rgba(26,122,138,.1);  color:var(--teal); }
.icon-consulting{ background:rgba(10,22,40,.08);   color:var(--navy); }
.icon-hr        { background:rgba(180,60,60,.08);  color:#b43c3c; }
.service-tag    { font-size:.65rem; letter-spacing:.15em; text-transform:uppercase; color:var(--gray-mid); margin-bottom:10px; }
.service-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:700; color:var(--navy); margin-bottom:12px; line-height:1.2; }
.service-card p  { font-size:.84rem; color:var(--gray-mid); line-height:1.75; flex:1; margin-bottom:26px; }
.service-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  padding:10px 20px; font-size:.82rem; font-weight:600; letter-spacing:.05em;
  border-radius:2px; transition:var(--transition); border:1.5px solid; cursor:pointer;
}
.service-btn.gold  { border-color:var(--gold);  color:var(--gold);  }
.service-btn.gold:hover  { background:var(--gold);  color:var(--navy);  }
.service-btn.teal  { border-color:var(--teal);  color:var(--teal);  }
.service-btn.teal:hover  { background:var(--teal);  color:var(--white); }
.service-btn.navy  { border-color:var(--navy);  color:var(--navy);  }
.service-btn.navy:hover  { background:var(--navy);  color:var(--white); }
.service-btn.red   { border-color:#b43c3c;      color:#b43c3c;      }
.service-btn.red:hover   { background:#b43c3c;      color:var(--white); }

/* ================================================================
   ADVANTAGE
================================================================ */
.advantage { background:var(--navy); padding:96px 0; }
.advantage .section-title { color:var(--white); }
.advantage .section-desc  { color:rgba(255,255,255,.62); max-width:680px; }
.advantage .section-label { color:var(--gold-light); }
.advantage .section-label::before { background:var(--gold-light); }
.advantage-kicker {
  font-family:'Cormorant Garamond',serif; font-size:.82rem;
  letter-spacing:.25em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; font-weight:600;
}
.advantage-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:52px; }
.advantage-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); padding:38px 26px;
  transition:var(--transition); position:relative; overflow:hidden;
}
.advantage-card::after {
  content:attr(data-num); position:absolute; bottom:-20px; right:14px;
  font-family:'Cormorant Garamond',serif; font-size:6rem; font-weight:700;
  color:rgba(255,255,255,.03); line-height:1; pointer-events:none;
}
.advantage-card:hover { background:rgba(255,255,255,.07); transform:translateY(-6px); border-color:rgba(201,168,76,.25); }
.adv-icon {
  width:58px; height:58px; border-radius:12px;
  background:rgba(201,168,76,.12); border:1px solid rgba(201,168,76,.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); font-size:1.4rem; margin-bottom:22px; transition:var(--transition);
}
.advantage-card:hover .adv-icon { background:var(--gold); color:var(--navy); }
.advantage-card h4 { font-size:1rem; font-weight:600; color:var(--white); margin-bottom:12px; }
.advantage-card p  { font-size:.83rem; color:rgba(255,255,255,.57); line-height:1.8; }

/* ================================================================
   WHY INDIA
================================================================ */
.why-india { background:var(--white); }
.why-grid  { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.why-list  { display:flex; flex-direction:column; gap:16px; margin-top:28px; }
.why-item  { display:flex; gap:18px; align-items:flex-start; padding:16px; border-radius:var(--radius); transition:var(--transition); }
.why-item:hover { background:var(--off-white); }
.why-num { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:700; color:var(--gold-pale); line-height:1; min-width:38px; }
.why-item h4 { font-size:.94rem; font-weight:600; color:var(--navy); margin-bottom:5px; }
.why-item p  { font-size:.83rem; color:var(--gray-mid); line-height:1.7; }
.why-visual  { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.why-card { background:var(--navy); border-radius:var(--radius-lg); padding:30px 22px; color:var(--white); text-align:center; }
.why-card:first-child { grid-column:span 2; background:linear-gradient(135deg,var(--navy),var(--teal)); }
.why-card-num { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:700; color:var(--gold-light); }
.why-card p   { font-size:.75rem; color:rgba(255,255,255,.65); letter-spacing:.06em; text-transform:uppercase; margin-top:6px; }

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact { background:var(--off-white); }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start; }
.contact-info h3 { font-family:'Cormorant Garamond',serif; font-size:1.55rem; font-weight:700; color:var(--navy); margin-bottom:18px; }
.contact-info > p { font-size:.9rem; color:var(--gray-mid); line-height:1.8; margin-bottom:32px; }
.contact-item { display:flex; gap:15px; align-items:flex-start; margin-bottom:22px; }
.contact-icon { width:42px; height:42px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold-light); font-size:.88rem; flex-shrink:0; }
.contact-item h5 { font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-mid); margin-bottom:4px; }
.contact-item a, .contact-item span, .contact-item address { font-size:.88rem; color:var(--navy); font-weight:500; font-style:normal; line-height:1.6; }
.contact-item a:hover { color:var(--teal); }
.contact-socials { display:flex; gap:10px; margin-top:32px; }
.social-btn { width:40px; height:40px; border:1.5px solid var(--gray-light); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--navy); font-size:.84rem; transition:var(--transition); }
.social-btn:hover { border-color:var(--gold); color:var(--gold); background:rgba(201,168,76,.06); }

.contact-form-wrap { background:var(--white); border-radius:var(--radius-lg); padding:44px; box-shadow:var(--shadow-card); }
.contact-form-wrap h3 { font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.contact-form-wrap > p { font-size:.84rem; color:var(--gray-mid); margin-bottom:26px; }
.form-group { margin-bottom:15px; }
.form-group label { font-size:.77rem; font-weight:600; color:var(--navy); letter-spacing:.05em; text-transform:uppercase; display:block; margin-bottom:7px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:11px 15px; border:1.5px solid var(--gray-light);
  border-radius:var(--radius); font-family:'DM Sans',sans-serif;
  font-size:.88rem; color:var(--text-dark); transition:border-color .2s;
  outline:none; background:var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--teal); box-shadow:0 0 0 3px rgba(26,122,138,.08);
}
.form-group textarea { resize:vertical; min-height:105px; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.btn-submit {
  width:100%; padding:13px; background:var(--navy); color:var(--white);
  border:none; border-radius:var(--radius); font-family:'DM Sans',sans-serif;
  font-size:.9rem; font-weight:600; letter-spacing:.06em; cursor:pointer;
  transition:var(--transition); margin-top:6px;
}
.btn-submit:hover { background:var(--teal); transform:translateY(-1px); }
.form-status { margin-top:10px; font-size:.84rem; text-align:center; padding:10px; border-radius:var(--radius); display:none; }
.form-status.success { background:rgba(26,122,138,.1); color:var(--teal); display:block; }
.form-status.error   { background:rgba(180,60,60,.08);  color:#b43c3c;    display:block; }

/* ================================================================
   SERVICE DETAIL LAYOUTS (used on individual service pages)
================================================================ */
.sd-section { padding:88px 0; }
.sd-section.dark    { background:var(--navy); }
.sd-section.light   { background:var(--white); }
.sd-section.alt     { background:var(--off-white); }
.sd-section.teal-bg { background:linear-gradient(135deg,var(--teal) 0%,#0f5a68 100%); }

/* Dark section typography overrides */
.sd-section.dark .section-title   { color:var(--white); }
.sd-section.dark .section-desc    { color:rgba(255,255,255,.65); max-width:700px; }
.sd-section.dark .section-label   { color:var(--gold-light); }
.sd-section.dark .section-label::before { background:var(--gold-light); }
.sd-section.teal-bg .section-label { color:var(--gold-light); }
.sd-section.teal-bg .section-label::before { background:var(--gold-light); }

/* Cards grid on service detail pages */
.sd-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.sd-card { padding:30px 22px; border-radius:var(--radius-lg); transition:var(--transition); }
.sd-section.dark .sd-card    { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); }
.sd-section.dark .sd-card:hover { background:rgba(255,255,255,.09); transform:translateY(-4px); }
.sd-section.light .sd-card   { background:var(--off-white); border:1px solid var(--gray-light); }
.sd-section.light .sd-card:hover  { box-shadow:var(--shadow-card); transform:translateY(-4px); border-color:var(--teal); }
.sd-section.alt .sd-card     { background:var(--white); border:1px solid var(--gray-light); }
.sd-section.alt .sd-card:hover    { box-shadow:var(--shadow-card); transform:translateY(-4px); border-color:var(--gold); }
.sd-section.teal-bg .sd-card { background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.16); }
.sd-section.teal-bg .sd-card:hover { background:rgba(255,255,255,.18); transform:translateY(-4px); }
.sd-card i  { font-size:1.8rem; margin-bottom:16px; }
.sd-section.dark .sd-card i    { color:var(--gold-light); }
.sd-section.light .sd-card i   { color:var(--teal); }
.sd-section.alt .sd-card i     { color:var(--gold); }
.sd-section.teal-bg .sd-card i { color:var(--gold-light); }
.sd-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:600; margin-bottom:9px; line-height:1.2; }
.sd-section.dark .sd-card h4    { color:var(--white); }
.sd-section.light .sd-card h4   { color:var(--navy); }
.sd-section.alt .sd-card h4     { color:var(--navy); }
.sd-section.teal-bg .sd-card h4 { color:var(--white); }
.sd-card p  { font-size:.82rem; line-height:1.75; }
.sd-section.dark .sd-card p    { color:rgba(255,255,255,.58); }
.sd-section.light .sd-card p   { color:var(--gray-mid); }
.sd-section.alt .sd-card p     { color:var(--gray-mid); }
.sd-section.teal-bg .sd-card p { color:rgba(255,255,255,.72); }

/* Split layout (content + image) */
.sd-split { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.sd-split-visual img { width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-hover); object-fit:cover; aspect-ratio:4/5; }
.sd-split-visual { position:relative; }
.sd-visual-badge {
  position:absolute; bottom:-18px; right:-18px;
  background:var(--gold); color:var(--navy);
  padding:18px 22px; border-radius:var(--radius-lg);
  text-align:center; box-shadow:var(--shadow-card);
}
.sd-visual-badge strong { display:block; font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:700; line-height:1; }
.sd-visual-badge span   { font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; }

/* Feature list (equipment-style) */
.feat-list { display:flex; flex-direction:column; gap:18px; margin-top:32px; }
.feat-item { display:flex; gap:16px; padding:18px; border-radius:var(--radius); background:var(--off-white); border:1px solid var(--gray-light); align-items:flex-start; transition:var(--transition); }
.feat-item:hover { border-color:var(--teal); box-shadow:var(--shadow-sm); }
.feat-icon { width:42px; height:42px; border-radius:var(--radius); flex-shrink:0; background:var(--teal); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:.95rem; }
.feat-item h4 { font-size:.91rem; font-weight:600; color:var(--navy); margin-bottom:4px; }
.feat-item p  { font-size:.81rem; color:var(--gray-mid); line-height:1.7; }

/* CTA row inside service sections */
.sd-cta { margin-top:48px; padding-top:44px; text-align:center; }
.sd-section.dark .sd-cta    { border-top:1px solid rgba(255,255,255,.1); }
.sd-section.light .sd-cta   { border-top:1px solid var(--gray-light); }
.sd-section.alt .sd-cta     { border-top:1px solid var(--gray-light); }
.sd-section.teal-bg .sd-cta { border-top:1px solid rgba(255,255,255,.15); }
.sd-cta p { margin-bottom:22px; font-size:.94rem; }
.sd-section.dark .sd-cta p    { color:rgba(255,255,255,.65); }
.sd-section.light .sd-cta p   { color:var(--gray-mid); }
.sd-section.alt .sd-cta p     { color:var(--gray-mid); }
.sd-section.teal-bg .sd-cta p { color:rgba(255,255,255,.65); }

/* Process steps */
.process-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; margin-top:52px; }
.process-steps::before { content:''; position:absolute; top:30px; left:10%; right:10%; height:1px; background:linear-gradient(90deg,var(--gold),var(--teal)); }
.process-step { text-align:center; padding:0 10px; position:relative; }
.step-num {
  width:62px; height:62px; border-radius:50%; background:var(--navy);
  color:var(--gold-light); font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
  position:relative; z-index:1; border:3px solid var(--white); box-shadow:0 0 0 1px var(--gold); transition:var(--transition);
}
.process-step:hover .step-num { background:var(--gold); color:var(--navy); }
.process-step h4 { font-size:.86rem; font-weight:600; color:var(--navy); margin-bottom:7px; }
.process-step p  { font-size:.76rem; color:var(--gray-mid); line-height:1.6; }

/* Specialties grid */
.spec-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.spec-card { background:var(--white); border-radius:var(--radius); padding:26px 18px; text-align:center; border:1px solid var(--gray-light); transition:var(--transition); }
.spec-card:hover { border-color:var(--teal); transform:translateY(-4px); box-shadow:var(--shadow-card); }
.spec-card i  { font-size:1.8rem; color:var(--teal); margin-bottom:13px; }
.spec-card h4 { font-size:.86rem; font-weight:600; color:var(--navy); line-height:1.3; }

/* Testimonials */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card { background:var(--white); border-radius:var(--radius-lg); padding:34px 28px; border:1px solid var(--gray-light); transition:var(--transition); }
.testi-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-4px); border-color:rgba(201,168,76,.3); }
.testi-quote { font-family:'Cormorant Garamond',serif; font-size:5rem; color:var(--gold-pale); line-height:.6; margin-bottom:18px; font-weight:700; }
.testi-stars { display:flex; gap:3px; margin-bottom:16px; }
.testi-stars i { color:var(--gold); font-size:.88rem; }
.testi-text { font-size:.88rem; color:var(--text-body); line-height:1.85; font-style:italic; margin-bottom:26px; }
.testi-author { display:flex; align-items:center; gap:13px; }
.testi-avatar {
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:700; flex-shrink:0;
}
.testi-name   { font-size:.86rem; font-weight:600; color:var(--navy); }
.testi-detail { font-size:.73rem; color:var(--gray-mid); margin-top:2px; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background:var(--navy); color:rgba(255,255,255,.75); padding:76px 0 0; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:44px;
  padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.08);
}
/* Footer logo — same file as navbar */
.footer-logo-img {
  height:56px; width:auto; max-width:180px;
  object-fit:contain; object-position:left center; margin-bottom:14px; display:block;
}
.footer-brand-name { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:700; color:var(--white); margin-bottom:4px; }
.footer-brand-tag  { font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.footer-brand > p  { font-size:.81rem; line-height:1.8; color:rgba(255,255,255,.55); max-width:270px; margin-bottom:22px; }
.footer-socials { display:flex; gap:9px; }
.footer-social-btn {
  width:34px; height:34px; border:1px solid rgba(201,168,76,.3); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.6); font-size:.78rem; transition:var(--transition);
}
.footer-social-btn:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.footer-col h5 { font-size:.73rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:18px; }
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:.83rem; color:rgba(255,255,255,.6); transition:color .2s; cursor:pointer; }
.footer-col ul li a:hover { color:var(--gold-light); }
.footer-contact-list { display:flex; flex-direction:column; gap:13px; }
.footer-contact-item { display:flex; gap:11px; align-items:flex-start; }
.footer-contact-item i { color:var(--gold); font-size:.83rem; margin-top:3px; flex-shrink:0; }
.footer-contact-item a, .footer-contact-item span, .footer-contact-item address { font-size:.8rem; color:rgba(255,255,255,.65); line-height:1.5; font-style:normal; }
.footer-contact-item a:hover { color:var(--gold-light); }
.footer-bottom {
  padding:22px 0; display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:10px;
}
.footer-bottom p { font-size:.76rem; color:rgba(255,255,255,.4); }
.footer-bottom a { color:rgba(255,255,255,.55); transition:color .2s; font-size:.76rem; }
.footer-bottom a:hover { color:var(--gold-light); }
.footer-bottom-links { display:flex; gap:22px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width:1100px) {
  .services-grid   { grid-template-columns:repeat(2,1fr); }
  .advantage-cards { grid-template-columns:repeat(2,1fr); }
  .spec-grid       { grid-template-columns:repeat(3,1fr); }
  .process-steps   { grid-template-columns:repeat(3,1fr); row-gap:32px; }
  .process-steps::before { display:none; }
  .sd-cards        { grid-template-columns:repeat(2,1fr); }
  .sd-split        { grid-template-columns:1fr; gap:44px; }
  .sd-split-visual { display:none; }
  .hosp-stats-row  { grid-template-columns:repeat(3,1fr); }
  .testi-grid      { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .nav-links    { display:none; }
  .nav-hamburger{ display:flex; }
  .why-grid     { grid-template-columns:1fr; gap:44px; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid  { grid-template-columns:1fr 1fr; }
  .about-panel-inner   { padding:36px 24px; }
  .about-panel-pillars { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  section { padding:60px 0; }
  .topbar { display:none; }
  .services-grid   { grid-template-columns:1fr; }
  .advantage-cards { grid-template-columns:1fr; }
  .spec-grid       { grid-template-columns:repeat(2,1fr); }
  .sd-cards        { grid-template-columns:1fr; }
  .testi-grid      { grid-template-columns:1fr; }
  .process-steps   { grid-template-columns:1fr 1fr; row-gap:24px; }
  .contact-form-wrap { padding:24px 18px; }
  .footer-grid     { grid-template-columns:1fr; gap:32px; }
  .footer-bottom   { flex-direction:column; text-align:center; }
  .footer-bottom-links { gap:14px; }
  .form-row-2      { grid-template-columns:1fr; }
  .why-visual      { grid-template-columns:1fr 1fr; }
  .hosp-stats-row  { grid-template-columns:1fr 1fr; }
  .hero-title      { font-size:2.4rem; }
  .hero-actions    { flex-direction:column; align-items:flex-start; }
}
