/* Larger font for Quality and Safety | Documentation section title if it uses a unique class */
.quality-header__title {
	font-size: 2.7rem;
	font-weight: 900;
	letter-spacing: 0.7px;
	line-height: 1.1;
}
html, body {
	overflow-x: hidden;
	max-width: 100vw;
}
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

/* Base styles */

:root {
	--brand-dark: #005a51;
	--brand-accent: #f59e0b;
	--brand-light: #f8fafc;
	--text: #0f172a;
	--muted: #64748b;
}

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

html,
body {
	margin: 0;
	padding: 0;
	font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text);
	background: var(--brand-light);
}

html {
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: none;
}

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

/* Header styles */

.header {
	background: rgba(14, 38, 53, 0.88);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	color: white;
	padding: 8px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.header__title {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.nav {
	display: flex;
	gap: 16px;
	font-size: 0.95rem;
	color: #e2e8f0;
}

/* Brand + header helpers for 4GC AND ARJILL CONCRETE BATCHING PLANT CO */

.topbar {
	background: #111827;
	color: #cbd5f5;
	font-size: 0.85rem;
	padding: 6px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand__mark {
	width: 44px;
	height: 44px;
	background: var(--brand-accent);
	color: #111827;
	font-weight: 900;
	border-radius: 8px;
	display: grid;
	place-items: center;
	letter-spacing: 1px;
}

.brand__name {
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.brand__sub {
	font-size: 0.8rem;
	color: #cbd5f5;
}

.nav__link {
	padding: 6px 8px;
	border-radius: 4px;
	transition: background 0.18s, color 0.18s;
}

.nav__link--highlight, .nav__link[href="#contact"] {
	background: #f59e0b;
	color: #fff !important;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(245,158,11,0.10);
}

.nav__link:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* Hero section styles */

.hero {
	background: linear-gradient(180deg, #0f172a 0%, #1f2a37 100%);
	color: white;
	padding: 80px 0;
	text-align: left;
}

.hero__title {
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 12px 0;
}

.hero__subtitle {
	color: #cbd5f5;
	max-width: 640px;
	margin: 0 0 24px 0;
	line-height: 1.6;
}

.hero--image {
	position: relative;
	background-size: cover;
	background-position: center;
}

.hero--image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.35));
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 700px;
}

.hero__eyebrow {
	color: var(--brand-accent);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

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

/* Button styles */

.btn {
	display: inline-block;
	background: #f59e0b;
	color: #fff;
	padding: 12px 20px;
	border-radius: 6px;
	border: none;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.btn:hover, .btn:focus-visible {
	background: #d97706;
	box-shadow: 0 4px 18px rgba(245, 158, 11, 0.18);
	transform: translateY(-2px) scale(1.03);
}

.btn--ghost {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Section styles */

.section {
	padding: 56px 0;
}

.section__title {
	font-size: 2.1rem;
	margin-bottom: 16px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.section__text {
	color: var(--muted);
	line-height: 1.7;
}

.section--muted {
	background: #f1f5f9;
}

/* Overview section styles */

.section--overview {
	background: #f8fafc;
}

.overview__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 36px;
	align-items: center;
}

.overview__kicker {
	font-size: 0.8rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #6b7280;
	font-weight: 700;
	margin-bottom: 12px;
}

.overview__title {
	font-size: 2.4rem;
	line-height: 1.15;
	margin: 0 0 14px 0;
	color: #0f172a;
	font-weight: 800;
}

.overview__text {
	color: #6b7280;
	line-height: 1.8;
	margin: 0 0 22px 0;
	text-align: justify;
}

.overview__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
}

.overview__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: #0f172a;
}

.overview__icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #0f172a;
	display: inline-grid;
	place-items: center;
	color: #0f172a;
}

.overview__icon svg {
	width: 12px;
	height: 12px;
}

.coverage-card {
	background: linear-gradient(145deg, #0f172a, #111827 55%, #1f2a37);
	color: #f8fafc;
	border-radius: 22px;
	padding: 30px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.coverage-card__title {
	font-size: 1.4rem;
	margin: 0 0 12px 0;
	font-weight: 700;
}

.coverage-card__text {
	color: #cbd5f5;
	line-height: 1.7;
	margin: 0 0 22px 0;
}

.coverage-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.35));
	color: #bbf7d0;
	font-weight: 600;
	font-size: 0.85rem;
}

.coverage-card__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #22c55e;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

/* Card styles */

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.card {
	background: white;
	border-radius: 10px;
	padding: 18px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
	transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s cubic-bezier(.4,2,.6,1);
	will-change: transform, box-shadow;
}

.card:hover, .card:focus-visible {
	transform: scale(1.045) translateY(-4px);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(245, 158, 11, 0.10);
	z-index: 2;
}

.card__title {
	font-weight: 700;
	margin-bottom: 8px;
}

/* Stats styles */

.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.stat {
	background: white;
	border-radius: 10px;
	padding: 18px;
	text-align: center;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.stat__value {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--brand-dark);
}

.stat__label {
	color: var(--muted);
	font-size: 0.9rem;
}

/* Featured project styles */
.project-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 16px;
}

