/* ==========================================================================
   WOMB Fertility & Maternity Centre — main stylesheet
   Design tokens pulled from the brand logo + approved homepage design.
   ========================================================================== */

:root{
	--womb-pink:        #EE559E;
	--womb-pink-dark:   #D63E86;
	--womb-navy:        #2A3173;
	--womb-blue:        #51C8EC;
	--womb-cream:       #FFF9F7;
	--womb-pink-tint:   #FDEDF2;
	--womb-pink-tint-2: #FCE4EC;
	--womb-blue-tint:   #EAF9FE;
	--womb-ink:         #3A3352;
	--womb-ink-soft:    #6B6580;
	--womb-line:        #F1E1E8;
	--womb-white:       #FFFFFF;

	--font-display: 'Poppins', 'Segoe UI', sans-serif;
	--font-body:    'Jost', 'Segoe UI', sans-serif;

	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--radius-pill: 999px;

	--shadow-card: 0 20px 45px -25px rgba(42, 49, 115, .35);
	--shadow-soft: 0 10px 30px -18px rgba(238, 85, 158, .35);

	--container: 1220px;
	--header-h: 88px;
	--topbar-h: 38px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
	margin: 0;
	font-family: var(--font-body);
	color: var(--womb-ink);
	background: var(--womb-white);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; font-size: 15px; }
h1, h2, h3, h4{
	font-family: var(--font-display);
	color: var(--womb-navy);
	margin: 0 0 .5em;
	line-height: 1.25;
	font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--womb-ink-soft); }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center{ text-align: center; }
