:root {
	--bg-dark: #0b0b0b;
	--card-bg: #121212;
	--text-main: #ffffff;
	--text-muted: #cfcfcf;
	--accent: #f5b942;
	--accent-soft: #ffdd8a;
}

/* =========================================================
CONTENT SECTION STYLES
========================================================= */
.content-section {
	overflow: auto;
	height: 100vh;
	padding: 24px;
	max-height: 100vh;
	position: relative;
	box-sizing: border-box;
}
p.cta-wrapper{
	margin: 0;
	line-height: 0;
}
.bottom-cta br{
	display: none !important;
}
/* =========================================================
MODAL STYLES (Consolidated)
========================================================= */
.service-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.service-modal.active {
	display: flex;
}
.page-error-area.section-space {
	background: #000;
	padding: 120px 0px;
	color: #fff;
}
.page-error-top span {
	font-size: clamp(30px, 2.5vw, 36px);
	line-height: 1.2;
}
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9998;
	backdrop-filter: blur(4px);
}

.modal-box {
	background: var(--card-bg);
	width: 95%;
	max-width: 900px;
	max-height: 95vh;
	padding: 0;
	position: relative;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--accent);
	color: var(--text-main);
	overflow: hidden;
	z-index: 9999;
	margin: auto;
	display: flex;
	flex-direction: column;
}

.modal-flex {
	display: flex;
	width: 100%;
	height: 600px;
	gap: 0;
}

.modal-image {
	flex: 0 0 50%;
	min-height: 400px;
}

.modal-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	color: var(--text-main);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	font-size: 24px;
	border: none;
	background: rgba(0, 0, 0, 0.5);
	color: var(--text-main);
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.modal-close:hover {
	background: var(--accent-primary);
	color: var(--bg-dark);
	transform: scale(1.03);
}

.modal-footer {
	background: var(--card-bg);
	padding: 25px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
	position: relative;
	z-index: 5;
}

/* Scroll area */
.modal-scroll {
	flex: 1;
	overflow-y: auto;
	padding: 30px;
}

.modal-scroll::-webkit-scrollbar {
	width: 6px;
}

.modal-scroll::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

.modal-scroll::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 3px;
}
.learn-more-btn {
	padding: 10px 20px;
}
/* Bottom fixed link */
.bottom-cta {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	padding: 14px 24px !important;
	font-weight: 600;
	text-decoration: none;
	z-index: 1001;
	border-radius: 8px;
		height: 46px;
		display: flex;
		justify-content: center;
		align-items: center;
	backdrop-filter: blur(4px);
}

.contact-btn {
	width: 100%;
	padding: 16px 24px;
	background: var(--accent);
	color: var(--bg-dark);
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	transition: all 0.3s ease;
	min-height: 52px;
}

.contact-btn i {
	font-size: 18px;
}

.contact-btn:hover {
	background: var(--accent-soft);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(245, 185, 66, 0.3);
}

.modal-content ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding-left: 0;
	margin: 12px 0;
	list-style: none;
}

.modal-content ul li {
	padding: 8px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.3;
}

/* =========================================================
WHY US SECTION
========================================================= */
.why-section {
	padding: 100px 0;
	background: #000;
	color: var(--text-main);
}

.why-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
}

.why-subtitle {
	color: var(--accent);
	letter-spacing: 0.25em;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.why-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 24px;
}

.why-title span {
	background: linear-gradient(90deg, var(--accent), var(--accent-soft));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.why-intro ul,
.why-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-intro ul li,
.why-list li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	color: #e0e0e0;
}

.why-intro ul li::before,
.why-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	font-weight: 700;
	color: var(--accent);
}

.why-box {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 42px;
	backdrop-filter: blur(10px);
}

.why-box h3 {
	font-size: 26px;
	color: #fff;
	margin-bottom: 6px;
}

.why-box-highlight {
	color: var(--accent);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 22px;
}

.why-box-content p {
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 14px;
}

.why-btn {
	display: inline-block;
	margin-top: 28px;
	padding: 14px 30px;
	background: linear-gradient(90deg, var(--accent), var(--accent-soft));
	color: #000;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 24px;
}

.flex-box {
	flex: 1 1 calc(50% - 24px);
	background: #111;
	padding: 0 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.flex-box h4 {
	font-size: 18px;
	margin-bottom: 12px;
	color: #ffffff;
}

.flex-box ul {
	list-style: none;
	padding: 0;
}

.flex-box ul li {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 6px;
}

/* =========================================================
SERVICE DETAIL SECTION
========================================================= */
.service-detail-section {
	padding: 0 0 40px;
	background: #0b0b0b;
}

.service-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 120px;
}

