/* =============================================================
   Vascular Child Theme — Main Stylesheet
   vascular.com.au — Prof. Abdullah Omari
   ============================================================= */

/* ---- CSS Variables ---- */
:root {
	--vc-navy:        #0b1f3a;
	--vc-navy-mid:    #122b52;
	--vc-teal:        #1a6b5a;
	--vc-teal-dark:   #0f4a3e;
	--vc-teal-light:  #e6f3f0;
	--vc-cream:       #f7f4ef;
	--vc-cream-dark:  #ede9e2;
	--vc-gold:        #b8943a;
	--vc-gold-light:  #f5edd8;
	--vc-white:       #ffffff;
	--vc-text:        #0b1f3a;
	--vc-muted:       #5a6a7e;
	--vc-border:      rgba(11,31,58,0.10);

	--vc-font-display: 'Cormorant Garamond', Georgia, serif;
	--vc-font-body:    'DM Sans', sans-serif;

	--vc-radius:      4px;
	--vc-radius-lg:   8px;
	--vc-shadow:      0 2px 24px rgba(11,31,58,0.08);
	--vc-shadow-lg:   0 8px 48px rgba(11,31,58,0.13);
	--vc-transition:  0.25s ease;
}

/* ---- Base Reset & Typography ---- */
body {
	font-family: var(--vc-font-body);
	background: var(--vc-cream);
	color: var(--vc-text);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--vc-font-display);
	font-weight: 500;
	line-height: 1.2;
	color: var(--vc-navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: #334155; }

a {
	color: var(--vc-teal);
	text-decoration: none;
	transition: color var(--vc-transition);
}
a:hover { color: var(--vc-teal-dark); }

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

/* ---- Astra Overrides ---- */
.ast-container {
	max-width: 1160px !important;
	padding-left: 2rem !important;
	padding-right: 2rem !important;
}

/* Remove default Astra page title banner */
.ast-page-title-wrap,
.ast-archive-description {
	display: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead,
.site-header,
.ast-primary-header-bar {
	background: var(--vc-navy) !important;
	border-bottom: 1px solid rgba(255,255,255,0.08) !important;
	box-shadow: none !important;
}

.ast-primary-header-bar .ast-container {
	min-height: 70px !important;
}

/* Logo / site title */
.site-title,
.ast-site-identity .site-title a {
	font-family: var(--vc-font-display) !important;
	font-size: 1.5rem !important;
	font-weight: 500 !important;
	color: var(--vc-white) !important;
	letter-spacing: 0.01em;
}

.ast-site-identity .site-description {
	font-family: var(--vc-font-body) !important;
	font-size: 0.72rem !important;
	color: rgba(255,255,255,0.55) !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-top: 2px;
}

/* Nav links */
.main-header-menu > .menu-item > a,
.ast-header-custom-item a,
#masthead .main-navigation a {
	font-family: var(--vc-font-body) !important;
	font-size: 0.82rem !important;
	font-weight: 400 !important;
	color: rgba(255,255,255,0.75) !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.5rem 1rem !important;
	transition: color var(--vc-transition) !important;
}

.main-header-menu > .menu-item > a:hover,
.main-header-menu > .menu-item.current-menu-item > a {
	color: var(--vc-white) !important;
}

/* Phone number in header */
.ast-header-custom-item .ast-phone-number,
.ast-header-custom-item .ast-header-html {
	font-family: var(--vc-font-body) !important;
	font-size: 0.82rem !important;
	color: rgba(255,255,255,0.75) !important;
	letter-spacing: 0.04em;
}

/* Mobile nav toggle */
.ast-mobile-menu-trigger-minimal .menu-toggle,
button.menu-toggle {
	color: var(--vc-white) !important;
}

/* ============================================================
   HERO — FRONT PAGE
   ============================================================ */
.vc-hero {
	background: var(--vc-navy);
	position: relative;
	overflow: hidden;
	padding: 100px 0 80px;
}

.vc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 70% 50%, rgba(26,107,90,0.18) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 20% 30%, rgba(184,148,58,0.08) 0%, transparent 60%);
	pointer-events: none;
}