.screen-reader-text{
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.section-pad{ padding: 88px 0; }
.section-tint{ background: var(--womb-pink-tint); }
.treatment-tint{ background: linear-gradient(180deg, #EEF0FB 0%, #F5F3FC 100%); position: relative; }
@media (max-width: 782px){
	.section-pad{ padding: 56px 0; }
}

.eyebrow{
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--womb-pink);
	background: var(--womb-pink-tint-2);
	padding: 6px 16px;
	border-radius: var(--radius-pill);
	margin-bottom: 16px;
}
.eyebrow-light{ background: rgba(255,255,255,.18); color: #fff; }
.eyebrow-pill{
	display: block; text-align: center;
	font-family: var(--font-display); font-weight: 600; font-size: 13px;
	color: var(--womb-pink); margin-bottom: 10px;
}
.section-title{
	font-size: clamp(28px, 3.4vw, 40px);
	max-width: 720px;
}
.text-center.section-title{ margin-left: auto; margin-right: auto; }
.section-subtitle{
	max-width: 560px; margin: -6px auto 40px; color: var(--womb-ink-soft);
}

/* ---------- Buttons ---------- */
.btn{
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-display); font-weight: 600; font-size: 15px;
	padding: 15px 30px; border-radius: var(--radius-pill);
	border: 2px solid transparent; cursor: pointer;
	transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
	white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
	background: linear-gradient(135deg, var(--womb-pink) 0%, var(--womb-pink-dark) 100%);
	color: #fff;
	box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ box-shadow: 0 16px 34px -14px rgba(214,62,134,.55); color: #fff; }
.btn-light{ background: #fff; color: var(--womb-pink-dark); }
.btn-outline-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover{ background: rgba(255,255,255,.15); color: #fff; }
.btn-ghost{ background: transparent; color: var(--womb-navy); border-color: var(--womb-navy); }
.btn-ghost:hover{ background: var(--womb-navy); color: #fff; }
.btn-navy{ background: var(--womb-navy); color: #fff; }
.btn-navy:hover{ background: #1f2557; color: #fff; box-shadow: 0 16px 34px -16px rgba(42,49,115,.55); }

/* ---------- Header ---------- */
.site-header{
	position: sticky; top: 0; z-index: 200; background: #fff;
	box-shadow: 0 2px 20px -10px rgba(42,49,115,.15);
}
.header-top-row{
	display: flex; align-items: center; justify-content: space-between;
	height: 84px; border-bottom: 1px solid var(--womb-line);
}
.site-branding{ flex: none; }
.site-logo-img{ height: 62px; width: auto; }
.header-nav-row{ background: #fff; }
.header-nav-row .container{ display: flex; }
.main-navigation{ flex: 1; padding: 12px 0; }
.nav-menu{ display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.nav-menu > li{ position: relative; }
.nav-menu > li > a{
	display: flex; align-items: center; gap: 5px;
	font-family: var(--font-display); font-weight: 500; font-size: 15px;
	color: var(--womb-ink); padding: 6px 0; position: relative;
}
.nav-menu > li > a::after{
	content:''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
	background: var(--womb-pink); transform: scaleX(0); transform-origin: left;
	transition: transform .25s ease;
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after{ transform: scaleX(1); }
.dropdown-caret{ display: inline-flex; color: var(--womb-ink-soft); transition: transform .2s ease; }
.has-dropdown:hover > a .dropdown-caret{ transform: rotate(180deg); }
.sub-menu{
	position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff;
	border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 10px;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	z-index: 50;
}
.has-dropdown:hover > .sub-menu{ opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a{ display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: var(--womb-ink); }
.sub-menu li a:hover{ background: var(--womb-pink-tint); color: var(--womb-pink-dark); }
.submenu-toggle{ display: none; }

.header-actions{ display: flex; align-items: center; gap: 16px; flex: none; }
.header-search-btn{
	width: 40px; height: 40px; border-radius: 50%; border: none;
	background: var(--womb-navy); color: #fff; display: flex; align-items: center; justify-content: center;
	transition: background .2s ease;
}
.header-search-btn:hover{ background: var(--womb-pink-dark); }
.header-search-panel{
	max-height: 0; overflow: hidden; background: #fff; border-bottom: 1px solid var(--womb-line);
	transition: max-height .25s ease;
}
.header-search-panel.is-open{ max-height: 90px; }
.header-search-form{ display: flex; gap: 10px; padding: 16px 0; }
.header-search-form input{
	flex: 1; border: 1px solid var(--womb-line); border-radius: 12px; padding: 12px 16px;
	font-size: 15px; outline: none; background: #FBFAFC;
}
.header-search-form input:focus{ border-color: var(--womb-pink); background: #fff; }
.header-search-form button{
	width: 46px; border: none; border-radius: 12px; background: var(--womb-navy); color: #fff;
	display: flex; align-items: center; justify-content: center;
}
.header-divider{ width: 1px; height: 30px; background: var(--womb-line); }
.header-call-link{ display: flex; align-items: center; gap: 10px; }
.icon-circle{
	width: 38px; height: 38px; border-radius: 12px; background: var(--womb-pink);
	color: #fff; display: flex; align-items: center; justify-content: center; flex: none;
}
.header-call-text{ display: flex; flex-direction: column; line-height: 1.3; }
.header-call-text small{ color: var(--womb-ink-soft); font-size: 11px; }
.header-call-text strong{ color: var(--womb-navy); font-size: 14px; font-family: var(--font-display); }
.menu-toggle{
	display: none; width: 42px; height: 42px; border: none; background: var(--womb-pink-tint);
	border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span{ width: 20px; height: 2px; background: var(--womb-navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2){ opacity: 0; }
.menu-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero-section{
	position: relative; overflow: hidden; background: linear-gradient(180deg, #FCEEE9 0%, #FDF5F1 100%);
	padding: 70px 0 90px; min-height: 560px; display: flex; align-items: center;
}
.hero-blobs{ position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob{ position: absolute; border-radius: 50%; background: var(--womb-pink-tint-2); opacity: .7; }
.blob-1{ width: 260px; height: 260px; top: -100px; left: -100px; }
.blob-2{ width: 220px; height: 220px; bottom: -60px; right: 4%; background: rgba(255,255,255,.4); }

/* Full-bleed photo pinned to the right side of the hero, ignoring the container gutter */
.hero-bg-media{
	position: absolute; top: 0; right: 0; bottom: 0; width: 58%; z-index: 0;
	overflow: hidden;
}
.hero-bg-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-bg-media::before{
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(252,238,233,.9) 0%, rgba(252,238,233,0) 18%);
}

.hero-inner{
	position: relative; z-index: 1; display: block; max-width: 46%;
}
.hero-copy h1{ font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 18px; }
.hero-copy > p{ font-size: 17px; margin-bottom: 0; max-width: 460px; }

/* Full-width form bar sitting below the headline row, over the bottom of the photo */
.hero-form-bar{
	position: relative; z-index: 2; margin-top: 60px;
}
.womb-appointment-form--hero{
	background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
	padding: 16px; display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch;
}
.womb-appointment-form--hero .form-row{ flex: 1 1 0; min-width: 160px; }
.womb-appointment-form--hero .form-submit{ flex: 0 0 auto; white-space: nowrap; }
.womb-appointment-form--hero .form-feedback{ flex-basis: 100%; }
.form-row{ position: relative; }
.form-row input,
.form-row select,
.form-row textarea{
	width: 100%; border: 1px solid var(--womb-line); border-radius: 12px;
	padding: 13px 14px; background: #FBFAFC; color: var(--womb-ink); outline: none;
	transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{ border-color: var(--womb-pink); background: #fff; }
.form-row select{ appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6580' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.form-row-hp{ position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.womb-appointment-form .form-submit{ position: relative; }
.btn-spinner{
	width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
	border-top-color: #fff; display: none; animation: womb-spin .7s linear infinite;
}
.is-submitting .btn-spinner{ display: inline-block; }
.is-submitting .btn-label{ opacity: .7; }
@keyframes womb-spin{ to{ transform: rotate(360deg); } }
.form-feedback{ flex: 1 1 100%; font-size: 13.5px; padding: 0 4px; }
.form-feedback.is-success{ color: #1E9E5B; }
.form-feedback.is-error{ color: #D6336C; }

/* Modal appointment form variant */
.womb-appointment-form--modal{
	background: transparent; box-shadow: none; padding: 0; flex-direction: column;
}
.womb-appointment-form--modal .form-row{ width: 100%; }

/* ---------- About / intro ---------- */
.about-inner{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media{ position: relative; }
.about-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.about-media-blob{
	position: absolute; width: 130px; height: 130px; border-radius: 50%;
	background: var(--womb-blue-tint); bottom: -30px; left: -30px; z-index: -1;
}
.about-copy p{ font-size: 15.5px; }
.about-copy h2{ margin-bottom: 20px; }

/* ---------- Choose your care journey ---------- */
.journey-grid{
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 46px;
}
.journey-card{
	border-radius: var(--radius-md); padding: 32px 26px;
	display: flex; flex-direction: column; gap: 6px;
	transition: transform .25s ease, box-shadow .25s ease;
}
.journey-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px -22px rgba(42,49,115,.3); }
.journey-card-1{ background: #FCE4EC; }
.journey-card-2{ background: #FDEEE0; }
.journey-card-3{ background: #E3F3FC; }
.journey-card-4{ background: #E4F7EC; }
.journey-icon{
	width: 84px; height: 84px; border-radius: 18px; background: #fff;
	box-shadow: 0 10px 20px -12px rgba(42,49,115,.3);
	display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.journey-icon svg, .journey-icon img{ width: 52px; height: 52px; }
.journey-card h3{ font-size: 19px; margin-bottom: 4px; color: var(--womb-navy); }
.journey-card p{ font-size: 14px; margin-bottom: 14px; color: var(--womb-ink-soft); }
.journey-link{
	margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--womb-ink);
	background: #fff; padding: 10px 16px; border-radius: var(--radius-pill); align-self: flex-start;
	box-shadow: 0 8px 16px -10px rgba(42,49,115,.25);
}
.journey-link svg{ transition: transform .2s ease; }
.journey-card:hover .journey-link svg{ transform: translateX(4px); }

/* ---------- Treatment cards ---------- */
.treatment-grid{
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin: 46px 0 40px;
}
.treatment-card{
	background: #fff; border-radius: var(--radius-md); overflow: hidden;
	box-shadow: var(--shadow-card); transition: transform .25s ease;
	padding-bottom: 22px;
}
.treatment-card:hover{ transform: translateY(-6px); }
.treatment-media{ aspect-ratio: 550/320; overflow: hidden; }
.treatment-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.treatment-card:hover .treatment-media img{ transform: scale(1.06); }
.treatment-card h3{ font-size: 18px; margin: 18px 22px 6px; text-align: center; color: var(--womb-navy); }
.treatment-card p{ font-size: 13.5px; margin: 0 22px; text-align: center; }

/* ---------- Our Services ---------- */
.services-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.services-col{ border-radius: var(--radius-md); padding: 26px; }
.services-col-head{ padding: 0 4px 16px; border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 16px; }
.services-col h3{ font-size: 19px; margin-bottom: 4px; }
.services-col-sub{ font-size: 12.5px; margin-bottom: 0; opacity: .75; }
.services-col-peach{ background: #FDEEE0; }
.services-col-peach h3{ color: #A85A1E; }
.services-col-peach .services-col-sub{ color: #A85A1E; }
.services-col-green{ background: #E4F7EC; }
.services-col-green h3{ color: #1E7A4C; }
.services-col-green .services-col-sub{ color: #1E7A4C; }
.services-col-pink{ background: #FCE4EC; }
.services-col-pink h3{ color: #9C2A5C; }
.services-col-pink .services-col-sub{ color: #9C2A5C; }
.services-list{ display: flex; flex-direction: column; gap: 10px; }
.services-list a{
	display: flex; align-items: center; justify-content: space-between;
	background: #fff; border-radius: 12px; padding: 13px 16px;
	font-family: var(--font-display); font-weight: 500; font-size: 14.5px;
	color: var(--womb-ink); transition: transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 6px 14px -10px rgba(42,49,115,.2);
}
.services-list a:hover{ transform: translateX(3px); box-shadow: 0 8px 18px -8px rgba(42,49,115,.3); }
.services-arrow{
	width: 22px; height: 22px; border-radius: 50%; flex: none;
	display: flex; align-items: center; justify-content: center; color: #fff;
}
.services-col-peach .services-arrow{ background: #C97A38; }
.services-col-green .services-arrow{ background: #2E9A63; }
.services-col-pink .services-arrow{ background: #C6417E; }

/* ---------- Why families choose WOMB ---------- */
.why-section{ background: linear-gradient(180deg, #FFF3F7 0%, #FFF9F7 100%); }
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.why-card{
	background: #fff; border-radius: var(--radius-md); padding: 30px; text-align: left;
	box-shadow: 0 18px 40px -28px rgba(42,49,115,.25);
}
.why-icon{
	display: flex; align-items: center; justify-content: flex-start; margin-bottom: 16px;
}
.why-icon svg, .why-icon img{ width: 60px; height: 60px; }
.why-card h3{ font-size: 18px; margin-bottom: 6px; color: var(--womb-navy); }
.why-card p{ font-size: 14px; margin: 0; }

/* ---------- Doctor / care team ---------- */
.doctor-card-wrap{
	margin-top: 46px; display: flex; align-items: center; gap: 20px; position: relative;
}
.doctor-card{
	flex: 1; background: #fff; border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card); display: grid; grid-template-columns: 340px 1fr;
	overflow: hidden;
}
.doctor-media{ position: relative; }
.doctor-media img{ width: 100%; height: 100%; object-fit: cover; }
.doctor-copy-wrap{ display: flex; flex-direction: column; }
.doctor-eyebrow{
	color: var(--womb-pink); font-family: var(--font-display); font-weight: 600;
	font-size: 12px; letter-spacing: .04em; margin-bottom: 10px; display: block; text-transform: uppercase;
}
.doctor-copy{ padding: 40px 44px 28px; flex: 1; }
.doctor-copy h3{ font-size: 26px; margin-bottom: 6px; }
.doctor-creds{ color: var(--womb-ink); font-family: var(--font-display); font-weight: 600; font-size: 13.5px; margin-bottom: 4px; line-height: 1.5; }
.doctor-role{ color: var(--womb-navy); font-weight: 600; font-family: var(--font-display); margin-bottom: 14px; font-size: 14.5px; }

/* Flush split action bar, docked to the bottom of the copy column only */
.doctor-actions{ display: flex; }
.btn-split{
	flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
	padding: 18px 20px; font-family: var(--font-display); font-weight: 600; font-size: 14px;
	border: none; text-align: center;
}
.btn-split-navy{ background: var(--womb-navy); color: #fff; flex: 1.6; }
.btn-split-navy:hover{ background: #1f2557; }
.btn-split-pink{ background: #FBCFE0; color: var(--womb-pink-dark); }
.btn-split-pink:hover{ background: #F8B9D2; }

.doctor-nav{
	width: 44px; height: 44px; border-radius: 50%; border: none; flex: none;
	background: var(--womb-pink-tint-2); color: var(--womb-pink-dark);
	display: flex; align-items: center; justify-content: center;
	transition: background .2s ease, color .2s ease;
}
.doctor-nav:hover{ background: var(--womb-pink); color: #fff; }

/* ---------- Facilities ---------- */
.facilities-section{ position: relative; }
.facilities-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 46px 0 40px; }
.facility-card{
	border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card);
	background: #fff; transition: transform .25s ease;
}
.facility-card:hover{ transform: translateY(-4px); }
.facility-media{ aspect-ratio: 5/3.4; overflow: hidden; }
.facility-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.facility-card:hover img{ transform: scale(1.06); }
.facility-label{
	display: block; text-align: center; padding: 16px 14px;
	background: var(--womb-blue-tint); background: #EEF0FB;
	color: var(--womb-navy); font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
}

/* ---------- Testimonials ---------- */
.testimonial-section{ background: linear-gradient(180deg, #FDEEE7 0%, #FFFBF9 100%); }
.testimonial-banner{
	position: relative; margin: 30px 0 26px; border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow-card); max-width: 760px; margin-left: auto; margin-right: auto;
}
.testimonial-banner img{ width: 100%; height: 100%; aspect-ratio: 1160/420; object-fit: cover; }
.testimonial-play{
	position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.2);
	border: 2px solid #fff; color: #fff; display: flex; align-items: center; justify-content: center;
	backdrop-filter: blur(2px); transition: transform .2s ease, background .2s ease;
}
.testimonial-play:hover{ transform: translate(-50%,-50%) scale(1.08); background: rgba(255,255,255,.3); }
.testimonial-play svg{ margin-left: 3px; }

.testimonial-row-wrap{ display: flex; align-items: center; gap: 16px; }
.testimonial-row{ flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card{
	background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card);
	display: flex; flex-direction: column;
}
.testimonial-meta{ display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.testimonial-avatar{
	width: 36px; height: 36px; border-radius: 10px; background: #EDEAFB;
	color: #6B5FD6; display: flex; align-items: center; justify-content: center; flex: none;
}
.testimonial-who{ flex: 1; min-width: 0; }
.testimonial-who strong{ display: block; font-family: var(--font-display); color: var(--womb-navy); font-size: 13.5px; }
.testimonial-who small{ color: var(--womb-ink-soft); font-size: 11.5px; }
.testimonial-google{ flex: none; }
.testimonial-stars{ color: #FBBC05; letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; }
.testimonial-quote{
	font-size: 13.5px; color: var(--womb-ink-soft); margin-bottom: 8px;
	display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.testimonial-readmore{ font-family: var(--font-display); font-weight: 500; font-size: 12.5px; color: var(--womb-ink-soft); margin-top: auto; }
.testimonial-nav{
	width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--womb-line);
	background: #fff; display: flex; align-items: center; justify-content: center; flex: none;
	color: var(--womb-navy); transition: background .2s ease, color .2s ease;
}
.testimonial-nav:hover{ background: var(--womb-pink); color: #fff; border-color: var(--womb-pink); }

/* ---------- Decorative mascot icons at section boundaries ---------- */
.section-mascot{
	position: absolute; bottom: -60px; z-index: 2; pointer-events: none;
	filter: drop-shadow(0 14px 18px rgba(42,49,115,.18));
}
.section-mascot svg{ width: 185px; height: 185px; display: block; }
.section-mascot-right{ right: 6%; }
.section-mascot-left{ left: 4%; }
@media (max-width: 900px){
	.section-mascot{ display: none; }
}
@media (max-width: 900px){
	.testimonial-row{
		grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 85%;
		overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px;
	}
	.testimonial-card{ scroll-snap-align: start; }
}

/* ---------- FAQ ---------- */
.faq-card{
	background: #fff; border: 1px solid var(--womb-line);
	border-radius: var(--radius-lg); padding: 50px 56px;
}
.faq-heading{ margin-bottom: 30px; }
.faq-heading .eyebrow-pill{ text-align: left; }
.faq-heading .section-title{ max-width: none; }
.faq-heading p{ font-size: 14.5px; max-width: 560px; }
.faq-item{ border-bottom: 1px solid var(--womb-line); }
.faq-item:first-child{ border-top: 1px solid var(--womb-line); }
.faq-question{
	width: 100%; text-align: left; background: none; border: none; padding: 22px 4px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--womb-navy);
}
.faq-toggle{
	position: relative; width: 22px; height: 22px; flex: none; border-radius: 50%;
	background: var(--womb-pink-tint-2);
}
.faq-toggle::before, .faq-toggle::after{
	content:''; position: absolute; background: var(--womb-pink-dark); top: 50%; left: 50%;
	transform: translate(-50%,-50%);
}
.faq-toggle::before{ width: 10px; height: 2px; }
.faq-toggle::after{ width: 2px; height: 10px; transition: transform .25s ease, opacity .25s ease; }
.faq-item.is-open .faq-toggle::after{ transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer{ max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-answer{ max-height: 400px; }
.faq-answer p{ padding: 0 4px 22px; font-size: 14.5px; }

/* ---------- Footer CTA ---------- */
.footer-cta{ background: linear-gradient(100deg, #FBD8E4 0%, #FDF3F6 55%, #FFFFFF 100%); position: relative; overflow: hidden; }
.footer-cta-inner{
	display: flex; align-items: center; gap: 48px; padding: 60px 24px; position: relative;
}
.footer-cta-art{ position: relative; flex: none; width: 230px; height: 230px; display: flex; align-items: center; justify-content: center; }
.footer-cta-art-ring{
	position: absolute; top: -8px; right: 10px; width: 40px; height: 40px; border-radius: 50%;
	border: 7px solid #fff;
}
.footer-cta-art-circle{
	width: 200px; height: 200px; border-radius: 50%; background: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 20px 40px -20px rgba(42,49,115,.25);
}
.footer-cta-art-circle svg{ width: 140px; height: 140px; }
.footer-cta-copy{ flex: 1; }
.footer-cta-copy h2{ color: var(--womb-navy); margin-bottom: 10px; font-size: clamp(24px,3vw,32px); }
.footer-cta-copy p{ color: var(--womb-ink-soft); max-width: 560px; margin: 0 0 22px; }
.footer-cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-pink{ background: #fff; color: var(--womb-pink-dark); border-color: var(--womb-pink); }
.btn-outline-pink:hover{ background: var(--womb-pink-tint); color: var(--womb-pink-dark); }

/* ---------- Footer main ---------- */
.site-footer{ background: #2B2A2E; color: rgba(255,255,255,.65); }
.footer-main{ padding: 60px 0 30px; }
.footer-grid{ display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 30px 26px; }
.footer-about{ grid-row: span 2; }
.footer-col h4{ color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul li + li{ margin-top: 10px; }
.footer-col ul a{ font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer-col ul a:hover{ color: var(--womb-pink); }
.footer-logo{ height: 52px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-address{ font-size: 13.5px; max-width: 260px; color: rgba(255,255,255,.6); }
.footer-phone{ font-size: 13.5px; margin-bottom: 18px; color: rgba(255,255,255,.6); }
.footer-phone strong{ color: rgba(255,255,255,.85); font-weight: 500; }
.footer-phone a{ color: #fff; font-weight: 600; display: block; margin-top: 2px; }
.footer-social{ display: flex; gap: 10px; }
.footer-social .social-link{
	width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); color: #2B2A2E;
	display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer-social .social-link{ background: #fff; }
.footer-social .social-link:hover{ background: var(--womb-pink); color: #fff; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom-inner{ display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p{ margin: 0; font-size: 13px; }
.footer-legal{ display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a{ font-size: 13px; color: rgba(255,255,255,.6); }
.footer-legal a:hover{ color: #fff; }

/* ---------- Floating action buttons ---------- */
.floating-actions{
	position: fixed; right: 22px; bottom: 26px; z-index: 400;
	display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.fab{
	width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); border: none; transition: transform .2s ease, opacity .2s ease;
}
.fab:hover{ transform: translateY(-3px) scale(1.05); }
.fab-whatsapp{ background: #fff; }
.fab-call{ background: var(--womb-navy); }
.fab-top{
	background: var(--womb-pink); width: 42px; height: 42px; opacity: 0; pointer-events: none; transform: translateY(10px);
}
.fab-top.is-visible{ opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Appointment modal ---------- */
.womb-modal{ position: fixed; inset: 0; z-index: 999; display: none; }
.womb-modal.is-open{ display: block; }
.womb-modal-overlay{ position: absolute; inset: 0; background: rgba(30,20,45,.55); backdrop-filter: blur(2px); }
.womb-modal-panel{
	position: relative; max-width: 480px; margin: 5vh auto; background: #fff; border-radius: var(--radius-lg);
	padding: 40px; max-height: 90vh; overflow-y: auto;
	animation: womb-modal-in .25s ease;
}
@keyframes womb-modal-in{ from{ opacity: 0; transform: translateY(20px);} to{ opacity: 1; transform: translateY(0);} }
.womb-modal-close{
	position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
	border: none; background: var(--womb-pink-tint); font-size: 20px; color: var(--womb-navy); line-height: 1;
}
.womb-modal-panel h3{ margin-bottom: 6px; font-size: 24px; }
.womb-modal-sub{ font-size: 14px; margin-bottom: 24px; }

/* ---------- Generic pages ---------- */
.generic-page-hero{ background: var(--womb-pink-tint); padding: 70px 0 50px; }
.generic-page-hero h1{ margin: 0; font-size: clamp(28px,4vw,42px); }
.page-content{ max-width: 820px; margin: 0 auto; }
.blog-grid .blog-list{ display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.blog-card{ background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.blog-card-body{ padding: 22px; }
.blog-card-meta{ font-size: 12.5px; color: var(--womb-ink-soft); }
.pagination{ margin-top: 40px; text-align: center; }
.error-404-section h1{ font-size: 96px; color: var(--womb-pink); margin-bottom: 0; }

/* ---------- Scroll reveal ---------- */
[data-reveal]{
	opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease;
	will-change: opacity, transform;
}
[data-reveal="left"]{ transform: translateX(-32px); }
[data-reveal="right"]{ transform: translateX(32px); }
[data-reveal].is-revealed{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
	[data-reveal]{ opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px){
	.journey-grid, .treatment-grid{ grid-template-columns: repeat(2, 1fr); }
	.services-grid{ grid-template-columns: 1fr; }
	.why-grid{ grid-template-columns: repeat(2, 1fr); }
	.facilities-grid{ grid-template-columns: repeat(2, 1fr); }
	.doctor-card{ grid-template-columns: 280px 1fr; }
	.footer-grid{ grid-template-columns: repeat(3, 1fr); }
	.footer-about{ grid-row: auto; grid-column: 1 / -1; }
}

@media (max-width: 960px){
	.hero-section{ min-height: 0; padding-top: 40px; }
	.hero-bg-media{ position: static; width: 100%; height: 220px; border-radius: var(--radius-md); margin-top: 24px; }
	.hero-bg-media::before{ display: none; }
	.hero-inner{ max-width: none; }
	.hero-copy > p{ max-width: none; }
	.hero-form-bar{ margin-top: 24px; }
	.about-inner{ grid-template-columns: 1fr; gap: 36px; }
	.about-media{ order: -1; }
	.faq-card{ padding: 32px 20px; }
	.blog-grid .blog-list{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px){
	.header-nav-row{ display: none; }
	.main-navigation{
		position: fixed; inset: 70px 0 0 auto; width: min(320px, 85vw);
		background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,.15);
		transform: translateX(100%); transition: transform .3s ease;
		overflow-y: auto; padding: 20px 24px 40px; z-index: 250;
	}
	.main-navigation.is-open{ transform: translateX(0); }
	.nav-menu{ flex-direction: column; align-items: stretch; gap: 0; }
	.nav-menu > li{ border-bottom: 1px solid var(--womb-line); position: relative; }
	.nav-menu > li > a{ padding: 16px 4px; justify-content: space-between; }
	.nav-menu > li > a::after{ display: none; }
	.sub-menu{
		position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none;
		max-height: 0; overflow: hidden; padding: 0; transition: max-height .3s ease;
	}
	.has-dropdown.is-expanded .sub-menu{ max-height: 600px; padding: 6px 0 14px; }
	.submenu-toggle{
		display: block; position: absolute; right: 0; top: 6px; width: 36px; height: 36px;
		background: none; border: none;
	}
	.submenu-toggle span{ position: relative; display: block; width: 100%; height: 100%; }
	.submenu-toggle span::before, .submenu-toggle span::after{
		content:''; position: absolute; top: 50%; left: 50%; background: var(--womb-navy);
		transform: translate(-50%,-50%);
	}
	.submenu-toggle span::before{ width: 12px; height: 2px; }
	.submenu-toggle span::after{ width: 2px; height: 12px; transition: transform .2s ease, opacity .2s ease; }
	.has-dropdown.is-expanded .submenu-toggle span::after{ transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
	.header-call-text{ display: none; }
	.header-divider{ display: none; }
	.menu-toggle{ display: flex; }
	.header-actions{ gap: 10px; }
	.header-top-row{ height: 70px; }
	.site-logo-img{ height: 46px; }
}

@media (max-width: 782px){
	.journey-grid, .treatment-grid, .why-grid, .facilities-grid{ grid-template-columns: 1fr; }
	.doctor-card{ grid-template-columns: 1fr; }
	.doctor-media{ aspect-ratio: 4/3; }
	.doctor-copy{ padding: 28px 24px; }
	.doctor-nav{ display: none; }
	.doctor-actions{ flex-direction: column; }
	.btn-split{ padding: 16px; }
	.footer-grid{ grid-template-columns: repeat(2, 1fr); }
	.footer-cta-inner{ flex-direction: column; text-align: center; }
	.footer-cta-art{ width: 170px; height: 170px; }
	.footer-cta-art-circle{ width: 150px; height: 150px; }
	.footer-cta-art-circle svg{ width: 105px; height: 105px; }
	.footer-cta-actions{ justify-content: center; }
	.blog-grid .blog-list{ grid-template-columns: 1fr; }
	.womb-appointment-form--hero{ flex-direction: column; }
	.hero-form-bar{ margin-top: 20px; }
	.floating-actions{ right: 14px; bottom: 18px; }
	.fab{ width: 48px; height: 48px; }
	.fab-top{ width: 38px; height: 38px; }
}

@media (max-width: 560px){
	.footer-grid{ grid-template-columns: 1fr 1fr; }
	.footer-col.footer-about{ grid-column: 1 / -1; }
	.section-title{ font-size: 26px; }
}
