/* =====================================================================
   Pédiatre Bruxelles — main stylesheet
   Color palette & type sampled directly from the client's design mock:
     --pb-blue        buttons, links, headings accent, banners
     --pb-navy        dark text (testimonial, footer headings text on blue)
     --pb-gray-bg     light section backgrounds (testimonial / FAQ band)
   ===================================================================== */

:root {
	--pb-blue: #2377f7;
	--pb-blue-dark: #1a5fd0;
	--pb-navy: #14243d;
	--pb-text: #4b5563;
	--pb-text-light: #6b7280;
	--pb-gray-bg: #e2e9ef;
	--pb-faq-bg: #f4f4f5;
	--pb-border: #e3e7ec;
	--pb-white: #ffffff;

	--pb-font-heading: 'Baloo 2', 'Nunito Sans', sans-serif;
	--pb-font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	--pb-container: 1200px;
	--pb-container-narrow: 820px;
	--pb-radius: 14px;
	--pb-radius-sm: 8px;
	--pb-shadow: 0 10px 30px rgba(20, 36, 61, 0.08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--pb-font-body);
	color: var(--pb-text);
	font-size: 16px;
	line-height: 1.7;
	background: var(--pb-white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--pb-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
	font-family: var(--pb-font-heading);
	color: var(--pb-navy);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 16px;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.pb-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--pb-blue);
	color: #fff;
	padding: 12px 20px;
	z-index: 10000;
	border-radius: 0 0 8px 0;
}
.pb-skip-link:focus { left: 0; }

.pb-container {
	max-width: var(--pb-container);
	margin: 0 auto;
	padding: 0 24px;
}
.pb-container--narrow { max-width: var(--pb-container-narrow); }

/* ---------- Buttons ---------- */
.pb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-family: var(--pb-font-heading);
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
	text-decoration: none;
	line-height: 1.3;
}
.pb-btn:hover { text-decoration: none; transform: translateY(-1px); }
.pb-btn--primary { background: var(--pb-blue); color: #fff; }
.pb-btn--primary:hover { background: var(--pb-blue-dark); color: #fff; }

/* =====================================================================
   HEADER — logo left, menu right (per client instructions)
   ===================================================================== */
.pb-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
	border-bottom: 1px solid var(--pb-border);
}

.pb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 5px;
	gap: 24px;
}

.pb-header__logo img { display: block; height: 65px; width: auto; }
.pb-header__logo a { display: inline-block; }
.custom-logo-link img { height: 52px; width: auto; }

.pb-nav { flex: 1; display: flex; justify-content: flex-end; }

.pb-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.pb-menu li { position: relative; }

.pb-menu a {
	color: var(--pb-navy);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
}
.pb-menu a:hover,
.pb-menu li.current-menu-item > a { color: var(--pb-blue); text-decoration: none; }

.pb-menu .pb-menu-cta a,
.pb-menu li.pb-menu-cta > a {
	background: var(--pb-blue);
	color: #fff;
	padding: 11px 22px;
	border-radius: 999px;
	font-family: var(--pb-font-heading);
}
.pb-menu .pb-menu-cta a:hover,
.pb-menu li.pb-menu-cta > a:hover {
	background: var(--pb-blue-dark);
	color: #fff;
}

/* submenu (in case client adds children later) */
.pb-menu ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: var(--pb-shadow);
	border-radius: var(--pb-radius-sm);
	padding: 10px;
	min-width: 220px;
	flex-direction: column;
	gap: 4px;
	z-index: 20;
}
.pb-menu li:hover > ul.sub-menu { display: flex; }
.pb-menu ul.sub-menu a { padding: 8px 10px; display: block; border-radius: 6px; }
.pb-menu ul.sub-menu a:hover { background: var(--pb-faq-bg); }

.pb-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.pb-nav-toggle__bar {
	width: 26px;
	height: 2.5px;
	background: var(--pb-navy);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.pb-nav-toggle.is-active .pb-nav-toggle__bar:nth-child(2) { transform: translateY(7.5px) rotate(45deg); }
.pb-nav-toggle.is-active .pb-nav-toggle__bar:nth-child(3) { opacity: 0; }
.pb-nav-toggle.is-active .pb-nav-toggle__bar:nth-child(4) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.pb-hero { padding: 56px 0 64px; }

.pb-hero__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: start;
}