.vc-hero::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 80px;
	background: linear-gradient(to bottom, transparent, var(--vc-cream));
}

.vc-hero-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.vc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(184,148,58,0.15);
	border: 1px solid rgba(184,148,58,0.35);
	color: var(--vc-gold);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 1.5rem;
}

.vc-hero-badge::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--vc-gold);
	flex-shrink: 0;
}

.vc-hero h1 {
	font-family: var(--vc-font-display);
	font-size: clamp(2.8rem, 5vw, 4.2rem);
	font-weight: 500;
	color: var(--vc-white);
	line-height: 1.1;
	margin-bottom: 1.2rem;
}

.vc-hero h1 em {
	font-style: italic;
	color: rgba(255,255,255,0.7);
}

.vc-hero-lead {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.75;
	margin-bottom: 2rem;
	max-width: 520px;
}

.vc-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.vc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--vc-font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: var(--vc-radius);
	transition: all var(--vc-transition);
	cursor: pointer;
	text-decoration: none;
	border: none;
}

.vc-btn-primary {
	background: var(--vc-teal);
	color: var(--vc-white);
}
.vc-btn-primary:hover {
	background: var(--vc-teal-dark);
	color: var(--vc-white);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(26,107,90,0.35);
}

.vc-btn-outline {
	background: transparent;
	color: rgba(255,255,255,0.8);
	border: 1px solid rgba(255,255,255,0.25);
}
.vc-btn-outline:hover {
	background: rgba(255,255,255,0.08);
	color: var(--vc-white);
	border-color: rgba(255,255,255,0.4);
}

.vc-btn-teal-outline {
	background: transparent;
	color: var(--vc-teal);
	border: 1px solid var(--vc-teal);
}
.vc-btn-teal-outline:hover {
	background: var(--vc-teal);
	color: var(--vc-white);
}

/* Hero profile card */
.vc-hero-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--vc-radius-lg);
	padding: 32px;
	backdrop-filter: blur(10px);
}

.vc-hero-card img {
	width: 100%;
	max-width: 200px;
	border-radius: var(--vc-radius);
	display: block;
	margin: 0 auto 20px;
	filter: grayscale(15%);
}

.vc-hero-card-name {
	font-family: var(--vc-font-display);
	font-size: 1.4rem;
	color: var(--vc-white);
	text-align: center;
	margin-bottom: 4px;
}

.vc-hero-card-title {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.55);
	text-align: center;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.vc-hero-card-creds {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vc-hero-card-cred {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.65);
	line-height: 1.45;
}

.vc-hero-card-cred-icon {
	width: 18px;
	height: 18px;
	background: rgba(26,107,90,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.vc-hero-card-cred-icon svg {
	width: 10px;
	height: 10px;
	fill: var(--vc-teal);
}

/* ============================================================
   UNIQUE CREDENTIAL BANNER
   ============================================================ */
.vc-credential-bar {
	background: var(--vc-gold-light);
	border-top: 2px solid var(--vc-gold);
	border-bottom: 1px solid rgba(184,148,58,0.25);
	padding: 20px 0;
}

.vc-credential-bar-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	gap: 20px;
}

.vc-credential-bar-icon {
	width: 44px;
	height: 44px;
	background: var(--vc-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: white;
	font-size: 1.2rem;
}

.vc-credential-bar-text {
	flex: 1;
}

.vc-credential-bar-text strong {
	font-family: var(--vc-font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--vc-navy);
	display: block;
	margin-bottom: 2px;
}

.vc-credential-bar-text span {
	font-size: 0.85rem;
	color: #7a6020;
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.vc-section {
	padding: 80px 0;
}

.vc-section-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
}

.vc-section-label {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vc-teal);
	display: block;
	margin-bottom: 12px;
}

.vc-section-title {
	font-family: var(--vc-font-display);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 500;
	color: var(--vc-navy);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.vc-section-lead {
	font-size: 1.05rem;
	color: var(--vc-muted);
	max-width: 560px;
	line-height: 1.75;
}

/* ============================================================
   WHAT WE TREAT — CONDITIONS GRID
   ============================================================ */
.vc-conditions {
	background: var(--vc-white);
}

.vc-conditions-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	gap: 2rem;
	flex-wrap: wrap;
}

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

.vc-condition-card {
	background: var(--vc-cream);
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius-lg);
	padding: 32px;
	transition: all var(--vc-transition);
	position: relative;
	overflow: hidden;
}

