/* ================= HEADER ================= */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	transition: box-shadow .3s ease;
	border-bottom: 1px solid #dfdfdf75;
}



header.sticky {
	box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
	background: #fff;
}

header.sticky .menu a {
	color: #000;
}

.header-inner {
	max-width: 1320px;
	margin: auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
	height: 42px;
}

/* ================= MENU ================= */
.menu {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}

.menu li {
	position: relative;
}

.menu a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
}




.has-sub>a {
	position: relative;
	padding-right: 18px;
}

.has-sub>a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #000;
}



header.sticky .has-sub>a::after {
	border-top: 6px solid #000;
}

.has-sub:hover>a::after {
	transform: translateY(-50%) rotate(180deg);
}


/* ================= SUBMENU (DESKTOP) ================= */
.submenu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	background: #fff;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s ease;
}

.submenu li a {
	display: block;
	padding: 12px 16px;
	font-size: 14px;
	color: #000;
	border-bottom: 1px solid #ebebeb;
}



.submenu li:last-child a {
	border: none;
}

.submenu li a:hover {
	background: #ff7c44;
	color: #fff;
}

/* Hover dropdown */
@media (min-width: 992px) {
	.has-sub:hover>.submenu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		padding: 0;
	}
}


/* ================= HAMBURGER ================= */
.menu-toggle {
	width: 32px;
	height: 22px;
	position: relative;
	border: none;
	background: none;
	cursor: pointer;
	display: none;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
	position: absolute;
	width: 100%;
	height: 3px;
	background: #000;
	left: 0;
	content: "";
	transition: all .3s ease;
}

.menu-toggle span {
	top: 50%;
	transform: translateY(-50%);
}

.menu-toggle span::before {
	top: -8px;
}

.menu-toggle span::after {
	top: 8px;
}

/* Close icon */
.menu-toggle.active span {
	background: transparent;
}

.menu-toggle.active span::before {
	top: 0;
	transform: rotate(45deg);
}

.menu-toggle.active span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* ================= MOBILE + TABLET ================= */
@media (max-width: 991px) {

	.menu-toggle {
		display: block;
		order: 3;
	}

	nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s ease;
		border-top: 1px solid #eee;
	}

	nav.active {
		max-height: 80vh;
		overflow: scroll;
	}

	.menu {
		flex-direction: column;
		gap: 0;
		padding: 0;
	}

	.menu li {
		border-bottom: 1px solid #eee;
	}

	.menu a {
		padding: 14px 20px;
		justify-content: space-between;
	}

	/* Mobile submenu (push-down, no CLS) */
	.submenu {
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease;
		pointer-events: auto;
	}

	.has-sub.open .submenu {
		max-height: 100%;
		padding: 0;
	}

	.has-sub>a::after{right: 30px;}
	.submenu li a{border-bottom: 0;font-size: 16px;}

}


/****** Hero ******/
.video-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: #000;
}

/* IMAGE + VIDEO */
.hero-poster,
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video {
	z-index: 2;
}

/* DARK GRADIENT (BOTTOM FOCUS) */
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgb(0 0 0 / 95%) 0%, rgb(0 0 0 / 75%) 45%, rgb(0 0 0 / 25%) 75%, rgba(4, 14, 32, 0.05) 100%);
	z-index: 3;
}

/* CONTENT WRAPPER ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â BOTTOM ALIGNED */
.bottom-content .hero-content {
	position: relative;
	z-index: 4;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚  CONTENT BOTTOM */
	padding-bottom: 80px;
	padding-top: 120px;
	/* header safe */
	color: #fff;
}

/* BADGE */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #000;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 14px;
	margin-bottom: 24px;
}

.hero-badge .dot {
	width: 8px;
	height: 8px;
	background: #ff7c44;
	border-radius: 50%;
}

/* GRID */
.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: flex-end;
}

/* LEFT */
.hero-left h1 {
	font-size: clamp(34px, 5vw, 55px);
	line-height: 1.05;
	font-weight: 800;
	color: #fff;
}

/* RIGHT */
.hero-right p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 26px;
	opacity: 1;
	color: #fff;
}


/* FEATURES BAR */
.hero-features {
	margin-top: 50px;
	padding-top: 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	font-size: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	justify-content: space-between;
	font-family: 'Montserrat';
}

