/* ========== RESET & BASE ========== */
html,
body {
	font-family: 'Lato', sans-serif;
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.page-container {
	width: 100%;
	max-width: 100vw;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
}

/* ========== HEADER & BANNER ========== */
.header {
	background: #B2C8D2;
	width: 100%;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
}

.scrolling-text {
	font-family: "Allura", cursive;
	font-size: 25px;
	color: #2F3A4C;
	text-align: center;
	background: #B2C8D2;
	padding: 10px 10px;
	overflow: hidden;
	white-space: nowrap;
	animation: marquee 12s linear infinite;
	box-sizing: border-box;
}

@keyframes marquee {
	0% {
		text-indent: 100%;
	}

	100% {
		text-indent: -100%;
	}
}

/* ========== NAVIGATION ========== */
.main-nav {
	background: #2F3A4C;
	padding: 15px 0;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	overflow: visible !important;
	position: relative;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 35px;
	position: relative;
}

.logo {
	height: 80px;
	width: auto;
	margin-left: 16px;
	display: block;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
	position: relative;
}

.hamburger span {
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	margin: 5px 0;
	transition: 0.3s;
}

.nav-links {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-left: auto;
	box-sizing: border-box;
}

nav a.apply-now,
.hero-content .apply-now {
	background: #B09375;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 18px 22px;
	font-weight: bold;
	transition: background 0.2s, transform 0.2s;
	display: inline-block;
}

nav a.apply-now:hover,
.hero-content .apply-now:hover {
	background: #8c735d;
	color: #fff !important;
	transform: translateY(-2px) scale(1.04);
}

/* Base nav links */
nav a {
	color: #F6F5F1;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	background: #2F3A4C;
	border-radius: 50px;
	padding: 12px;
	transition: color 0.2s;
}

/* Hover effect for ALL nav links*/
nav a:hover {
	background: none;
	color: #8c735d;
}

/* No hover effect for logo link */
nav a.logo-link,
nav a.logo-link:hover,
nav a.logo-link:active,
nav a.logo-link:focus {
	background: none !important;
	color: inherit !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

/* logo link align image nicely */
nav a.logo-link {
	display: flex;
	align-items: center;
}

/* NAVIGATION RESPONSIVE */
@media (max-width: 1000px) {
	.nav-container {
		padding-right: 15px;
	}

	.logo {
		height: 60px;
		margin-left: 8px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		background: #2F3A4C;
		width: 100vw;
		left: 0;
		right: 0;
		position: absolute;
		top: 100%;
		z-index: 1000;
		font-family: 'Lato', sans-serif;
		padding-bottom: 30px;
	}

	.nav-links.active {
		display: flex;
	}
}

/* ========== Contact Section ========== */

.contact-section {
	width: 100%;
	max-width: 1200px;
	margin: 25px auto 0 auto;
	background: #fff;
	box-sizing: border-box;
	font-family: 'Lato', sans-serif;
}

.contact-top {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	justify-content: space-between;
	padding: 15px 30px 30px 30px;
}

.contact-left {
	flex: 1 1 0;
	max-width: 700px;
}

.contact-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #2F3A4C;
	margin-bottom: 15px;
	text-align: center;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 11px;
	border: 1.5px solid #B2C8D2;
	border-radius: 7px;
	font-size: 1rem;
	font-family: 'Lato', sans-serif;
	color: #2F3A4C;
	background: #f9f9f9;
}

.contact-form textarea {
	min-height: 90px;
	resize: vertical;
}

.contact-send-btn {
	background: #2F3A4C;
	color: #fff;
	font-size: 1.4rem;
	border: none;
	font-family: 'Khula', sans-serif;
	border-radius: 30px;
	padding: 5px 45px;
	cursor: pointer;
	margin-top: 25px;
	margin-bottom: 10px;
	transition: background 0.2s;
}

.contact-send-btn:hover {
	background: #1a2230;
}

.form-success-message {
	color: #2F3A4C;
	font-size: 1.3rem;
	padding: 15px;
	margin-top: 5px;
	text-align: center;
}

.h-captcha {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem 0;
}

.contact-right {
	flex: 1 1 0;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 72px;
	align-items: flex-start;
	box-sizing: border-box;
}

.contact-info-block,
.contact-info-title,
.contact-info-text {
	text-align: left;
}

.contact-info-title {
	font-size: 1.12rem;
	color: #2F3A4C;
	font-weight: bold;
	margin-bottom: 6px;
}

.contact-info-text {
	color: #767676;
	font-size: 1.1rem;
	margin-bottom: 0;
	line-height: 1.2;
}


.contact-map-row {
	width: 100%;
	margin: 0;
	padding: 0 0 0 0;
}

.contact-map-row iframe {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: 0;
	display: block;
	margin: 0;
	filter: grayscale(100%);
}

/* ========== FAQ Section ========== */
.faq-section {
	width: 100%;
	padding: 25px 30px 15px 30px;
	background: #fff;
	box-sizing: border-box;
}

.faq-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #2F3A4C;
	text-align: center;
}