.pb-hero__media img {
	border-radius: var(--pb-radius);
	box-shadow: var(--pb-shadow);
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 4.6;
}

.pb-hero__title {
	color: var(--pb-blue);
	font-size: 40px;
	margin-bottom: 6px;
}
.pb-hero__subtitle {
	font-size: 21px;
	color: var(--pb-navy);
	font-weight: 700;
	font-family: var(--pb-font-heading);
	margin-bottom: 14px;
}
.pb-hero__lead { font-size: 16px; }
.pb-hero__content p { color: var(--pb-text); }

/* =====================================================================
   MEET THE DOCTOR (home)
   ===================================================================== */
.pb-about-intro { padding: 40px 0 56px; }

.pb-about-intro__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 40px;
	align-items: center;
}

.pb-about-intro__text h2 { color: var(--pb-blue); font-size: 26px; }
.pb-about-intro__text h2 strong { color: var(--pb-navy); }

.pb-about-intro__badge { display: flex; justify-content: center; }

.pb-badge-circle {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--pb-shadow);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.pb-badge-circle__number {
	font-family: var(--pb-font-heading);
	font-size: 56px;
	font-weight: 800;
	color: var(--pb-blue);
	line-height: 1;
}
.pb-badge-circle__label {
	font-family: var(--pb-font-heading);
	font-weight: 700;
	color: var(--pb-navy);
	font-size: 14px;
	letter-spacing: 0.5px;
	margin-top: 8px;
	text-transform: uppercase;
}
.pb-badge-circle--label { width: 210px; height: 210px; }
.pb-badge-circle__word {
	font-family: var(--pb-font-heading);
	font-weight: 800;
	color: var(--pb-blue);
	font-size: 21px;
	line-height: 1.3;
	text-transform: uppercase;
	padding: 0 10px;
}

/* =====================================================================
   GALLERY BAND (home) — blue background
   ===================================================================== */
.pb-gallery { background: var(--pb-blue); padding: 48px 0; }

.pb-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pb-gallery__item {
	margin: 0;
	background: #fff;
	padding: 6px;
	border-radius: var(--pb-radius-sm);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.pb-gallery__item img { border-radius: 6px; object-fit: cover; }

/* =====================================================================
   SPECIALITIES ICON LIST (home)
   ===================================================================== */
.pb-specialities-list { padding: 72px 0 40px; text-align: center; }

.pb-specialities-list__title {
	color: var(--pb-blue);
	font-size: 30px;
	margin-bottom: 18px;
}

.pb-specialities-list__subtitle {
	max-width: 720px;
	margin: 0 auto 44px;
	color: var(--pb-text-light);
	font-size: 15px;
}

.pb-icon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 40px;
	text-align: left;
	margin-bottom: 40px;
}

.pb-icon-grid__item { display: flex; align-items: center; gap: 14px; }

.pb-icon-grid__icon {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	color: var(--pb-blue);
}
.pb-icon-grid__icon svg { width: 100%; height: 100%; }

.pb-icon-grid__label {
	font-family: var(--pb-font-heading);
	font-weight: 700;
	color: var(--pb-navy);
	font-size: 15px;
}

.pb-rule {
	border: none;
	border-top: 3px solid var(--pb-blue);
	max-width: var(--pb-container);
	margin: 0 auto;
}

/* =====================================================================
   PEDIATRIE / PNEUMO ALLERGOLOGIE EXPLAINER (home)
   ===================================================================== */
.pb-explainer { padding: 64px 0; }

.pb-explainer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 60px;
	align-items: center;
}

.pb-explainer__badge { display: flex; justify-content: center; }

.pb-explainer__text h3 { color: var(--pb-blue); font-size: 21px; margin-top: 28px; }
.pb-explainer__text h3:first-child { margin-top: 0; }

/* =====================================================================
   BLOG TEASER (home)
   ===================================================================== */
.pb-blog-teaser { padding: 20px 0 72px; }

.pb-blog-teaser__media {
	position: relative;
	border-radius: var(--pb-radius);
	overflow: hidden;
}
.pb-blog-teaser__media img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }

.pb-blog-teaser__card {
	position: absolute;
	left: 40px;
	bottom: -30px;
	background: var(--pb-navy);
	color: #fff;
	padding: 28px 32px;
	border-radius: var(--pb-radius-sm);
	max-width: 380px;
	box-shadow: var(--pb-shadow);
}
.pb-blog-teaser__kicker {
	color: #9fb2d6;
	font-family: var(--pb-font-heading);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}