.service-row.reverse {
	direction: rtl;
}

.service-row.reverse .service-content {
	direction: ltr;
}

.service-image img {
	width: 100%;
	height: 420px;
	object-fit: fill;
	border-radius: 6px;
}

.service-content {
	color: #ffffff;
}

.service-title {
	font-size: 36px;
	margin-bottom: 16px;
}

.service-desc {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 24px;
}

.service-content h4 {
	font-size: 16px;
	letter-spacing: 0.15em;
	color: var(--accent);
	margin: 28px 0 12px;
}

.service-content ul {
	padding-left: 18px;
	list-style: none;
}

.service-content ul li {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 10px;
	position: relative;
}

.service-content ul li::before {
	content: "•";
	color: var(--accent);
	position: absolute;
	left: -14px;
}

/* =========================================================
BANNER ACCORDION
========================================================= */
.seasons-banner-container {
	display: flex;
	justify-content: center;
	position: relative;
	height: 44vh;
	width: 100%;
	gap: 12px;
}

.seasons-banner-container .item {
	flex: 0 0 30%;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	transition: flex 0.5s;
}

.seasons-banner-container .photo {
	height: 100%;
	width: 100%;
}

.seasons-banner-container img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s;
	cursor: pointer;
}

.seasons-banner-container .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.8s;
}

.seasons-banner-container .item:hover {
	flex: 0 0 60%;
}

.seasons-banner-container .item:hover .overlay {
	background-image: linear-gradient(
		to top,
		rgb(2, 2, 2),
		rgba(47, 46, 46, 0) 30%
	);
	opacity: 1;
}

.seasons-banner-container .item:hover img {
	transform: scale(1.1);
}

/* Alternative banner accordion */
.custom-banner-accordion {
	display: flex;
	overflow: hidden;
	margin: 40px 0;
}

.custom-banner-accordion > div {
	flex: 1;
	transition: flex 0.5s ease;
	overflow: hidden;
}

.custom-banner-accordion > div:hover {
	flex: 3;
}

.custom-banner-accordion img {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.custom-banner-accordion > div:hover img {
	transform: scale(1.1);
}

/* =========================================================
BLOG HERO
========================================================= */
.blog-hero {
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	color: #fff;
	text-align: center;
	position: relative;
}

.blog-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
}

.blog-hero .container {
	position: relative;
	z-index: 2;
}

.blog-hero .blog-title {
	font-size: 36px;
	margin-bottom: 10px;
	color: #fff;
}

.breadcrumb {
	font-size: 14px;
	color: #fff;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.breadcrumb a {
	color: #fff;
	text-decoration: underline;
}

.breadcrumb a:hover {
	text-decoration: none;
}

.blog-banner img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