.project-card {
	position: relative;
	min-height: 260px;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.project-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.7));
}

.project-card__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 16px;
	color: white;
	z-index: 1;
}

.project-card__title {
	margin: 0 0 6px 0;
	font-size: 1.05rem;
	font-weight: 700;
}

.project-card__meta {
	margin: 0;
	color: #e2e8f0;
	font-size: 0.9rem;
}

.project-item {
	background: #e5e7eb;
	padding: 12px;
	border-radius: 10px;
}

.project-item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.project-caption {
	text-align: center;
	font-weight: 600;
	margin: 10px 0 0 0;
	color: #111827;
}

/* Clients styles */
.clients-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.clients-item {
	background: #e5e7eb;
	padding: 12px;
	border-radius: 10px;
}

.clients-item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.clients-caption {
	text-align: center;
	font-weight: 600;
	margin: 10px 0 0 0;
	color: #111827;
}

/* Scrollable image holder rows */

.scroll-row {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.scroll-row--center {
	justify-content: center;
}

.scroll-row--light {
	background: transparent;
	padding: 14px;
	border-radius: 14px;
	box-shadow: none;
}

.scroll-row > .card,
.scroll-row > .project-item,
.scroll-row > .clients-item {
	flex: 0 0 280px;
	overflow: hidden;
	scroll-snap-align: start;
}

.scroll-row img {
	transition: transform 0.35s ease;
	transform-origin: center;
}

.scroll-row img:hover {
	transform: scale(1.06);
}

.scroll-row::-webkit-scrollbar {
	height: 10px;
}

.scroll-row::-webkit-scrollbar-track {
	background: #9ca3af;
	border-radius: 999px;
}

.scroll-row::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #0f172a, #1f2a37);
	border: 2px solid rgba(248, 250, 252, 0.7);
	border-radius: 999px;
}

.scroll-row::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #111827, #263244);
}

.scroll-row {
	scrollbar-color: #1f2a37 #9ca3af;
	scrollbar-width: thin;
}

/* New layout helpers */

.two-col {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 24px;
	align-items: start;
}

/* Info card styles */

.info-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.info-card__title {
	margin: 0 0 8px 0;
	font-weight: 700;
}

.info-card__meta {
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.9rem;
}

/* List styles */

.list {
	margin: 12px 0 0 0;
	padding-left: 18px;
	color: var(--muted);
	line-height: 1.7;
}

/* Quality & Safety styles */

.quality-section {
	background: #f1f5f9;
}

.quality-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 22px;
	color: #111827;
}

.quality-header__title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 700;
}

.quality-header__divider {
	color: #9ca3af;
	font-weight: 600;
}

.quality-header__subtitle {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
	color: #1f2937;
}

.quality-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.quality-card {
	background: #f8fafc;
	border-radius: 14px;
	padding: 18px 20px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: start;
	transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s cubic-bezier(.4,2,.6,1);
	will-change: transform, box-shadow;
}

.quality-card:hover, .quality-card:focus-visible {
	transform: scale(1.045) translateY(-4px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(245, 158, 11, 0.10);
	z-index: 2;
}

.quality-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fef3c7;
	color: #b45309;
	display: grid;
	place-items: center;
}

.quality-card__icon svg {
	width: 22px;
	height: 22px;
}

.quality-card__title {
	font-weight: 700;
	color: #111827;
	margin: 0 0 6px 0;
}

.quality-card__list {
	margin: 0;
	padding-left: 18px;
	color: #4b5563;
	line-height: 1.6;
}

.quality-card__text {
	margin: 0 0 6px 0;
	color: #4b5563;
	line-height: 1.6;
}

/* Process steps styles */

.steps {
	display: grid;
	gap: 14px;
	margin-top: 14px;
}

.step {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 12px;
	align-items: start;
	background: white;
	border-radius: 10px;
	padding: 14px;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.step__num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--brand-accent);
	color: #111827;
	display: grid;
	place-items: center;
	font-weight: 700;
}

.step__title {
	font-weight: 700;
	margin-bottom: 4px;
}

/* Contact grid styles */

.contact-section {
	position: relative;
	color: #f8fafc;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.55)),
		url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=80")
		center / cover no-repeat;
}

.contact-hero {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 28px auto;
}

.contact-hero__title {
	font-size: 2rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	color: var(--brand-accent);
}

.contact-hero__divider {
	width: 60px;
	height: 4px;
	margin: 0 auto 14px auto;
	background: #e2e8f0;
	border-radius: 999px;
	opacity: 0.7;
}