.pb-blog-teaser__title { margin-bottom: 4px; font-size: 19px; }
.pb-blog-teaser__title a { color: #fff; }
.pb-blog-teaser__title a:hover { color: var(--pb-blue); text-decoration: none; }
.pb-blog-teaser__date { color: #9fb2d6; font-size: 13px; margin-bottom: 10px; }
.pb-blog-teaser__excerpt { color: #d7deec; font-size: 14px; margin-bottom: 0; }

/* =====================================================================
   TESTIMONIAL (home)
   ===================================================================== */
.pb-testimonial {
	background: var(--pb-gray-bg);
	padding: 80px 0 60px;
	text-align: center;
	margin-top: 50px;
}
.pb-testimonial__title { color: var(--pb-blue); font-size: 28px; margin-bottom: 2px; }
.pb-testimonial__subtitle { color: var(--pb-text-light); margin-bottom: 20px; }
.pb-testimonial__quote-mark {
	display: block;
	font-family: var(--pb-font-heading);
	font-size: 60px;
	color: var(--pb-navy);
	line-height: 1;
	margin-bottom: 10px;
}
.pb-testimonial__quote p {
	font-family: var(--pb-font-heading);
	font-weight: 700;
	color: var(--pb-navy);
	font-size: 19px;
	line-height: 1.6;
	max-width: 760px;
	margin: 0 auto;
}
.pb-testimonial__dots { margin-top: 26px; display: flex; justify-content: center; gap: 8px; }
.pb-testimonial__dots span {
	width: 8px; height: 8px; border-radius: 50%;
	background: #c3cddb; display: inline-block;
}
.pb-testimonial__dots span.is-active { background: var(--pb-navy); }

/* =====================================================================
   APPOINTMENT FORM
   ===================================================================== */
.pb-appointment { padding: 72px 0; }

.pb-appointment__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: stretch;
}

.pb-appointment__title { color: var(--pb-blue); font-size: 28px; margin-bottom: 28px; }

.pb-appointment__image-col img {
	border-radius: var(--pb-radius);
	width: 100%;
	height: 70%;
	object-fit: cover;
}

.pb-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.pb-form__field { margin-bottom: 16px; }

.pb-form input[type="text"],
.pb-form input[type="email"],
.pb-form input[type="tel"],
.pb-form textarea {
	width: 100%;
	border: none;
	background: var(--pb-faq-bg);
	border-radius: var(--pb-radius-sm);
	padding: 15px 18px;
	font-family: var(--pb-font-body);
	font-size: 15px;
	color: var(--pb-navy);
	resize: vertical;
}
.pb-form input:focus,
.pb-form textarea:focus {
	outline: 2px solid var(--pb-blue);
	outline-offset: 1px;
}

.pb-form__footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	margin-top: 8px;
}
.pb-form__counter { color: var(--pb-text-light); font-size: 14px; }

/* =====================================================================
   FAQ ACCORDION ("En savoir plus") — identical on every page
   ===================================================================== */
.pb-faq { background: var(--pb-gray-bg); padding: 56px 0 72px; }

.pb-faq__title { color: var(--pb-blue); font-size: 26px; margin-bottom: 26px; }

.pb-accordion__item { margin-bottom: 12px; }

.pb-accordion__header { margin: 0; }

.pb-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--pb-faq-bg);
	border: none;
	border-radius: var(--pb-radius-sm);
	padding: 18px 22px;
	font-family: var(--pb-font-heading);
	font-weight: 700;
	font-size: 15px;
	color: var(--pb-navy);
	text-align: left;
	cursor: pointer;
	transition: background 0.2s ease;
}
.pb-accordion__trigger:hover { background: #eceef0; }

.pb-accordion__icon {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #d8dce0;
	color: var(--pb-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	transition: transform 0.25s ease, background 0.2s ease;
}
.pb-accordion__trigger[aria-expanded="true"] .pb-accordion__icon {
	transform: rotate(45deg);
	background: var(--pb-blue);
	color: #fff;
}

.pb-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: var(--pb-faq-bg);
	border-radius: 0 0 var(--pb-radius-sm) var(--pb-radius-sm);
}
.pb-accordion__panel-inner { padding: 0 22px 20px; color: var(--pb-text); font-size: 15px; }
.pb-accordion__item:has(.pb-accordion__trigger[aria-expanded="true"]) .pb-accordion__trigger {
	border-radius: var(--pb-radius-sm) var(--pb-radius-sm) 0 0;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.pb-footer { background: var(--pb-blue); color: #fff; padding: 56px 0 0; }

.pb-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 44px;
}

.pb-footer__heading {
	color: #fff;
	font-size: 18px;
	margin-bottom: 18px;
}

.pb-footer__hours li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	font-size: 14px;
}
.pb-footer__hours li:last-child { border-bottom: none; }

.pb-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 14px;
}
.pb-footer__contact a { color: #fff; }
.pb-footer__contact a:hover { color: rgba(255, 255, 255, 0.8); }
.pb-footer__icon { flex: 0 0 auto; }

.pb-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
}
.pb-footer__social a:hover { background: rgba(255, 255, 255, 0.3); text-decoration: none; }