.faq-accordion {
	flex-direction: column;
	gap: 18px;
	display: flex;
}

.faq-item {
	background: #f9f9f9;
	border-radius: 7px;
	overflow: hidden;
	transition: box-shadow 0.18s;
	margin-bottom: 10px;

}

.faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	outline: none;
	padding: 20px 20px 16px 20px;
	font-weight: bold;
	color: #2F3A4C;
	font-size: 1.08rem;
	cursor: pointer;
	transition: background 0.15s;
	position: relative;
}

.faq-question:after {
	content: "▼";
	float: right;
	font-size: 1rem;
	color: #ABABAB;
	transition: transform 0.18s;
}

.faq-item.active .faq-question:after {
	transform: rotate(-180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	color: #444;
	font-size: 1.04rem;
	padding: 0 20px;
	background: #f9f9f9;
	transition: max-height 0.22s cubic-bezier(0.77, 0, 0.18, 1);
}

.faq-item.active .faq-answer {
	padding: 0 30px 20px 20px;
	max-height: 220px;
	transition: max-height 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}


/* ========== FOOTER ========== */
.main-footer {
	background: #2F3A4C;
	color: #fff;
	text-align: left;
	padding: 15px 12px 12px 10px;
	font-family: 'Lato', sans-serif;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-logo {
	width: auto;
	height: 80px;
	margin-bottom: 10px;
	margin-right: 150px;
	margin-top: 45px;
	margin-left: 25px;
}

.footer-family {
	font-family: "Allura", cursive;
	font-size: 24px;
	color: #fff;
	margin-left: 35px;
}

.footer-right {
	flex: 1 1 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.footer-links-touch {
	display: flex;
	align-items: flex-start;
}

.footer-links {
	min-width: 130px;
}

.footer-section-title {
	font-family: "Allura", cursive;
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
	margin-top: 10px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 5px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-size: 1.0rem;
}

.footer-links a:hover,
.apply-now-footer {
	color: #F6F5F1;
	text-decoration: none;
}

.footer-divider {
	width: 2px;
	background: #B2C8D2;
	min-height: 230px;
	margin: 0 44px 0 -10px;
}

.footer-get-in-touch {
	min-width: 200px;
}

.footer-contact-info {
	font-size: 1.03rem;
	color: #fff;
	margin-top: 10px;
}

.footer-contact-info div {
	margin-bottom: 8px;
}

.footer-heart {
	color: #2F3A4C !important;
	font-size: 1.3em;
	vertical-align: middle;
	margin: 0 4px 0 4px;
}

.footer-designer {
	font-family: "Allura", cursive;
	font-size: 18px;
	color: #2F3A4C;
	letter-spacing: 1px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.footer-bar {
	background: #B2C8D2;
	color: #2F3A4C;
	text-align: center;
	font-family: 'Lato', sans-serif;
	padding: 15px 12px 12px 10px;
	font-size: 15px;
	letter-spacing: 0.02em;
	max-width: 1200px;
	margin: 10px auto;
	box-sizing: border-box;
	width: 100%;
}

.footer-bar a.footer-legal-link {
	color: #2F3A4C !important;
	text-decoration: underline;
	font-family: 'Lato', sans-serif;
	font-size: 1em;
	margin: 0 2px;
	transition: color 0.2s;
	display: inline;
}

.footer-bar a.footer-legal-link:hover {
	color: #8c735d !important;
}

@media (max-width: 1000px) {
	.footer-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 5px;
		margin-left: 15px;
	}

	.footer-logo {
		margin-bottom: 7px;
		margin-top: 5px;
		margin-left: 5px;
	}

	.footer-family {
		font-size: 1.1rem;
		margin-left: 5px;
		margin-bottom: 10px;
	}

	.footer-links-touch {
		flex-direction: column;
		gap: 18px;
	}

	.footer-divider {
		display: none;
	}

	.footer-right {
		width: 100%;
		align-items: flex-start;
	}
}

@media (max-width: 700px) {
	.main-footer {
		padding: 18px 0 10px 0;
	}

	.footer-logo {
		margin-bottom: 7px;
		margin-top: 5px;
		margin-left: 5px;
	}

	.footer-family {
		font-size: 1.1rem;
		margin-left: 5px;
	}

	.footer-bar {
		font-size: 0.93rem;
	}

	.footer-contact-info {
		white-space: normal !important;
		word-break: break-word;
		overflow-wrap: break-word;
	}
}

/* ========== CONSENT BANNER ========== */
#consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: #2F3A4C;
	color: #fff;
	padding: 15px 0;
	z-index: 2000;
	text-align: center;
	font-size: 1rem;
}

#consent-banner a {
	color: #B2C8D2;
	text-decoration: underline;
	margin: 0 4px;
}

#consent-banner button {
	background: #B09375;
	color: #fff;
	border: none;
	padding: 7px 22px;
	border-radius: 5px;
	margin-left: 15px;
	cursor: pointer;
	font-size: 1em;
	transition: background 0.18s;
}