.contact-hero__text {
	margin: 0;
	color: #e2e8f0;
	line-height: 1.7;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 26px 0 0 0;
	align-items: stretch;
}

.contact-grid--light {
	background: #ffffff;
	padding: 26px;
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.contact-card {
	background: transparent;
	border-radius: 10px;
	padding: 12px 10px 4px 10px;
	text-align: center;
	color: #111827;
	width: 100%;
}

.contact-card__icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 12px auto;
	border-radius: 50%;
	background: rgba(245, 158, 11, 0.12);
	color: var(--brand-accent);
	display: grid;
	place-items: center;
	transition: transform 0.18s cubic-bezier(.4,2,.6,1);
}

@keyframes icon-float {
	0% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
	100% { transform: translateY(0); }
}

.contact-card__icon:hover, .contact-card__icon:focus-visible {
	animation: icon-float 1.4s cubic-bezier(.4,2,.6,1) infinite;
}

.contact-card__icon svg {
	width: 26px;
	height: 26px;
}

.contact-card__title {
	font-weight: 700;
	margin-bottom: 6px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	font-size: 0.95rem;
}

.contact-card__text {
	margin: 0 0 6px 0;
	color: #6b7280;
	line-height: 1.6;
	font-size: 0.95rem;
}

.contact-cta {
	margin-top: 24px;
	text-align: center;
}

/* Logo styles */

.brand__logo {
	height: 56px;
	width: auto;
	display: block;
}

/* Footer styles */

.footer--pro {
	background: linear-gradient(135deg, #0b1220, #111b34);
	color: #cbd5f5;
	padding: 56px 0 24px 0;
	text-align: left;
}

.footer__container {
	max-width: 1280px;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.footer__grid > div:nth-child(2) {
	text-align: center;
}

.footer__logo {
	height: 60px;
	width: auto;
	display: block;
	margin-bottom: 0;
	max-width: 220px;
}

.footer__logo-row {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.footer__text {
	color: #a7b3cc;
	line-height: 1.7;
	margin: 0 0 12px 0;
}

.footer__accreditation {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 12px 0 6px 0;
	color: #e2e8f0;
	font-weight: 600;
}

.footer__accreditation--compact {
	justify-content: center;
	margin-top: 16px;
	font-size: 0.85rem;
	letter-spacing: 0.4px;
}

.footer__logo-holder {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(15, 23, 42, 0.6);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
}

.footer__logo-holder img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.footer__badge {
	height: 40px;
	width: auto;
	display: block;
}

.footer__title {
	color: #e2e8f0;
	margin: 0 0 12px 0;
	font-size: 1rem;
}

.footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.footer__list a {
	color: #a7b3cc;
}

.footer__newsletter {
	margin: 16px 0;
}

.footer__label {
	display: block;
	margin-bottom: 8px;
	color: #e2e8f0;
	font-weight: 600;
}

.footer__input-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.footer__input {
	flex: 1 1 200px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(148, 163, 184, 0.3);
	background: rgba(15, 23, 42, 0.6);
	color: #e2e8f0;
}

.footer__btn {
	padding: 10px 16px;
	border: none;
	border-radius: 8px;
	background: #3b82f6;
	color: white;
	font-weight: 600;
	cursor: pointer;
}

.footer__hint {
	font-size: 0.85rem;
	color: #94a3b8;
	margin: 10px 0 0 0;
}

.footer__social {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 12px;
}

.footer__social-links {
	display: flex;
	gap: 10px;
}

.footer__social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(148, 163, 184, 0.15);
	color: #e2e8f0;
	font-size: 0.85rem;
}

.footer__contact .footer__text {
	margin-bottom: 8px;
}

.footer__bottom {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(148, 163, 184, 0.2);
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 16px;
	align-items: center;
	font-size: 0.85rem;
	color: #94a3b8;
}

.footer__links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.footer__links a {
	color: #94a3b8;
}

.footer__status {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

.footer__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	display: inline-block;
}

.footer__sep {
	opacity: 0.5;
}

.footer__map {
	margin-top: 12px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.2);
}

.footer__map iframe {
	width: 100%;
	height: 180px;
	border: 0;
	display: block;
}

/* Floating scroll arrows */

.scroll-fab {
	position: fixed;
	right: 20px;
	bottom: 24px;
	display: grid;
	place-items: center;
	padding: 6px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.9));
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 60;
}

.scroll-fab.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.scroll-fab__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, #0f172a, #1f2a37);
	color: #f8fafc;
	cursor: pointer;
	display: grid;
	place-items: center;
}

.scroll-fab__btn svg {
	width: 20px;
	height: 20px;
	transform: rotate(180deg);
}

.scroll-fab__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(15, 23, 42, 0.3);
}