.vc-condition-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 3px;
	height: 100%;
	background: var(--vc-teal);
	opacity: 0;
	transition: opacity var(--vc-transition);
}

.vc-condition-card:hover {
	border-color: rgba(26,107,90,0.2);
	box-shadow: var(--vc-shadow);
	transform: translateY(-2px);
}

.vc-condition-card:hover::before { opacity: 1; }

.vc-condition-icon {
	width: 48px;
	height: 48px;
	background: var(--vc-teal-light);
	border-radius: var(--vc-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.vc-condition-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--vc-teal);
	fill: none;
	stroke-width: 1.5;
}

.vc-condition-card h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: var(--vc-navy);
}

.vc-condition-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.vc-condition-card ul li {
	font-size: 0.88rem;
	color: var(--vc-muted);
	padding: 5px 0;
	border-bottom: 1px solid var(--vc-border);
	display: flex;
	align-items: center;
	gap: 8px;
}

.vc-condition-card ul li:last-child { border-bottom: none; }

.vc-condition-card ul li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--vc-teal);
	flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION — SPLIT LAYOUT
   ============================================================ */
.vc-about {
	background: var(--vc-cream);
}

.vc-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.vc-about-photo-wrap {
	position: relative;
}

.vc-about-photo-wrap img {
	width: 100%;
	border-radius: var(--vc-radius-lg);
	display: block;
	box-shadow: var(--vc-shadow-lg);
}

.vc-about-photo-accent {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 60%;
	height: 60%;
	border: 2px solid var(--vc-teal);
	border-radius: var(--vc-radius-lg);
	z-index: -1;
	opacity: 0.3;
}

.vc-qualifications {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0;
}

.vc-qual-badge {
	font-family: var(--vc-font-body);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--vc-teal-dark);
	background: var(--vc-teal-light);
	border: 1px solid rgba(26,107,90,0.2);
	padding: 5px 12px;
	border-radius: 100px;
}

.vc-highlight-box {
	background: var(--vc-navy);
	border-radius: var(--vc-radius-lg);
	padding: 28px 32px;
	margin: 28px 0;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.vc-highlight-box-icon {
	font-size: 1.5rem;
	line-height: 1;
	flex-shrink: 0;
}

.vc-highlight-box-text strong {
	display: block;
	font-family: var(--vc-font-display);
	font-size: 1.1rem;
	color: var(--vc-white);
	margin-bottom: 6px;
}

.vc-highlight-box-text p {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.65);
	margin: 0;
	line-height: 1.6;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.vc-services {
	background: var(--vc-navy);
}

.vc-services .vc-section-title { color: var(--vc-white); }
.vc-services .vc-section-lead { color: rgba(255,255,255,0.6); }
.vc-services .vc-section-label { color: rgba(184,148,58,0.9); }

.vc-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.vc-service-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--vc-radius-lg);
	padding: 32px;
	transition: all var(--vc-transition);
}

.vc-service-card:hover {
	background: rgba(255,255,255,0.09);
	border-color: rgba(26,107,90,0.4);
	transform: translateY(-2px);
}

.vc-service-number {
	font-family: var(--vc-font-display);
	font-size: 3rem;
	font-weight: 400;
	color: rgba(184,148,58,0.25);
	line-height: 1;
	margin-bottom: 16px;
}

.vc-service-card h3 {
	font-size: 1.2rem;
	color: var(--vc-white);
	margin-bottom: 10px;
}

