@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root{
  --primary-color:#9A3468;
  --secondary-color:#F4F5FF;
  --text-color:#666666;
  --accent-color:#F58634;
  --white-color:#FFFFFF;
  --divider-color:#20296E1A;
}

body{
  font-family:'Onest',sans-serif;
  background:#fff;
  color:var(--text-color);
}

h1,h2,h3,h4,h5,h6{
  font-family:'Onest',sans-serif;
  color:var(--primary-color);
  font-weight:700;
  letter-spacing:0;
}

.container{max-width:1300px;}

.theme-topbar{
  display:none;
  width:100%;
  max-width:1480px;
  margin:0 auto;
  padding:15px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--text-color);
  font-size:14px;
  background:#fff;
  line-height:1.2;
}
.theme-topbar ul{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.theme-topbar li{
  display:flex;
  align-items:center;
  gap:9px;
}
.theme-topbar img.icon{
  width:16px;
  height:16px;
}
.theme-topbar .powered{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.theme-topbar .powered img{
  height:28px;
  width:auto;
}

header.site-header{
  position:sticky;
  top:0;
  background:var(--primary-color);
  border-bottom:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}
.nav-wrap{
  max-width:1480px;
  padding:0 32px;
  min-height:96px;
}
.brand img{
  content:url('elara-updated-logo.png');
  height:76px;
  background:#fff;
  border-radius:8px;
  padding:6px 10px;
}
nav.main-nav a{
  color:#fff;
  font-size:16px;
  font-weight:600;
  text-transform:capitalize;
}
nav.main-nav a.active,
nav.main-nav a:hover{
  color:var(--accent-color);
}
nav.main-nav a.active::after{
  background:var(--accent-color);
}
.menu-toggle svg{color:#fff;}

.btn{
  position:relative;
  border-radius:10px;
  padding:15px 24px;
  font-weight:700;
  overflow:hidden;
  line-height:1;
}
.btn-primary,
.btn-orange{
  background:var(--accent-color);
  color:#fff;
  border-color:var(--accent-color);
}
.btn-primary:hover,
.btn-orange:hover{
  background:var(--primary-color);
  border-color:var(--primary-color);
}
.btn-secondary{
  border-color:var(--primary-color);
  color:var(--primary-color);
  background:#fff;
}

.hero{
  position:relative;
  background:
    linear-gradient(rgba(154,52,104,.82), rgba(154,52,104,.82)),
    url('live-theme/images/page-header-bg.jpg') center/cover no-repeat;
  padding:205px 0 120px;
  margin-top:-96px;
  min-height:760px;
  display:flex;
  align-items:center;
}
.hero-grid{
  display:block;
  text-align:center;
}
.hero .eyebrow{
  color:#fff;
  justify-content:center;
  margin-bottom:18px;
}
.hero .eyebrow::before{
  background:var(--accent-color);
}
.hero h1{
  color:#fff;
  font-size:clamp(46px,6vw,86px);
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  text-transform:none;
}
.hero .sub{
  color:rgba(255,255,255,.88);
  font-size:18px;
  max-width:850px;
  margin-left:auto;
  margin-right:auto;
}
.hero .cta-row{
  justify-content:center;
  margin-top:14px;
}
.hero-art{
  display:none;
}
.hero-art svg{display:none;}

section{padding:100px 0;}
.section-alt{background:var(--secondary-color);}
.grid{gap:30px;}
.section-head h2{
  font-size:clamp(34px,4vw,54px);
}
.section-head p,
p{color:var(--text-color);}
.eyebrow{
  color:var(--accent-color);
  letter-spacing:0;
  text-transform:none;
  font-size:16px;
  font-weight:700;
}

.card{
  border-radius:20px;
  border:1px solid var(--divider-color);
  box-shadow:none;
  padding:32px;
  background:#fff;
  min-height:100%;
}
.card:hover{
  box-shadow:0 18px 48px rgba(32,41,110,.10);
}
.card .icon{
  background:var(--secondary-color);
  color:var(--primary-color);
  border-radius:50%;
  width:56px;
  height:56px;
}
.card.orange .icon{
  background:rgba(245,134,52,.16);
  color:var(--accent-color);
}

.stats-band{
  background:
    linear-gradient(rgba(154,52,104,.86), rgba(154,52,104,.86)),
    url('live-theme/images/fact-img-1.jpg') center/cover no-repeat;
  margin-top:0;
}
.stat-item strong{
  font-family:'Onest',sans-serif;
  font-weight:800;
}

.process-step .num .dot{
  background:var(--accent-color);
}
.process-step .num{
  color:var(--primary-color);
}
.process-line{
  background:repeating-linear-gradient(90deg,var(--accent-color) 0 8px, transparent 8px 16px);
}

.growth-journey-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.growth-journey-card{
  appearance:none;
  border:1px solid rgba(32,41,110,.10);
  background:#fff;
  border-radius:24px;
  padding:26px;
  min-height:280px;
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:14px;
  box-shadow:0 14px 36px rgba(32,41,110,.08);
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.growth-journey-card:hover,
.growth-journey-card.is-open{
  transform:translateY(-6px);
  box-shadow:0 22px 54px rgba(154,52,104,.14);
  border-color:rgba(245,134,52,.34);
}
.journey-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--accent-color);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.journey-badge{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--accent-color);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  box-shadow:0 10px 20px rgba(245,134,52,.24);
}
.journey-title{
  color:var(--primary-color);
  font-size:22px;
  font-weight:800;
  line-height:1.15;
}
.journey-copy{
  color:var(--text-color);
  font-size:14.5px;
  line-height:1.62;
}
.journey-image-wrap{
  display:block;
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform:translateY(10px);
  transition:max-height .38s ease, opacity .26s ease, transform .32s ease, margin-top .28s ease;
}
.growth-journey-card.is-open .journey-image-wrap{
  max-height:190px;
  opacity:1;
  transform:none;
  margin-top:auto;
}
.journey-image-wrap img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}
@media (max-width:1024px){
  .growth-journey-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .growth-journey-grid{grid-template-columns:1fr;}
  .growth-journey-card{min-height:auto;}
}

.compliance-block{
  border-radius:20px;
  background:
    linear-gradient(135deg, rgba(154,52,104,.95), rgba(154,52,104,.82)),
    url('live-theme/images/our-commitment.png') center/cover no-repeat;
}

.page-hero{
  position:relative;
  background:
    linear-gradient(rgba(154,52,104,.75), rgba(154,52,104,.75)),
    url('live-theme/images/page-header-bg.jpg') center/cover no-repeat;
  padding:205px 0 90px;
  margin-top:-96px;
  text-align:center;
}
.page-hero h1{
  color:#fff;
  font-size:clamp(42px,5vw,70px);
}
.page-hero p{
  color:rgba(255,255,255,.88);
  max-width:900px;
}
.page-hero .eyebrow{
  color:#fff;
}

footer.site-footer{
  background:var(--primary-color);
}
.footer-brand img{
  content:url('elara-updated-logo.png');
  height:72px;
  background:#fff;
  border-radius:8px;
  padding:6px 10px;
  filter:none;
}
.floating-actions{
  gap:14px;
}
.floating-actions .fab{
  width:48px;
  height:48px;
  padding:0;
  border-radius:50%;
  background:transparent;
  box-shadow:none;
  border:none;
}
.floating-actions .fab.whatsapp{
  color:#25D366;
  background:transparent;
}
.floating-actions .fab.call{
  color:var(--accent-color);
  background:transparent;
}
.floating-actions .fab svg{
  width:30px;
  height:30px;
  filter:drop-shadow(0 6px 12px rgba(0,0,0,.16));
}
.floating-actions .fab:hover{
  transform:translateY(-2px);
}

.partner-centre-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.partner-centre-card{
  appearance:none;
  position:relative;
  min-height:250px;
  width:100%;
  border:1px solid rgba(154,52,104,.10);
  border-radius:24px;
  background:linear-gradient(145deg,#fff,#fff7f2);
  box-shadow:0 18px 44px rgba(43,37,48,.08);
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:left;
  cursor:pointer;
  overflow:hidden;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.partner-centre-card:hover,
.partner-centre-card.is-open{
  transform:translateY(-6px);
  box-shadow:0 26px 62px rgba(154,52,104,.16);
  border-color:rgba(245,134,52,.34);
}
.centre-location{
  color:#9A3468;
  font-size:clamp(28px,3vw,42px);
  font-weight:800;
  line-height:1;
  text-align:center;
  transition:transform .25s ease, opacity .2s ease;
}
.centre-details{
  position:absolute;
  inset:0;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:13px;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .24s ease, transform .26s ease;
}
.centre-details span{
  color:#6f6a70;
  font-size:14px;
  line-height:1.55;
}
.centre-details b{
  display:block;
  color:#2b2530;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:3px;
}
.centre-status{
  align-self:flex-start;
  color:#fff !important;
  background:#F58634;
  border-radius:100px;
  padding:7px 12px;
  font-weight:800;
  font-size:12px !important;
  line-height:1 !important;
}
.partner-centre-card:hover .centre-location,
.partner-centre-card.is-open .centre-location{
  opacity:0;
  transform:scale(.94);
}
.partner-centre-card:hover .centre-details,
.partner-centre-card.is-open .centre-details{
  opacity:1;
  transform:none;
}
@media (max-width:1024px){
  .partner-centre-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .partner-centre-grid{grid-template-columns:1fr;}
  .partner-centre-card{min-height:270px;}
}

@media (max-width:960px){
  .theme-topbar{display:none;}
  nav.main-nav{background:var(--primary-color);}
  .hero-grid{grid-template-columns:1fr;}
  .hero{margin-top:0;min-height:auto;padding:100px 0 80px;}
  .page-hero{margin-top:0;padding:100px 0 70px;}
  .hero-art{min-height:320px;}
}

@media (max-width:640px){
  .brand img{height:58px;}
  .hero{padding:92px 0 72px;}
  .hero h1{font-size:38px;}
  section{padding:68px 0;}
}

/* Homepage visual polish inspired by the Elara IVF reference */
.home-page{
  background:#fff;
}
.home-page .hero{
  min-height:680px;
  padding-bottom:105px;
}
.home-page .hero + section{
  padding:56px 0 72px;
}
.home-page .hero + section .grid-4{
  max-width:1080px;
  margin:0 auto;
  grid-template-columns:repeat(4,1fr);
}
.home-page .hero + section .card{
  background:#f4f2ff;
  border-color:rgba(154,52,104,.08);
  border-radius:14px;
  padding:28px 26px;
  box-shadow:none;
}
.home-page .hero + section .card h3{
  color:#9A3468;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:18px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(154,52,104,.12);
}
.home-page .hero + section .card p{
  color:#4f4853;
  font-size:13px;
}
.home-page .hero + section .card .icon{
  float:right;
  width:28px;
  height:28px;
  margin:0 0 10px 16px;
  background:transparent;
  color:#6f6a70;
}

.home-page .section-alt{
  background:#fff;
}
.home-page section:nth-of-type(3) .container{
  position:relative;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:70px;
}
.home-page section:nth-of-type(3) .container::before{
  content:"";
  display:block;
  min-height:430px;
  border-radius:22px;
  background:
    linear-gradient(rgba(255,255,255,.02),rgba(255,255,255,.02)),
    url('live-theme/images/about-us-01.png') center/cover no-repeat;
  box-shadow:0 24px 70px rgba(43,37,48,.12);
}
.home-page section:nth-of-type(3) .section-head{
  margin-bottom:28px;
}
.home-page section:nth-of-type(3) .grid-4{
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.home-page section:nth-of-type(3) .card{
  border-radius:16px;
  padding:22px;
  box-shadow:0 12px 34px rgba(43,37,48,.06);
}

.home-page section:nth-of-type(5){
  padding:72px 0;
}
.home-page section:nth-of-type(5) .container{
  background:
    radial-gradient(circle at 18% 18%, rgba(245,134,52,.10), transparent 30%),
    radial-gradient(circle at 76% 35%, rgba(179,229,255,.40), transparent 36%),
    linear-gradient(135deg,#fff7f2,#eef9ff);
  border-radius:28px;
  padding:64px 72px;
}
.home-page section:nth-of-type(5) .section-head{
  max-width:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:end;
  gap:44px;
}
.home-page section:nth-of-type(5) .grid-3{
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.home-page section:nth-of-type(5) .card{
  min-height:230px;
  border-radius:14px;
  box-shadow:none;
}
.home-page section:nth-of-type(7){
  background:#fff;
  padding-bottom:0;
}
.home-page section:nth-of-type(7) .container{
  display:grid;
  grid-template-columns:1fr .85fr;
  align-items:center;
  gap:56px;
}
.home-page section:nth-of-type(7) .container::after{
  content:"";
  min-height:420px;
  align-self:end;
  background:url('live-theme/images/about-us-02.png') center bottom/contain no-repeat;
}
.home-page section:nth-of-type(7) .grid-3{
  grid-column:1;
  grid-template-columns:1fr;
}
.home-page section:nth-of-type(7) .card{
  background:transparent;
  border:0;
  border-top:1px solid rgba(154,52,104,.12);
  border-radius:0;
  box-shadow:none;
  padding:20px 0;
}

.home-page section:nth-of-type(8) .compliance-block{
  border-radius:28px;
  background:#9A3468 !important;
  padding:56px 64px;
}

@media (max-width:1024px){
  .home-page .hero + section .grid-4,
  .home-page section:nth-of-type(5) .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
  .home-page section:nth-of-type(3) .container,
  .home-page section:nth-of-type(7) .container,
  .home-page section:nth-of-type(5) .section-head{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .home-page .hero + section .grid-4,
  .home-page section:nth-of-type(3) .grid-4,
  .home-page section:nth-of-type(5) .grid-3{
    grid-template-columns:1fr;
  }
  .home-page section:nth-of-type(3) .container::before,
  .home-page section:nth-of-type(7) .container::after{
    min-height:300px;
  }
  .home-page section:nth-of-type(5) .container,
  .home-page section:nth-of-type(8) .compliance-block{
    padding:36px 24px;
  }
}

/* Final homepage section updates */
.home-page .trust-section{
  background:#FDF7FA;
  padding:82px 0;
}
.home-page .trust-section .section-head{
  max-width:820px;
  margin:0 0 34px;
}
.home-page .trust-section .section-head h2,
.home-page .support-section .section-head h2,
.home-page .partner-fit-section .section-head h2{
  color:#9A3468;
}
.home-page .trust-section .section-head p,
.home-page .support-section .section-head p,
.home-page .partner-fit-section .section-head p{
  color:#6F6A70;
}
.home-page .trust-section .grid-4{
  max-width:none;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.home-page .trust-section .card,
.home-page .trust-section .card.orange{
  background:#fff;
  border:1px solid rgba(154,52,104,.10);
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 34px rgba(43,37,48,.07);
}
.home-page .trust-section .card h3{
  color:#9A3468;
  font-size:18px;
  text-transform:none;
  letter-spacing:0;
  border:0;
  margin:0 0 10px;
  padding:0;
}
.home-page .trust-section .card p{
  color:#6F6A70;
  font-size:14px;
}
.home-page .trust-section .card .icon{
  float:none;
  width:52px;
  height:52px;
  margin:0 0 16px;
  background:#fff7f2;
  color:#F58634;
}

.home-page .support-section{
  background:#fff;
}
.home-page .support-section .container{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:58px;
}
.home-page .support-section .container::before{
  display:none !important;
  content:none !important;
}
.home-page .support-section .support-image{
  display:block !important;
}
.home-page .support-image img,
.home-page .partner-fit-image img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 24px 70px rgba(43,37,48,.12);
}
.home-page .support-section .section-head{
  margin:0 0 26px;
  max-width:680px;
}
.home-page .support-mini-grid{
  grid-template-columns:repeat(2,1fr) !important;
  gap:16px;
}
.home-page .support-mini-grid .card{
  background:#fff;
  border:1px solid rgba(154,52,104,.10);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 28px rgba(43,37,48,.06);
}
.home-page .support-mini-grid .card h3{
  color:#2B2530;
  font-size:16px;
  margin:0;
}
.home-page .support-mini-grid .card .icon{
  width:42px;
  height:42px;
  margin-bottom:12px;
  color:#F58634;
  background:#fff7f2;
}

.home-page .growth-os-section{
  background:#FDF7FA;
  padding:78px 0;
}
.home-page .growth-os-section .container{
  background:transparent;
  border-radius:0;
  padding:0 32px;
}
.home-page .growth-os-section .section-head{
  display:block !important;
  max-width:760px;
  margin-bottom:34px;
}
.home-page .growth-os-section .section-head .eyebrow,
.home-page .growth-os-section .section-head h2{
  display:block;
}
.home-page .growth-os-section .grid-3{
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.home-page .growth-os-section .card{
  position:relative;
  overflow:hidden;
  min-height:230px;
  background:#fff !important;
  border:1px solid rgba(154,52,104,.10);
  border-radius:22px;
  box-shadow:0 12px 32px rgba(43,37,48,.07);
  transition:transform .24s ease, box-shadow .24s ease;
}
.home-page .growth-os-section .card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(154,52,104,.78),rgba(154,52,104,.78)),
    var(--growth-card-image, url('live-theme/images/service-1.jpg')) center/cover no-repeat;
  opacity:0;
  transition:opacity .24s ease;
  z-index:0;
}
.home-page .growth-os-section .card:nth-child(1){--growth-card-image:url('images/elara-support.jpg');}
.home-page .growth-os-section .card:nth-child(2){--growth-card-image:url('images/growth-plan.jpg');}
.home-page .growth-os-section .card:nth-child(3){--growth-card-image:url('live-theme/images/service-1.jpg');}
.home-page .growth-os-section .card:nth-child(4){--growth-card-image:url('images/growth-support.jpg');}
.home-page .growth-os-section .card:nth-child(5){--growth-card-image:url('images/practice-assessment.jpg');}
.home-page .growth-os-section .card:nth-child(6){--growth-card-image:url('images/track-improve-grow.jpg');}
.home-page .growth-os-section .card:nth-child(3){
  background:#fff !important;
  color:inherit !important;
}
.home-page .growth-os-section .card:nth-child(3) h3{
  color:#9A3468;
}
.home-page .growth-os-section .card:nth-child(3) p{
  color:#6F6A70;
}
.home-page .growth-os-section .card > *{
  position:relative;
  z-index:1;
}
.home-page .growth-os-section .card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 52px rgba(154,52,104,.18);
}
.home-page .growth-os-section .card:hover::before{
  opacity:1;
}
.home-page .growth-os-section .card:hover h3,
.home-page .growth-os-section .card:hover p,
.home-page .growth-os-section .card:hover .icon{
  color:#fff;
}
.home-page .growth-os-section .card:nth-child(3):hover h3,
.home-page .growth-os-section .card:nth-child(3):hover p{
  color:#fff;
}
.home-page .growth-os-section .card .icon{
  background:#fff7f2;
  color:#F58634;
}

.home-page .compliance-cta-section .compliance-block,
.home-page .final-cta-section .compliance-block{
  background:linear-gradient(135deg,#F58634,#E86F1E) !important;
  border-radius:28px;
  padding:56px 64px;
}
.home-page .compliance-cta-section .btn,
.home-page .final-cta-section .btn{
  background:#fff !important;
  color:#9A3468 !important;
  border-color:#fff !important;
}
.home-page .compliance-cta-section .btn:hover,
.home-page .final-cta-section .btn:hover{
  background:#9A3468 !important;
  color:#fff !important;
  border-color:#9A3468 !important;
}

.home-page .partner-fit-section{
  background:#fff;
}
.home-page .partner-fit-section .container{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:58px;
}
.home-page .partner-fit-section .container::after{
  display:none !important;
  content:none !important;
}
.home-page .partner-fit-section .section-head{
  margin:0 0 24px;
  max-width:680px;
}
.home-page .partner-fit-section .grid-3{
  grid-template-columns:1fr;
  gap:16px;
}
.home-page .partner-fit-section .card{
  display:grid;
  grid-template-columns:52px 1fr;
  align-items:start;
  gap:16px;
  background:#fff;
  border:1px solid rgba(154,52,104,.10);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 28px rgba(43,37,48,.06);
}
.home-page .partner-fit-section .card .icon{
  grid-row:span 2;
  margin:0;
  color:#F58634;
  background:#fff7f2;
}
.home-page .partner-fit-section .card h3{
  margin:0 0 6px;
  color:#2B2530;
}
.home-page .partner-fit-section .card p{
  margin:0;
  color:#6F6A70;
}

@media (max-width:1024px){
  .home-page .trust-section .grid-4,
  .home-page .growth-os-section .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
  .home-page .support-section .container,
  .home-page .partner-fit-section .container{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .home-page .trust-section .grid-4,
  .home-page .growth-os-section .grid-3,
  .home-page .support-mini-grid{
    grid-template-columns:1fr !important;
  }
  .home-page .support-image img,
  .home-page .partner-fit-image img{
    min-height:280px;
  }
  .home-page .compliance-cta-section .compliance-block,
  .home-page .final-cta-section .compliance-block{
    padding:36px 24px;
  }
}
