:root {
	--navy: #0a2540;
	--navy-light: #14385e;
	--accent: #1e88e5;
	--bg: #f7f9fb;
	--card-bg: #ffffff;
	--text: #26313d;
	--text-muted: #5c6b7a;
	--radius: 14px;
	--shadow: 0 4px 18px rgba(10, 37, 64, 0.08);
	--shadow-hover: 0 10px 28px rgba(10, 37, 64, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

a { color: var(--accent); }

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero */
.hero {
	position: relative;
	background:
		linear-gradient(90deg, #eaf3fb 0%, #eaf3fb 40%, rgba(234, 243, 251, 0.6) 58%, rgba(234, 243, 251, 0.1) 78%),
		url("../bg-balkandent.jpg") right center / cover no-repeat,
		linear-gradient(180deg, #eaf3fb 0%, #cfe4f5 100%);
	color: var(--navy);
	padding: 56px 0 64px;
	text-align: left;
	min-height: 440px;
	display: flex;
	align-items: center;
}

.hero .container {
	max-width: none;
	margin: 0;
	padding-left: clamp(20px, 7vw, 110px);
	padding-right: 20px;
}

.hero-inner {
	max-width: 600px;
}

.hero .logo-wrap {
	display: block;
	width: fit-content;
	margin: 0 auto 18px;
}

.hero .logo {
	max-width: 240px;
	width: 55vw;
	height: auto;
	display: block;
	margin: 0;
}

.hero .slogan {
	max-width: 320px;
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto 26px;
}

.hero h1 {
	font-size: clamp(20px, 3vw, 30px);
	margin: 0;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.hero .h1-divider {
	width: 64px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
	margin: 16px 0;
}

.hero .doctor-name {
	font-size: 16px;
	font-weight: 500;
	color: var(--navy-light);
	margin: 0 0 18px;
}

.hero .contact-line {
	font-size: 16px;
	margin: 6px 0;
	color: var(--navy-light);
}

.hero .contact-line i {
	color: var(--accent);
	width: 18px;
	text-align: center;
	margin-right: 4px;
}

.hero .contact-line a {
	color: var(--navy);
	text-decoration: none;
	font-weight: 600;
}

.hero .contact-line a:hover { text-decoration: underline; }

.hero .cta {
	display: flex;
	gap: 12px;
	margin-top: 22px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

@media (max-width: 860px) {
	.hero {
		background:
			linear-gradient(180deg, #eaf3fb 0%, #cfe4f5 55%, #b9d9f2 100%);
		text-align: center;
		min-height: 0;
	}
	.hero-inner { max-width: 100%; }
	.hero .logo-wrap { margin: 0 auto 18px; }
	.hero .logo { margin: 0 auto; }
	.hero .slogan { margin: 0 auto 26px; }
	.hero .h1-divider { margin: 14px auto; }
	.hero .cta { justify-content: center; }
}

.btn {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 6px 18px rgba(30, 136, 229, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--navy);
	border: 1.5px solid rgba(10, 37, 64, 0.35);
}

.btn:hover { transform: translateY(-2px); }

/* NHIF badge */
.nhif-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: var(--navy-light);
	color: #fff;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.nhif-badge img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

/* Sections */
section {
	padding: 56px 0;
}

.section-title {
	text-align: center;
	font-size: clamp(22px, 3vw, 28px);
	color: var(--navy);
	margin: 0 0 8px;
}

.section-subtitle {
	text-align: center;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto 40px;
}

/* Services grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}

.service-card {
	background: var(--card-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px 22px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-3px);
}

.service-card img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	flex-shrink: 0;
}

.service-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
	color: var(--navy);
}

.service-card p {
	margin: 0;
	font-size: 14px;
	color: var(--text-muted);
}

/* Contact section */
.contact {
	background: #fff;
}

.map-wrap-full {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 460px;
	margin-bottom: 24px;
}

.map-wrap-full iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.contact-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px;
	background: var(--card-bg);
	border: 1px solid rgba(10, 37, 64, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px 28px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--text);
}

.contact-item a {
	color: var(--navy);
	font-weight: 700;
	text-decoration: none;
}

.contact-item a:hover { text-decoration: underline; }

.contact-icon {
	font-size: 17px;
	color: var(--accent);
	width: 20px;
	text-align: center;
}

.btn-outline-accent {
	background: transparent;
	color: var(--accent);
	border: 1.5px solid var(--accent);
}

/* CTA banner */
.cta-banner {
	background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
	color: #fff;
	padding: 44px 0;
}

.cta-banner-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cta-banner h2 {
	margin: 0 0 6px;
	font-size: 22px;
}

.cta-banner p {
	margin: 0;
	color: #cddceb;
}

.btn-call {
	background: #fff;
	color: var(--navy);
	white-space: nowrap;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

footer {
	text-align: center;
	padding: 24px 0;
	font-size: 13px;
	color: var(--text-muted);
	background: var(--bg);
}

footer a { color: var(--text-muted); }