.pb-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding: 18px 0;
	text-align: center;
	font-size: 13px;
}
.pb-footer__bottom p { margin: 0; color: rgba(255, 255, 255, 0.85); }

/* =====================================================================
   INNER PAGES (About / Specialities / Specialty / Contact)
   ===================================================================== */
.pb-page-hero { padding: 56px 0 24px; }
.pb-page-hero__title { color: var(--pb-blue); font-size: 30px; }
.pb-page-hero__lead { font-size: 16px; color: var(--pb-text); }

.pb-page-media { padding: 8px 0 40px; }
.pb-page-media img { border-radius: var(--pb-radius); box-shadow: var(--pb-shadow); width: 100%; aspect-ratio: 16/8; object-fit: cover; }

.pb-content-sections { padding: 8px 0 56px; }

.pb-content-block { margin-bottom: 40px; }
.pb-content-block:last-child { margin-bottom: 0; }
.pb-content-block h2 { color: var(--pb-blue); font-size: 21px; }

.pb-check-list li {
	position: relative;
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid var(--pb-border);
}
.pb-check-list li:last-child { border-bottom: none; }
.pb-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 10px;
	color: var(--pb-blue);
	font-weight: 700;
}

.pb-plain-list li { padding: 6px 0; }

.pb-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* Specialty card grid (Spécialités overview page) */
.pb-specialty-cards { padding: 16px 0 56px; }
.pb-specialty-cards__title { color: var(--pb-blue); font-size: 24px; margin-bottom: 26px; }

.pb-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pb-card {
	display: block;
	background: #fff;
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
	padding: 28px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	color: inherit;
}
.pb-card:hover {
	box-shadow: var(--pb-shadow);
	transform: translateY(-2px);
	text-decoration: none;
}
.pb-card__icon { display: inline-flex; width: 34px; height: 34px; color: var(--pb-blue); margin-bottom: 14px; }
.pb-card__icon svg { width: 100%; height: 100%; }
.pb-card__title { font-size: 17px; margin-bottom: 8px; color: var(--pb-navy); }
.pb-card__excerpt { font-size: 14px; color: var(--pb-text-light); margin-bottom: 14px; }
.pb-card__link { font-family: var(--pb-font-heading); font-weight: 700; color: var(--pb-blue); font-size: 14px; }

/* =====================================================================
   BLOG (Actualités → Blog)
   ===================================================================== */
.pb-blog { padding: 56px 0 72px; }
.pb-blog__title { color: var(--pb-blue); font-size: 30px; margin-bottom: 36px; }