.vc-service-card p {
	font-size: 0.88rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	margin: 0;
}

/* ============================================================
   REFERRAL CTA
   ============================================================ */
.vc-referral {
	background: var(--vc-teal);
	padding: 64px 0;
}

.vc-referral-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

.vc-referral h2 {
	font-family: var(--vc-font-display);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	color: var(--vc-white);
	margin-bottom: 10px;
}

.vc-referral p {
	font-size: 1rem;
	color: rgba(255,255,255,0.75);
	margin: 0;
}

.vc-referral-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
	flex-shrink: 0;
}

.vc-btn-white {
	background: var(--vc-white);
	color: var(--vc-teal-dark);
}
.vc-btn-white:hover {
	background: var(--vc-cream);
	color: var(--vc-teal-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.vc-btn-white-outline {
	background: transparent;
	color: rgba(255,255,255,0.85);
	border: 1px solid rgba(255,255,255,0.4);
}
.vc-btn-white-outline:hover {
	background: rgba(255,255,255,0.12);
	color: var(--vc-white);
}

/* ============================================================
   LOCATION / CONTACT INFO
   ============================================================ */
.vc-location {
	background: var(--vc-white);
}

.vc-location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.vc-contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vc-contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.vc-contact-item-icon {
	width: 44px;
	height: 44px;
	background: var(--vc-teal-light);
	border-radius: var(--vc-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vc-contact-item-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--vc-teal);
	fill: none;
	stroke-width: 1.5;
}

.vc-contact-item-label {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--vc-muted);
	font-weight: 500;
	margin-bottom: 3px;
}

.vc-contact-item-value {
	font-size: 0.95rem;
	color: var(--vc-text);
	line-height: 1.5;
}

.vc-contact-item-value a {
	color: var(--vc-teal);
}

.vc-map-embed {
	border-radius: var(--vc-radius-lg);
	overflow: hidden;
	box-shadow: var(--vc-shadow);
	background: var(--vc-cream-dark);
	min-height: 320px;
}

.vc-map-embed iframe {
	width: 100%;
	height: 320px;
	border: none;
	display: block;
}

.vc-map-placeholder {
	width: 100%;
	height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--vc-muted);
	font-size: 0.9rem;
}

.vc-map-placeholder svg {
	width: 40px;
	height: 40px;
	stroke: var(--vc-teal);
	fill: none;
	stroke-width: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon,
.site-footer,
.ast-footer-overlay {
	background: var(--vc-navy) !important;
	border-top: none !important;
}

.ast-footer-widget-area,
.footer-widget-area {
	padding: 60px 0 !important;
	border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* Footer widget text */
.ast-footer-widget-area *,
.footer-widget-area * {
	color: rgba(255,255,255,0.65) !important;
}

.ast-footer-widget-area h2,
.ast-footer-widget-area h3,
.ast-footer-widget-area h4,
.footer-widget-area h2,
.footer-widget-area h3 {
	font-family: var(--vc-font-display) !important;
	font-size: 1.1rem !important;
	color: var(--vc-white) !important;
	margin-bottom: 16px !important;
}

.ast-footer-widget-area a,
.footer-widget-area a {
	color: rgba(255,255,255,0.55) !important;
	transition: color var(--vc-transition) !important;
}

.ast-footer-widget-area a:hover,
.footer-widget-area a:hover {
	color: var(--vc-white) !important;
}

/* Footer bottom bar */
.ast-small-footer,
.footer-bar {
	background: rgba(0,0,0,0.25) !important;
	padding: 20px 0 !important;
}

.ast-small-footer *,
.footer-bar * {
	color: rgba(255,255,255,0.4) !important;
	font-size: 0.8rem !important;
}

.vascular-footer-credit {
	text-align: center;
	padding: 20px 2rem;
	background: rgba(0,0,0,0.25);
}

.vascular-footer-credit p {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.4) !important;
	margin: 0;
}

/* ============================================================
   PAGE-SPECIFIC: ABOUT PAGE
   ============================================================ */
.page-template-page-about .vc-page-hero,
body.page-id-about .vc-page-hero {
	background: var(--vc-navy);
}

.vc-page-hero {
	background: var(--vc-navy);
	padding: 60px 0 50px;
	position: relative;
	overflow: hidden;
}

.vc-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(26,107,90,0.12) 0%, transparent 70%);
	pointer-events: none;
}

