/* Modern trust-led visual layer */

:root {
	--ink: #102433;
	--ink-soft: #3b5668;
	--surface: #ffffff;
	--surface-soft: #f4f8f7;
	--surface-blue: #eef7fb;
	--line: #d9e7e6;
	--shadow: 0 20px 55px rgba(16, 36, 51, 0.12);
	--shadow-soft: 0 12px 35px rgba(16, 36, 51, 0.08);
	--radius: 8px;
	--radius-sm: 6px;
}

html {
	scroll-padding-top: 128px;
}

body {
	background: var(--surface-soft);
	color: var(--ink);
	font-family:
		"Roboto",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	line-height: 1.55;
}

h1,
h2,
h3,
h4 {
	color: var(--ink);
	letter-spacing: 0;
}

p {
	color: var(--ink-soft);
}

.container {
	max-width: 1180px;
}

.button,
button,
.download-btn {
	border-radius: var(--radius-sm) !important;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	font-weight: 700;
}

.toolbar {
	background: #0b5f8f;
	padding: 0 28px;
	align-items: center;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.toolbar,
.toolbar a,
.toolbar p {
	font-size: 1.45rem;
}

header {
	min-height: 82px;
	padding: 0 42px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	box-shadow: 0 12px 34px rgba(16, 36, 51, 0.1);
}

.logo-img {
	height: 4.4em;
}

.logo-txt {
	color: var(--ink);
	font-weight: 700;
	font-size: 2rem;
}

header .navbar ul li a,
header .navbar ul li .dropdown-button {
	border-top: 0;
	border-radius: var(--radius-sm);
	color: var(--ink);
	font-weight: 600;
	padding: 14px 15px;
}

header .navbar .active {
	color: var(--primary);
}

header .navbar ul li a:hover,
header .navbar ul li .dropdown-button:hover {
	background: var(--surface-blue);
	border-top: 0;
	color: var(--primary);
}

header .navbar ul li ul {
	width: 235px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 8px;
}

header .navbar ul li ul li {
	border-top: 0;
}

header .navbar ul li ul li a {
	color: var(--ink);
	padding: 11px 12px;
}

header .navbar ul li ul li a:hover {
	background: var(--surface-blue);
	color: var(--primary);
	border-top: 0;
}

main {
	padding-top: 132px;
}

.hero {
	top: 0 !important;
	min-height: calc(100vh - 132px);
	background-attachment: scroll !important;
	isolation: isolate;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(6, 34, 50, 0.9),
			rgba(6, 34, 50, 0.62) 48%,
			rgba(6, 34, 50, 0.28)
		),
		radial-gradient(
			circle at 15% 20%,
			rgba(255, 255, 255, 0.16),
			transparent 28%
		);
	z-index: -1;
}

.container-hero {
	width: min(1180px, calc(100% - 48px));
	padding: 72px 0 !important;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr) !important;
	gap: 48px !important;
}

.hero-intro {
	max-width: 680px;
}

.hero-intro h1 {
	color: #ffffff;
	font-size: clamp(4rem, 6vw, 7.8rem);
	line-height: 1.02;
	text-transform: none;
	font-weight: 800;
	margin-bottom: 22px;
}

.hero-intro p,
.hero-quotes p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 2rem;
	line-height: 1.65;
}

.hero-intro .button,
.hero-actions .button,
.stat-container .button,
.passion-text .button,
.contact-form button {
	background: var(--quaternary) !important;
	border: 1px solid var(--quaternary) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 28px rgba(187, 10, 105, 0.22);
}

.hero-intro .button:hover,
.hero-actions .button:hover,
.stat-container .button:hover,
.passion-text .button:hover,
.contact-form button:hover {
	background: #9d0758 !important;
	border-color: #9d0758 !important;
	color: #ffffff !important;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hero-actions .button--secondary {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.55) !important;
	box-shadow: none;
	color: #ffffff !important;
}

.hero-actions .button--secondary:hover {
	background: #ffffff !important;
	border-color: #ffffff !important;
	color: var(--ink) !important;
}