.hero-features .icon {
	background: #ff7c44;
	width: 15px;
	height: 15px;
	text-align: center;
	border-radius: 50%;
	padding: 2px;
	margin-right: 10px;
}

/* MOBILE */
@media (max-width: 991px) {

	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-left h1{
		text-align: left;
	}

	.hero-right p {
		text-align: left;
	}

	.hero-features {
		justify-content: left;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.bottom-content .hero-content {
		padding-bottom: 60px;
	}

	.hero-left h1 {
		font-size: 32px;
	}
	.hero-features {justify-content: center;}
}

/****** Hero ******/

/* =========================
   FOOTER BASE
========================= */

.site-footer {
	background:#f2f7ff;
	padding: 70px 0 30px;
	font-size: 16px;
	color: #000;
}

/* =========================
   TITLES
========================= */

.footer-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #111;
}

/* =========================
   LINKS
========================= */

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

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

.footer-links a {
	text-decoration: none;
	color: #000;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #ff7c44;
}

/* =========================
   BRAND TEXT
========================= */

.footer-brand p {
	max-width: 340px;
	margin-bottom: 20px;
	line-height: 1.6;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer-social a {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ff7c44;
	color: #fff;
	margin-right: 10px;
	font-size: 18px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: #000;
	color: #fff;
}

/* =========================
   CONTACT (ICON + TEXT)
========================= */

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

.footer-contact li {
	display: flex;
	gap: 16px;
	margin-bottom: 26px;
	align-items: flex-start;
}

.footer-contact li span {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.footer-contact h5 {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 6px;
	color: #111;
}

.footer-contact a {
	font-size: 16px;
	color: #000;
	text-decoration: none;
}

.footer-contact a:hover {
	text-decoration: underline;
}

.footer-contact p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
	border-top: 1px solid #ddd;
	margin-top: 50px;
	padding-top: 20px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom a {
	color: #000;
	text-decoration: none;
}

.footer-bottom a:hover {
	color: #38b6c9;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
	.footer-bottom {
		text-align: center;
	}

	.footer-bottom .text-md-end {
		margin-top: 10px;
	}
}

/*XXXXXXX*/
.sticky-contact {
	position: fixed;
	right: 20px;
	bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	z-index: 9999;
}

.sticky-contact a {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
}

.sticky-contact a:hover {
	transform: scale(1.1);
}

.sticky-contact svg {
	width: 26px;
	height: 26px;
	fill: #fff;
}

.sticky-contact .whatsapp {
	background: #25D366;
}

.sticky-contact .call {
	background: #ff7c44;
}

/* Mobile spacing */
@media (max-width: 768px) {
	.sticky-contact {
		right: 15px;
		bottom: 20px;
	}

	.sticky-contact a {
		width: 52px;
		height: 52px;
	}
}


/* =========================
   DARK CONTACT DESIGN
========================= */

.contact-dark {
	margin-top: 10px;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-item {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
	align-items: flex-start;
}

.contact-icon {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	flex-shrink: 0;
	background: #ff7c44;
}

.contact-text h4 {
	font-size: 16px;
	margin: 0 0 6px;
	color: #000;
	font-weight: 600;
}

.contact-text a,
.contact-text p {
	font-size: 16px;
	color: #000;
	line-height: 1.6;
	text-decoration: none;
}

.contact-text a:hover {
	text-decoration: underline;
}

/* MAP */
.map-box {
	margin: 10px 0 12px;
	border-radius: 10px;
	overflow: hidden;
}

.map-box iframe {
	width: 100%;
	height: 160px;
	border: none;
	filter: grayscale(100%) contrast(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
	.map-box iframe {
		height: 140px;
	}
}


/**XXXXXXXXX*/
/* Sticky Button */
.sticky-appointment-btn {
	position: fixed;
	right: -90px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	background: #ff7c44;
	color: #fff;
	padding: 14px 22px;
	font-weight: 400;
	border-radius: 30px 30px 0 0;
	border: none;
	cursor: pointer;
	z-index: 9999;
	font-family: 'Montserrat';
}

/* Modal */
.appointment-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 10000;
}

.appointment-modal.active {
	display: block;
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.modal-box {
	position: relative;
	max-width: 520px;
	background: #fff;
	margin: 6% auto;
	padding: 30px;
	border-radius: 18px;
	z-index: 2;
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}

.modal-box .modern-form {
	max-width: inherit;
	box-shadow: inherit;
	padding: 0;
}