.pb-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.pb-post-card {
	background: #fff;
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pb-post-card:hover { box-shadow: var(--pb-shadow); transform: translateY(-2px); }
.pb-post-card__media img { aspect-ratio: 16/10; object-fit: cover; }
.pb-post-card__body { padding: 22px; }
.pb-post-card__date { color: var(--pb-text-light); font-size: 13px; margin-bottom: 8px; }
.pb-post-card__title { font-size: 18px; margin-bottom: 10px; }
.pb-post-card__title a { color: var(--pb-navy); }
.pb-post-card__title a:hover { color: var(--pb-blue); text-decoration: none; }
.pb-post-card__excerpt { font-size: 14px; color: var(--pb-text-light); margin-bottom: 0; }

.pb-single-post { padding: 56px 0 72px; }
.pb-single-post__meta { color: var(--pb-text-light); font-size: 14px; margin-bottom: 18px; }
.pb-single-post__title { color: var(--pb-blue); font-size: 30px; }
.pb-single-post__content { margin-top: 24px; font-size: 16px; }
.pb-single-post__content img { border-radius: var(--pb-radius); margin: 20px 0; }

.pb-pagination { margin-top: 40px; display: flex; justify-content: center; gap: 10px; }
.pb-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	background: var(--pb-faq-bg);
	color: var(--pb-navy);
	font-weight: 600;
	font-size: 14px;
}
.pb-pagination .page-numbers.current { background: var(--pb-blue); color: #fff; }
.pb-pagination .page-numbers:hover { text-decoration: none; background: var(--pb-border); }

.pb-empty-state { padding: 60px 0; text-align: center; color: var(--pb-text-light); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
	.pb-hero__grid,
	.pb-about-intro__grid,
	.pb-explainer__grid,
	.pb-appointment__grid { grid-template-columns: 1fr; }

	.pb-about-intro__badge { order: -1; }
	.pb-badge-circle,
	.pb-badge-circle--label { width: 170px; height: 170px; }
	.pb-badge-circle__number { font-size: 44px; }

	.pb-explainer__badge { order: -1; }

	.pb-gallery__grid,
	.pb-icon-grid,
	.pb-contact-grid,
	.pb-card-grid,
	.pb-blog-grid { grid-template-columns: 1fr 1fr; }

	.pb-footer__grid { grid-template-columns: 1fr; gap: 30px; }

	.pb-blog-teaser__card { position: static; margin-top: -40px; margin-left: 20px; margin-right: 20px; }
}

@media (max-width: 760px) {
	.pb-nav-toggle { display: flex; }

	.pb-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--pb-border);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		box-shadow: 0 12px 20px rgba(20, 36, 61, 0.08);
	}
	.pb-nav.is-open { max-height: 600px; }

	.pb-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 24px 20px;
	}
	.pb-menu li { border-bottom: 1px solid var(--pb-border); }
	.pb-menu li:last-child { border-bottom: none; }
	.pb-menu a { display: block; padding: 14px 4px; }
	.pb-menu .pb-menu-cta { border-bottom: none; margin-top: 10px; }
	.pb-menu .pb-menu-cta a,
	.pb-menu li.pb-menu-cta > a { display: inline-block; padding: 12px 22px; }
	.pb-menu ul.sub-menu { position: static; box-shadow: none; padding-left: 14px; display: none; }
	.pb-menu li.is-open > ul.sub-menu { display: flex; }

	.pb-gallery__grid,
	.pb-icon-grid,
	.pb-contact-grid,
	.pb-card-grid,
	.pb-blog-grid { grid-template-columns: 1fr; }

	.pb-hero__title { font-size: 25px; }
	.pb-specialities-list__title,
	.pb-testimonial__title,
	.pb-page-hero__title { font-size: 24px; }

	.pb-form__row { grid-template-columns: 1fr; }

	.pb-blog-teaser__card { max-width: none; }
}
/* =====================================================================
   CONSULTATION PAGE - Gallery Styles
   ===================================================================== */

/* ---------- Gallery Section ---------- */
.pb-gallery-section {
	padding: 60px 0;
	background: var(--pb-gray-bg);
}

.pb-gallery__title {
	color: var(--pb-blue);
	text-align: center;
	font-size: 28px;
	margin-bottom: 8px;
}

.pb-gallery__subtitle {
	text-align: center;
	color: var(--pb-text-light);
	font-size: 16px;
	margin-bottom: 40px;
}