.hero-eyebrow,
.section-eyebrow {
	color: var(--tertiary);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-eyebrow {
	color: #bfe8e5;
	margin-bottom: 12px;
}

.hero-quotes {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 30px;
}

.hero-quotes p {
	border-left: 0;
	color: var(--ink-soft);
	margin: 0 0 18px;
	padding: 0;
}

.hero-quotes p:last-child {
	margin-bottom: 0;
}

.hero-trust-list {
	display: grid;
	gap: 14px;
	margin: 0;
}

.hero-trust-item {
	border-left: 4px solid var(--tertiary);
	padding-left: 14px;
}

.hero-trust-item strong {
	color: var(--ink);
	display: block;
	font-size: 1.7rem;
	margin-bottom: 2px;
}

.cqc-banner {
	background: #6d276a;
}

.cqc-banner__inner {
	padding: 14px 28px;
	align-items: center;
}

.cqc-banner__dates,
.cqc-banner__title {
	color: #ffffff;
}

.trust-strip,
.care-pathway,
.home-cta {
	padding: 72px 24px;
}

.trust-strip {
	background: var(--surface);
}

.trust-grid,
.pathway-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: min(1180px, 100%);
	margin: 0 auto;
}

.trust-item,
.pathway-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 24px;
}

.trust-item strong {
	color: var(--primary);
	display: block;
	font-size: 2.8rem;
	line-height: 1;
	margin-bottom: 10px;
}

.trust-item p,
.pathway-card p {
	margin: 0;
}

.section-header {
	width: min(760px, 100%);
	margin: 0 auto 36px;
	text-align: center;
}

.section-header h1,
.section-header h2 {
	font-size: clamp(3rem, 4vw, 4.8rem);
	font-weight: 800;
	margin: 10px 0 12px;
	text-transform: none;
}

.section-header p {
	font-size: 1.8rem;
}

.services-container,
.passion-container,
.values-container,
.mission,
.contact {
	background: var(--surface-soft);
	padding: 76px 0;
	margin: 0 auto;
}