.vc-page-hero-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.vc-page-hero h1 {
	font-family: var(--vc-font-display);
	font-size: clamp(2.4rem, 4vw, 3.4rem);
	color: var(--vc-white);
	margin-bottom: 12px;
}

.vc-page-hero p {
	font-size: 1rem;
	color: rgba(255,255,255,0.6);
	max-width: 600px;
	margin: 0;
}

/* ============================================================
   PAGE-SPECIFIC: CONTACT PAGE
   ============================================================ */
.vc-contact-form-wrap {
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius-lg);
	padding: 40px;
	box-shadow: var(--vc-shadow);
}

.vc-contact-form-wrap .wpcf7-form-control-wrap input,
.vc-contact-form-wrap .wpcf7-form-control-wrap textarea,
.vc-contact-form-wrap input[type="text"],
.vc-contact-form-wrap input[type="email"],
.vc-contact-form-wrap textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius);
	font-family: var(--vc-font-body);
	font-size: 0.92rem;
	color: var(--vc-text);
	background: var(--vc-cream);
	transition: border-color var(--vc-transition);
	appearance: none;
}

.vc-contact-form-wrap input:focus,
.vc-contact-form-wrap textarea:focus {
	outline: none;
	border-color: var(--vc-teal);
}

.vc-contact-form-wrap input[type="submit"],
.vc-contact-form-wrap .wpcf7-submit {
	background: var(--vc-teal);
	color: var(--vc-white);
	border: none;
	padding: 14px 32px;
	font-family: var(--vc-font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: var(--vc-radius);
	cursor: pointer;
	transition: all var(--vc-transition);
}

.vc-contact-form-wrap input[type="submit"]:hover,
.vc-contact-form-wrap .wpcf7-submit:hover {
	background: var(--vc-teal-dark);
}

/* ============================================================
   PAGE CONTENT STYLES (Gutenberg / Classic editor)
   ============================================================ */
.entry-content h2 {
	font-family: var(--vc-font-display);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--vc-navy);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.entry-content h3 {
	font-family: var(--vc-font-display);
	font-size: 1.3rem;
	color: var(--vc-navy);
	margin-top: 2rem;
	margin-bottom: 0.8rem;
}

.entry-content p {
	font-size: 0.97rem;
	line-height: 1.8;
	color: #334155;
}

.entry-content ul {
	padding-left: 0;
	list-style: none;
}

.entry-content ul li {
	padding: 6px 0 6px 22px;
	position: relative;
	color: #334155;
	font-size: 0.97rem;
}

.entry-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vc-teal);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.vc-hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.vc-hero-card { max-width: 400px; }
	.vc-conditions-grid { grid-template-columns: repeat(2, 1fr); }
	.vc-services-grid { grid-template-columns: repeat(2, 1fr); }
	.vc-about-grid { grid-template-columns: 1fr; gap: 40px; }
	.vc-about-photo-wrap { max-width: 420px; }
}

@media (max-width: 768px) {
	.vc-hero { padding: 60px 0 50px; }
	.vc-conditions-grid { grid-template-columns: 1fr; }
	.vc-services-grid { grid-template-columns: 1fr; }
	.vc-referral-inner { grid-template-columns: 1fr; }
	.vc-referral-actions { align-items: flex-start; }
	.vc-location-grid { grid-template-columns: 1fr; gap: 40px; }
	.vc-section { padding: 52px 0; }
	.vc-credential-bar-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.vc-hero-actions { flex-direction: column; align-items: flex-start; }
	.vc-btn { width: 100%; justify-content: center; }
	.vc-contact-form-wrap { padding: 24px; }
}