.scroll-fab__btn:focus-visible {
	outline: 3px solid rgba(245, 158, 11, 0.6);
	outline-offset: 3px;
}


/* Email modal styles */

.modal {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(15, 23, 42, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	padding: 20px;
	z-index: 50;
}

.modal.is-open {
	opacity: 1;
	visibility: visible;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
}

.modal__card {
	position: relative;
	max-width: 520px;
	width: min(92vw, 520px);
	background: white;
	border-radius: 16px;
	padding: 26px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
	z-index: 1;
}

.modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: #e2e8f0;
	color: #0f172a;
	font-size: 1.2rem;
	cursor: pointer;
}

.modal__title {
	margin: 0 0 6px 0;
	font-size: 1.3rem;
}

.modal__subtitle {
	margin: 0 0 18px 0;
	color: var(--muted);
}

.modal__form {
	display: grid;
	gap: 10px;
}

.modal__label {
	font-weight: 600;
	font-size: 0.9rem;
}

.modal__input,
.modal__textarea {
	width: 100%;
	border-radius: 10px;
	border: 1px solid #cbd5f5;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 0.95rem;
}

.modal__textarea {
	resize: vertical;
}

.modal__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 8px;
}

/* Company Values styles */

.values-section {
	background: linear-gradient(135deg, #0f172a, #1f2a37);
	color: #e2e8f0;
}

.values-section--solid {
	background: #0f172a;
}

#projects.section {
	padding-top: 24px;
	padding-bottom: 24px;
}

#clients.section {
	margin-top: -20px;
	padding-top: 24px;
}

#clients .section__title {
	margin-top: 0;
}

#services.section {
	padding-top: 28px;
}

#values.section {
	padding-top: 16px;
}

.values-section .section__title {
	color: #f8fafc;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 14px;
}

.values-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 12px;
	padding: 18px;
	backdrop-filter: blur(6px);
	transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s cubic-bezier(.4,2,.6,1);
	will-change: transform, box-shadow;
}

.values-card:hover, .values-card:focus-visible {
	transform: scale(1.045) translateY(-4px);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(245, 158, 11, 0.10);
	z-index: 2;
}

.values-card__title {
	margin: 0 0 10px 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #f8fafc;
}

.values-card .section__text {
	color: #e2e8f0;
}

/* Responsive styles */

@media (max-width: 900px) {
	.cards {
		grid-template-columns: 1fr;
	}
	.hero__title {
		font-size: 2rem;
	}
	.nav {
		flex-wrap: wrap;
	}
	.brand__name {
		font-size: 0.95rem;
	}
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.project-grid {
		grid-template-columns: 1fr;
	}
	.two-col {
		grid-template-columns: 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr;
	}
	.footer__bottom {
		grid-template-columns: 1fr;
		justify-items: start;
	}
	.footer__status {
		justify-content: flex-start;
	}
	.values-grid {
		grid-template-columns: 1fr;
	}
	.overview__grid {
		grid-template-columns: 1fr;
	}
	.overview__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hero__title {
		font-size: 1.7rem;
	}
	.stats {
		grid-template-columns: 1fr;
	}
}

/* Responsive menu icon styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}
.menu-toggle svg {
    display: block;
    color: #fff;
}

/* Hide nav on mobile by default */
.nav--mobile-hidden {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav {
        flex-direction: column;
        gap: 0;
        background: rgba(31, 42, 55, 0.95);
        position: absolute;
        top: 70px;
        right: 20px;
        min-width: 160px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        z-index: 200;
    }
    .nav.nav--mobile-hidden {
        display: none;
    }
    .nav:not(.nav--mobile-hidden) {
        display: flex;
    }
    .nav__link {
        padding: 12px 16px;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav__link:last-child {
        border-bottom: none;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav {
        display: flex !important;
        position: static;
        background: none;
        flex-direction: row;
        gap: 16px;
        min-width: unset;
        border-radius: 0;
        box-shadow: none;
        color: #e2e8f0;
    }
}

@media (max-width: 900px) {
	.quality-header {
		flex-direction: column;
		gap: 4px;
		text-align: center;
	}
	.quality-header__title,
	.quality-header__subtitle {
		font-size: 1.1rem;
	}
	.quality-header__divider {
		display: none;
	}
	.quality-grid {
		grid-template-columns: 1fr !important;
		gap: 14px;
	}
	.quality-card {
		grid-template-columns: 38px 1fr;
		padding: 12px 10px;
		font-size: 0.97rem;
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
	.quality-card__icon {
		width: 32px;
		height: 32px;
	}
	.quality-card__icon svg {
		width: 16px;
		height: 16px;
	}
	.quality-card__title {
		font-size: 1rem;
	}
	.quality-card__list,
	.quality-card__text {
		font-size: 0.97rem;
	}
}