.services-container h1,
.services-container h2,
.passion-container h1,
.passion-container h2,
.mission h1,
.mission h2,
.values h1,
.values h2,
.contact > h1,
.contact > h2 {
	color: var(--ink);
	font-size: clamp(3rem, 4vw, 4.8rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 34px;
	text-transform: none;
}

.services .cards-section,
.values .cards-section {
	gap: 22px;
	width: 100%;
}

.services .card,
.values .card,
.testimonial-wrapper .testimonial-box {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.services .card:hover,
.values .card:hover,
.testimonial-wrapper .testimonial-box:hover {
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.services .card h2 {
	background: var(--surface);
	color: var(--ink);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.25;
	padding: 20px 20px 4px;
	text-transform: none;
}

.services .card p {
	color: var(--ink-soft);
	padding: 12px 20px 24px;
}

.services .card p span {
	color: var(--primary);
	font-weight: 800;
}

.statistics {
	background: var(--surface-blue);
	padding: 70px 0;
}

.stat-container {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	margin-top: 0;
	overflow: hidden;
}

.left-stats,
.right-stats {
	padding: 48px 34px;
}

.left-stats h1,
#counter {
	color: var(--primary);
	font-size: clamp(7rem, 12vw, 12rem);
	font-weight: 800;
}

.left-stats p,
.right-stats p {
	color: var(--ink-soft);
	font-size: 1.9rem;
}

.right-care,
.contact-care {
	background: var(--surface-soft);
	border-radius: var(--radius);
	margin-top: 18px;
	padding: 20px;
	width: 100%;
}

.right-stats .stat-icon {
	color: var(--tertiary);
}

.care-pathway {
	background: var(--surface);
}

.pathway-card {
	position: relative;
}

.pathway-card span {
	align-items: center;
	background: var(--primary);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	margin-bottom: 18px;
	width: 34px;
}

.pathway-card h3 {
	font-size: 2.1rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.passion {
	align-items: center;
	width: min(1180px, calc(100% - 48px));
}

.passion-text {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 34px;
}

.passion-img img,
.mission-img img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.testimonial-container {
	background: #0b5f8f;
	border-bottom: 0;
	padding: 80px 0;
}

.testimonial-header {
	margin: 0 auto 28px;
	text-transform: none;
}

.testimonial-header > h1,
.testimonial-header > h2 {
	color: #ffffff;
	font-size: clamp(3rem, 4vw, 4.8rem);
	font-weight: 800;
	margin: 0;
	text-transform: none;
}

.testimonial-text {
	line-height: 1.65;
}

.home-cta {
	background:
		linear-gradient(90deg, rgba(16, 36, 51, 0.88), rgba(16, 36, 51, 0.72)),
		url("/assets/imgs/regus-nvcs.webp") center / cover no-repeat;
	color: #ffffff;
	text-align: center;
}

.home-cta__inner {
	margin: 0 auto;
	max-width: 780px;
}

.home-cta h2 {
	color: #ffffff;
	font-size: clamp(3rem, 4vw, 5rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
}

.home-cta p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 2rem;
	margin-bottom: 28px;
}

.home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.home-cta .button {
	background: #ffffff;
	border: 1px solid #ffffff;
	color: var(--ink);
	padding: 10px 20px;
}

.home-cta .button--primary {
	background: var(--quaternary);
	border-color: var(--quaternary);
	color: #ffffff;
}

.service-detail,
.service-cta {
	padding: 72px 24px;
}

.service-detail {
	background: var(--surface-soft);
}

.service-detail__inner,
.service-cta__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.service-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 26px;
	align-items: start;
}

.service-detail__intro,
.service-detail__list,
.service-cta__inner {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 32px;
}

.service-detail h2,
.service-cta h2 {
	font-size: clamp(2.8rem, 4vw, 4.4rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
}

.service-detail ul {
	display: grid;
	gap: 14px;
	margin: 0;
}

.service-detail li {
	color: var(--ink-soft);
	font-size: 1.7rem;
	line-height: 1.55;
	padding-left: 28px;
	position: relative;
}

.service-detail li::before {
	background: var(--tertiary);
	border-radius: 999px;
	content: "";
	height: 9px;
	left: 4px;
	position: absolute;
	top: 0.78em;
	width: 9px;
}

.service-cta {
	background: var(--surface);
	padding-top: 0;
}

.service-cta__inner {
	align-items: center;
	background: var(--surface-blue);
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.service-cta__inner p {
	font-size: 1.8rem;
	margin: 0;
}

.service-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.service-cta .button {
	background: var(--primary);
	border: 1px solid var(--primary);
	color: #ffffff;
	padding: 10px 18px;
}

.service-cta .button--secondary {
	background: transparent;
	color: var(--primary);
}

.container-mission,
.container-contact {
	width: min(1180px, calc(100% - 48px));
}

.mission h1,
.mission h2,
.values h1,
.values h2 {
	margin-top: 0;
}

.values-container {
	background: var(--surface-soft);
}

.values .card {
	background: var(--surface);
	color: var(--ink);
	height: auto;
	min-height: 260px;
	padding: 30px;
}

.values .card i,
.cards-section .card i {
	background: var(--surface-blue);
	border: 0;
	color: var(--primary);
	position: static;
}

.values .card h2,
.cards-section .card h2 {
	color: var(--ink);
	position: static;
	text-transform: none;
	letter-spacing: 0;
}

.values .card p,
.cards-section .card p {
	color: var(--ink-soft);
	opacity: 1;
}

.values .card:hover h2,
.values .card:hover p,
.values .card:hover i {
	color: #ffffff;
}

.values .card:hover i {
	background: rgba(255, 255, 255, 0.18);
}

.contact {
	padding-top: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container-contact {
	grid-template-columns: 1fr 0.85fr 0.9fr;
	gap: 18px;
	align-items: stretch;
	justify-items: center;
	margin-inline: auto;
	max-width: 1180px;
}

.contact-grid1,
.contact-grid2,
.contact-grid3 {
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 42px;
	text-align: center;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.contact-grid1,
.contact-grid2,
.contact-grid3 {
	display: flex;
	flex-direction: column;
}

.contact-grid1,
.contact-grid2 {
	background: var(--surface);
}

.contact-grid3 {
	background: var(--surface-blue);
	color: var(--ink);
}

.contact-grid1 .content-grid1,
.contact-form,
.contact-form form,
.center-grid3 {
	width: 100%;
}

.contact-form label {
	text-align: left;
}

.contact-grid2 table {
	border-collapse: separate;
	border-spacing: 0 10px;
	display: table;
	margin-inline: auto;
	width: min(100%, 360px);
}

.contact-grid2 th,
.contact-grid2 td {
	padding: 13px 16px;
	text-align: left;
}

.contact-grid2 th {
	background: var(--ink);
	color: #ffffff;
	font-size: 1.35rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.contact-grid2 th:first-child {
	border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.contact-grid2 th:last-child {
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.contact-grid2 td {
	background: var(--surface-soft);
	border-bottom: 1px solid var(--line);
	border-top: 1px solid var(--line);
	color: var(--ink);
	font-weight: 600;
}

.contact-grid2 td:first-child {
	border-left: 1px solid var(--line);
	border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.contact-grid2 td:last-child {
	border-right: 1px solid var(--line);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.contact-grid2 tr:last-child td {
	background: var(--surface-blue);
	border-color: #b9dde8;
	color: var(--primary);
	font-weight: 800;
}

.contact-grid3 h1,
.contact-grid3 h2,
.contact-grid3 p,
.contact-grid3 a,
.contact-grid3 .contact-details,
.contact-grid3 .contact-details a,
.contact-grid3 .contact-details i {
	color: var(--ink);
}

.contact-grid3 .download-box {
	justify-content: center;
}

.contact-grid3 .download-btn {
	color: #ffffff;
}

.contact-grid3 .download-btn:hover {
	color: var(--ink);
}

.contact-form form {
	max-width: none;
	width: 100%;
}

.contact-form input,
.contact-form textarea {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font: inherit;
	min-height: 44px;
}

.contact-form textarea {
	min-height: 140px;
}

footer {
	background: #102433;
	padding: 56px 0;
}

footer .wrapper {
	gap: 32px;
}

footer h4,
footer .logo a {
	color: #ffffff;
	text-transform: none;
}

footer p,
footer a,
footer .footer-social-text,
footer .phone-text,
footer .email-text,
footer .locale-text {
	color: rgba(255, 255, 255, 0.82);
}

footer .footer-menu a.footer-active {
	color: #ffffff;
	font-weight: 800;
}

.developed-by {
	background: var(--surface);
	border-top: 1px solid var(--line);
	padding: 9px 12px;
}

.developed-by .copyright,
.developed-by .copyright p,
.developed-by .hollywoodjack,
.developed-by .hj-text,
.developed-by .hj-link,
.developed-by .hj-text-span {
	color: var(--ink);
}

.developed-by .hj-link:hover,
.developed-by .hj-link:hover .hj-text-span {
	color: #7b124b;
}

@media (max-width: 1080px) {
	header {
		padding: 0 24px;
	}

	.container-hero,
	.container-contact,
	.trust-grid,
	.pathway-grid,
	.service-detail__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.hero {
		min-height: auto;
	}
}

@media (max-width: 850px) {
	main {
		padding-top: 82px;
	}

	header {
		min-height: 82px;
	}

	header .navbar {
		background: var(--surface);
		box-shadow: var(--shadow);
		padding: 10px;
	}

	header .navbar ul li a,
	header .navbar ul li .dropdown-button {
		color: var(--ink);
	}

	header .navbar ul li ul li {
		background: var(--surface-blue);
	}

	.container-hero,
	.container-contact,
	.trust-grid,
	.pathway-grid,
	.service-detail__grid {
		grid-template-columns: 1fr !important;
		width: min(100% - 32px, 680px);
	}

	.service-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero-intro h1 {
		font-size: 4.2rem;
	}

	.hero-quotes {
		padding: 24px;
	}

	.trust-strip,
	.care-pathway,
	.home-cta,
	.services-container,
	.passion-container,
	.values-container,
	.mission,
	.contact,
	.testimonial-container {
		padding: 52px 0;
	}
}

@media (max-width: 560px) {
	header {
		padding: 0 16px;
	}

	.logo-img {
		height: 3.8em;
	}

	.hero-intro h1 {
		font-size: 3.6rem;
	}

	.hero-intro p,
	.hero-quotes p,
	.home-cta p {
		font-size: 1.7rem;
	}

	.hero-actions,
	.home-cta__actions,
	.service-cta__actions {
		flex-direction: column;
	}

	.hero-actions .button,
	.home-cta .button,
	.service-cta .button {
		width: 100%;
	}

	.left-stats,
	.right-stats,
	.contact-grid1,
	.contact-grid2,
	.contact-grid3 {
		padding: 28px;
	}
}