/* =========================================================
CARD STYLES
========================================================= */
.card {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.card-title {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

/* =========================================================
TESTIMONIAL STYLES
========================================================= */
.testimonial-bg {
	font-family: "Open Sans", sans-serif;
	padding: 35px 70px;
	text-align: center;
	position: relative;
	box-shadow: 4px 14px 24px 0px #06497c0a;
	width: 50%;
	margin: 0 auto;
	background-color: #fff;
}

.testimonial-bg:before {
	content: url("../images/quote.png");
	width: 75px;
	height: 75px;
	line-height: 75px;
	text-align: center;
	font-size: 50px;
	color: #00457b;
	position: absolute;
	top: -40px;
	left: 2%;
}

.testimonial-bg .owl-prev,
.testimonial-bg .owl-next {
	padding: 5px 20px !important;
	position: absolute;
	top: 50%;
	color: #0973c5 !important;
	border: 1px solid #0973c5 !important;
}

.testimonial-bg .owl-prev {
	left: -31%;
	border-right: none !important;
}

.testimonial-bg .owl-next {
	right: -31%;
	border-left: none !important;
}

.testimonial-bg .owl-prev:hover,
.testimonial-bg .owl-next:hover {
	background-color: #0973c5 !important;
	color: #fff !important;
}

.testimonial-bg .owl-carousel .owl-item img {
	display: block;
	width: auto;
	margin: 0 auto;
}

.testimonial {
	padding: 0 15px;
}

.testimonial .description {
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
	padding: 20px 0;
}

.testimonial .pic {
	width: 100px;
	height: 100px;
	margin: 25px auto;
	overflow: hidden;
}

.testimonial .pic img {
	width: 100%;
	height: auto;
}

.testimonial .title {
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
	margin: 0;
}

.testimonial .post {
	display: inline-block;
	font-size: 20px;
	color: #848484;
}

.testimonial .profile_name {
	font-size: 18px;
	font-weight: 600;
	line-height: 25px;
	color: #0973c5;
	padding-top: 10px;
}

.testimonial .profile_describe {
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	color: #1e1e1e99;
}

.testimonial .pic1 img {
	width: 60px;
	height: 60px;
	border-radius: 50px;
	object-fit: cover;
}

/* =========================================================
MEDIA QUERIES (Consolidated)
========================================================= */
@media (max-width: 991px) {
	.content-section {
		height: 62vh;
		overflow: auto;
		box-sizing: border-box;
	}

	.bottom-cta {
		z-index: 1000;
	}

	.flex-box {
		flex: 1 1 calc(50% - 24px);
	}

	.service-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.service-row.reverse {
		direction: ltr;
	}

	.service-image img {
		height: 320px;
	}

	.service-title {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.content-section {
		height: 100vh;
		max-height: 35vh;
		overflow: auto;
		padding-bottom: 80px;
		box-sizing: border-box;
	}

	.bottom-cta {
		bottom: 15px;
		width: 75%;
	}

	.modal-flex {
		height: auto;
		min-height: 400px;
	}

	.contact-btn {
		min-width: 180px;
		padding: 12px 20px;
		font-size: 15px;
	}

	.modal-box {
		width: 95%;
		max-height: 95vh;
		margin: auto;
		display: flex;
		flex-direction: column;
	}

	.modal-flex {
		flex-direction: column;
		min-height: auto;
	}

	.modal-image {
		height: 250px;
		flex: none;
		width: 100%;
	}

	.modal-scroll {
		padding: 20px;
	}

	.modal-footer {
		padding: 15px 20px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.why-title {
		font-size: 32px;
	}

	.testimonial-bg {
		width: 75%;
	}
}

@media (max-width: 767px) {
	.testimonial-bg {
		width: 95%;
		padding: 50px 40px;
	}

	.testimonial-bg .owl-prev {
		left: -10%;
	}

	.testimonial-bg .owl-next {
		right: -10%;
	}

	.seasons-banner-container .item {
		flex: 0 0 18%;
	}

	.seasons-banner-container .item:hover {
		flex: 1;
	}
}

@media (max-width: 575px) {
	.content-section {
		height: 100vh;
		max-height: 35vh;
		overflow: auto;
		padding-bottom: 70px;
		box-sizing: border-box;
	}

	.bottom-cta {
		bottom: 10px;
		width: 75%;
	}

	.modal-flex {
		height: auto;
		min-height: 350px;
	}

	.contact-btn {
		min-width: 160px;
		padding: 10px 16px;
		font-size: 14px;
	}

	.flex-box {
		flex: 1 1 100%;
	}

	.modal-content ul {
		grid-template-columns: 1fr;
	}

	.modal-box {
		width: 98%;
		margin: auto;
		border-radius: 12px;
		display: flex;
		flex-direction: column;
	}

	.modal-image {
		height: 200px;
	}

	.modal-scroll {
		padding: 15px;
	}

	.modal-close {
		width: 35px;
		height: 35px;
		font-size: 20px;
		top: 10px;
		right: 10px;
	}

	.modal-footer {
		padding: 12px 15px;
	}
}

@media (max-width: 480px) {
	.content-section {
		height: 100vh;
		max-height: 35vh;
		overflow: auto;
		padding-bottom: 60px;
		box-sizing: border-box;
	}

	.bottom-cta {
		bottom: 20px;
		width: 75%;
		padding: 16px !important;
		height: 56px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.modal-flex {
		height: auto;
		min-height: 300px;
	}

	.contact-btn {
		min-width: 140px;
		padding: 8px 14px;
		font-size: 13px;
	}

	.testimonial-bg:before {
		width: 55px;
		height: 55px;
		line-height: 55px;
		font-size: 40px;
	}

	.testimonial-bg {
		padding: 30px 10px;
	}

	.modal-box {
		width: 90%;
		margin: auto;
		border-radius: 0;
		max-height: 100vh;
		display: flex;
		flex-direction: column;
	}

	.modal-image {
		height: 180px;
	}

	.modal-scroll {
		padding: 12px;
	}

	.modal-footer {
		padding: 10px 12px;
	}
}

@media (max-width: 360px) {
	.testimonial .title,
	.testimonial .post {
		font-size: 16px;
	}
}