.pb-gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.pb-gallery-item {
	background: var(--pb-white);
	border-radius: var(--pb-radius);
	overflow: hidden;
	box-shadow: var(--pb-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pb-gallery-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(20, 36, 61, 0.12);
}

.pb-gallery-item img {
	width: 100%;
 	display: block;
}

.pb-gallery-caption {
	padding: 16px 20px;
	margin: 0;
	font-family: var(--pb-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--pb-navy);
	text-align: center;
	background: var(--pb-white);
	border-top: 1px solid var(--pb-border);
}

/* ---------- Responsive Gallery ---------- */
@media (max-width: 960px) {
	.pb-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 760px) {
	.pb-gallery-section {
		padding: 40px 0;
	}

	.pb-gallery__title {
		font-size: 24px;
	}

	.pb-gallery__subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.pb-gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.pb-gallery-item img {
		aspect-ratio: 16/10;
	}

	.pb-gallery-caption {
		font-size: 13px;
		padding: 12px 16px;
	}
}

@media (max-width: 480px) {
	.pb-gallery-section {
		padding: 30px 0;
	}

	.pb-gallery__title {
		font-size: 20px;
	}

	.pb-gallery-grid {
		gap: 16px;
	}

	.pb-gallery-item img {
		aspect-ratio: 16/9;
	}
}
/* =====================================================================
   TESTIMONIAL CAROUSEL
   ===================================================================== */
.pb-testimonial-carousel {
	position: relative;
	overflow: hidden;
	min-height: 280px;
}

.pb-testimonial-slide {
	display: none;
	animation: pbFadeIn 0.5s ease;
}

.pb-testimonial-slide--active {
	display: block;
}

@keyframes pbFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pb-testimonial__author {
	display: block;
	margin-top: 20px;
	font-family: var(--pb-font-heading);
	font-weight: 600;
	color: var(--pb-navy);
	font-size: 16px;
	font-style: normal;
}

/* Override existing dot styles for carousel */
.pb-testimonial__dots {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.pb-testimonial__dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #c3cddb;
	display: inline-block;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.pb-testimonial__dots span:hover {
	background: var(--pb-navy);
	transform: scale(1.1);
}

.pb-testimonial__dots span.is-active {
	background: var(--pb-navy);
	transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 760px) {
	.pb-testimonial-carousel {
		min-height: 350px;
	}

	.pb-testimonial__quote p {
		font-size: 17px;
	}

	.pb-testimonial__author {
		font-size: 14px;
	}

	.pb-testimonial__dots span {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.pb-testimonial-carousel {
		min-height: 400px;
	}

	.pb-testimonial__quote p {
		font-size: 15px;
	}
}

/* =====================================================================
   FOOTER — Google Map
   ===================================================================== */
.pb-footer__map {
	margin-top: 20px;
	width: 100%;
	border-radius: var(--pb-radius-sm);
	overflow: hidden;
	line-height: 0; /* removes inline gap under iframe */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pb-footer__map iframe {
	display: block;
	width: 100%;
	height: 200px;
	border: 0;
	filter: grayscale(15%) contrast(1.02); /* subtle blend with the footer blue */
	transition: filter 0.3s ease;
}

.pb-footer__map iframe:hover {
	filter: grayscale(0%) contrast(1);
}

/* Responsive */
@media (max-width: 960px) {
	.pb-footer__map iframe { height: 220px; }
}

@media (max-width: 760px) {
	.pb-footer__map iframe { height: 200px; }
}

/* =====================================================================
   TESTIMONIAL — Image carousel (3 per view)
   ===================================================================== */

/* Override the old carousel min-height */
.pb-testimonial-carousel--images {
	min-height: 0;
	overflow: hidden;
	padding: 0 4px; /* small breathing room for hover shadows */
}

.pb-testimonial-track {
	position: relative;
	width: 100%;
}

/* Each "slide" holds a 3-column grid */
.pb-testimonial-carousel--images .pb-testimonial-slide {
	display: none;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	animation: pbFadeIn 0.5s ease;
}

.pb-testimonial-carousel--images .pb-testimonial-slide--active {
	display: grid;
}

/* Individual image card */
.pb-testimonial__img {
	margin: 0;
	background: #fff;
	border-radius: var(--pb-radius);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(20, 36, 61, 0.10);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.pb-testimonial__img:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(20, 36, 61, 0.18);
}

.pb-testimonial__img img {
	width: 100%;
	height: 100%;
 	object-position: center;
	display: block;
}

/* Empty filler slot (so the last row aligns to the same grid) */
.pb-testimonial__img--empty {
	background: transparent;
	box-shadow: none;
	pointer-events: none;
}
.pb-testimonial__img--empty:hover {
	transform: none;
	box-shadow: none;
}

/* ---- Responsive ---- */

/* Tablet — 2 per view */
 

/* Mobile — 1 per view */
@media (max-width: 600px) {
	.pb-testimonial-carousel--images .pb-testimonial-slide {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}