#consent-banner button:hover {
	background: #8c735d;
}

/* ========== Responsive: Contact Section ========== */

@media (max-width: 1000px) {
	.contact-map iframe {
		height: 220px;
	}
}

@media (max-width: 750px) {
	.contact-top {
		flex-direction: column;
		gap: 16px;
		padding: 10px 0 0 0;
		align-items: center;
	}

	.contact-left,
	.contact-right {
		width: 100%;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 2vw;
		box-sizing: border-box;
	}

	.contact-left {
		margin-bottom: 0;
	}

	.contact-right {
		margin-top: 22px;
		margin-left: 10px;
		margin-bottom: 10px;
		align-items: flex-start;
		text-align: left;
		gap: 14px;
		border-top: 1px solid #e0e5eb;
		padding-top: 16px;
		box-sizing: border-box;
	}

	.contact-info-block {
		width: 100%;
		padding: 12px 18px;
		margin-bottom: 8px;
		box-sizing: border-box;
		white-space: normal !important;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.contact-map-row {
		padding: 0 0 10px 0;
	}

	.contact-map-row iframe {
		width: 100vw;
		min-width: 0;
		height: 220px;
		border-radius: 0;
	}

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

	.contact-form input,
	.contact-form textarea {
		font-size: 1rem;
		padding: 10px 8px;
		border-radius: 6px;
		box-sizing: border-box;
	}

	.contact-send-btn {
		width: 100%;
		font-size: 1rem;
		padding: 12px 0;
		margin-top: 14px;
		margin-bottom: 0;
	}

	.h-captcha {
		margin: 10px 0 0 0;
	}

	.faq-title,
	.contact-title {
		font-size: 2.0rem;
	}

	.faq-question {
		padding: 16px 12px 10px 12px;
		font-size: 1rem;
	}

	.faq-answer {
		font-size: 0.97rem;
		padding: 0 14px;
	}

	.faq-item.active .faq-answer {
		padding: 0 14px 14px 14px;
		max-height: 300px;
	}

	.faq-section {
		padding: 12px 2vw 10px 2vw;
	}

	.faq-accordion {
		gap: 8px;
	}
}