:root {
	--yellow: #f6c400;
	--black: #111;
	--grey: #f4f4f4;
	--cream: #faf7ee;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #222;
	line-height: 1.6;
	background: #fff;
}

a {
	text-decoration: none;
	color: inherit;
}

header {
	background: #111;
	color: #fff;
	padding: 16px 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 99;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo {
	font-size: 30px;
	font-weight: 900;
}

.logo span {
	color: var(--yellow);
}

nav a {
	color: #fff;
	margin-left: 18px;
	font-weight: 700;
	font-size: 14px;
}

.highlight-link {
	background: var(--yellow);
	color: #000;
	padding: 10px 14px;
	border-radius: 6px;
	margin-left: 18px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-link:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.phone-top {
	background: var(--yellow);
	color: #000;
	padding: 10px 14px;
	border-radius: 5px;
	font-weight: 900;
}

.hero {
	min-height: 680px;
	background: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.62)), url('images/Front page picture.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 70px 20px;
}

.hero-inner {
	max-width: 1020px;
	margin: auto;
}

.hero h1 {
	font-size: 60px;
	line-height: 1.05;
	margin: 0 0 18px;
}

.hero p {
	font-size: 24px;
	margin: 0 0 28px;
}

.hero-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-top: 18px;
	text-align: left;
	list-style: none;
	padding: 0;
}

.hero-features li {
	background: rgba(255, 255, 255, 0.12);
	padding: 14px 18px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 900;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	background: var(--yellow);
	color: #000;
	padding: 16px 30px;
	border-radius: 6px;
	font-weight: 900;
	margin: 7px;
}

.btn.dark {
	background: #111;
	color: white;
	border: 2px solid white;
}

.trustbar {
	background: #111;
	color: #fff;
	padding: 18px;
	text-align: center;
	font-weight: 800;
}

.trustbar span {
	margin: 0 16px;
	display: inline-block;
}

section {
	max-width: 1180px;
	margin: auto;
	padding: 72px 22px;
}

h2 {
	font-size: 40px;
	line-height: 1.1;
	margin: 0 0 20px;
}

h3 {
	line-height: 1.2;
}

.center {
	text-align: center;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}

.card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.card h3 {
	margin-top: 0;
	font-size: 24px;
}

.yellow-section {
	background: var(--yellow);
	max-width: none;
}

.cream-section {
	background: var(--cream);
	max-width: none;
}

.dark-section {
	background: #111;
	color: #fff;
	max-width: none;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.project {
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.project img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

.project div {
	padding: 20px;
}

.badge {
	display: inline-block;
	background: #111;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 8px;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: center;
}

.quote-box {
	background: #f4f4f4;
	border-radius: 16px;
	padding: 30px;
}

.reviews {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}

.review {
	background: #fff;
	border-radius: 14px;
	padding: 25px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	color: #222;
}

.stars {
	color: var(--yellow);
	font-size: 22px;
	letter-spacing: 2px;
}

.faq details {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 18px;
	margin-bottom: 12px;
}

.faq summary {
	font-weight: 900;
	cursor: pointer;
	font-size: 18px;
}

.area-grid {
	columns: 3;
	font-weight: 700;
}

.links-grid a {
	display: block;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 10px;
	font-weight: 800;
}

.links-grid a .service-desc {
	display: block;
	margin-top: 8px;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	color: #555;
}

input,
textarea,
select {
	width: 100%;
	padding: 14px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
}

.file-list-title {
	font-weight: 700;
	margin-bottom: 8px;
}

.file-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 12px;
	margin-bottom: 8px;
	font-size: 14px;
}

.file-item span {
	flex: 1;
	margin-right: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.remove-file-btn {
	background: transparent;
	border: 1px solid #c00;
	color: #c00;
	padding: 6px 10px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 13px;
}

.remove-file-btn:hover {
	background: #c00;
	color: #fff;
}

button {
	background: #111;
	color: #fff;
	border: 0;
	padding: 15px 24px;
	border-radius: 6px;
	font-weight: 900;
	font-size: 16px;
	cursor: pointer;
}

.whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	background: #25d366;
	color: white;
	padding: 15px 18px;
	border-radius: 50px;
	font-weight: 900;
	z-index: 100;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

footer {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 30px;
}

.small {
	font-size: 13px;
	color: #666;
}

.visualiser-intro {
	max-width: 850px;
	margin: 0 auto 28px;
	text-align: center;
}

.responsive-iframe-container {
	position: relative;
	overflow: visible;
	padding-top: 53.25%;
	background: transparent;
}

.responsive-iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	overflow: hidden;
}

.visualiser-note {
	font-size: 14px;
	color: #666;
	text-align: center;
	margin-top: 14px;
}

.breadcrumb {
	font-size: 14px;
	color: #555;
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	nav {
		display: none;
	}

	.hero h1 {
		font-size: 40px;
	}

	.hero p {
		font-size: 20px;
	}

	.split {
		grid-template-columns: 1fr;
	}

	.area-grid {
		columns: 1;
	}

	.phone-top {
		display: none;
	}

	.responsive-iframe-container {
		padding-top: 120%;
	}
}

.gallery a.gallery-lightbox {
	display: block;
	color: inherit;
}

.project img {
	cursor: zoom-in;
	transition: transform 0.25s ease;
}

.project img:hover {
	transform: scale(1.02);
}

.lightbox-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.lightbox-overlay.active {
	display: flex;
}

.lightbox-overlay img {
	max-width: 96vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
	position: fixed;
	top: 18px;
	right: 24px;
	color: #fff;
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
}

.lightbox-caption {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 16px;
	text-align: center;
	color: #fff;
	font-weight: 800;
	font-size: 16px;
}

.testimonial-strip {
	background: #f8f8f8;
	padding: 58px 22px;
}

.testimonial-strip .flex-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.testimonial-strip .strip-card {
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-strip .strip-card p {
	margin: 0 0 12px;
	font-size: 15px;
	color: #333;
	line-height: 1.7;
}

.testimonial-strip .strip-card strong {
	display: block;
	color: #111;
	font-size: 14px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	gap: 18px;
	margin-bottom: 18px;
}

.form-grid textarea {
	grid-column: 1 / -1;
}

.form-grid input[type="file"] {
	grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
	margin: 0;
}

.input,
textarea,
select {
	margin-bottom: 0;
}

.btn {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
	transition: all 0.25s ease;
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.btn.dark {
	background: #000;
	color: #fff;
	border-color: #000;
}

@media (max-width: 900px) {
	header {
		padding: 14px 18px;
	}

	header nav a {
		margin-left: 14px;
		font-size: 13px;
	}

	.hero {
		padding: 60px 18px;
	}

	.hero h1 {
		font-size: 48px;
	}

	.hero p {
		font-size: 20px;
	}

	.quote-box,
	.card,
	.review,
	.strip-card {
		padding: 22px;
	}

	.section {
		padding: 54px 18px;
	}
}

@media (max-width: 680px) {
	section {
		padding: 40px 18px;
	}

	.hero {
		min-height: auto;
		padding: 50px 18px;
	}

	.hero h1 {
		font-size: 34px;
	}

	.hero-features {
		grid-template-columns: 1fr;
	}

	.quote-box,
	.card,
	.review {
		padding: 18px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-grid textarea {
		grid-column: auto;
	}

	.header nav {
		flex-wrap: wrap;
	}

	.header nav a {
		margin: 10px 10px 0 0;
		font-size: 14px;
	}

	.trustbar span {
		display: block;
		margin: 8px 0;
	}
}
