:root {
	--home-accent: #ff3a2d;
	--home-accent-dark: #df3024;
	--home-text-light: #ffffff;
	--home-highlight: #34aadc;
	--home-overlay: rgba(8, 13, 23, 0.44);
	--home-card-bg: rgba(24, 24, 24, 0.62);
	--home-card-border: rgba(255, 255, 255, 0.16);
}

body.home-page header,
body.home-page .navbar,
body.home-page nav {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent !important;
	box-shadow: none !important;
}

body.home-page .navbar {
	margin-bottom: 0;
	padding-top: 1.1rem;
}

body.home-page .navbar-brand {
	padding: 0;
	background: transparent !important;
	border-radius: 0;
	box-shadow: none;
}

body.home-page .navbar-brand img,
body.home-page .navbar .logo img {
	width: 108px;
	max-width: 100%;
	filter: none !important;
	-webkit-filter: none !important;
}

body.home-page .navbar-nav .nav-link,
body.home-page nav a:not(.dropdown-item):not(.btn) {
	color: #fff !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

body.home-page .navbar-nav .nav-link:hover,
body.home-page .navbar-nav .nav-link:focus-visible {
	color: #ffe6e0 !important;
}

body.home-page .navbar-nav .btn,
body.home-page .btn-randevu {
	background: var(--home-accent) !important;
	border-color: var(--home-accent) !important;
	color: #fff !important;
	box-shadow: none !important;
}

body.home-page .dropdown-menu {
	background: #fff !important;
	border: none !important;
	border-radius: 14px !important;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
	padding: 0.6rem 0 !important;
}

body.home-page .dropdown-menu .dropdown-item,
body.home-page .dropdown-menu a {
	color: #2f2f2f !important;
	text-shadow: none !important;
	padding: 0.7rem 1.15rem !important;
}

body.home-page .dropdown-menu .dropdown-item:hover,
body.home-page .dropdown-menu a:hover {
	background: #fff3ef !important;
	color: var(--home-accent) !important;
}

body.home-page .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.65) !important;
}

body.home-page .navbar-toggler-icon {
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}

#videoSliderSection {
	margin-top: -80px;
	padding-top: 0;
}

.video-slider-container {
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;
	background: #000;
}

.video-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	z-index: 1;
}

.video-slide.active {
	opacity: 1;
	z-index: 2;
}

.video-slide::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(7, 10, 18, 0.18) 0%, var(--home-overlay) 100%);
	z-index: 1;
}

.slider-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.85);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.video-caption {
	position: absolute;
	top: 50%;
	left: 6%;
	transform: translateY(-50%);
	z-index: 10;
	width: min(44vw, 700px);
	min-width: 420px;
	padding: 34px 34px 30px;
	border: 1px solid var(--home-card-border);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0.74) 0%, var(--home-card-bg) 100%);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
	text-align: center;
	color: #fff;
}

.video-slide .video-caption .title,
.video-slide .video-caption .fade-in-title,
.video-slide .video-caption .desc,
.video-slide .video-caption .button-group {
	opacity: 0;
}

.video-slide.active .video-caption .title {
	animation: fadeInLeft 0.8s ease forwards;
	animation-delay: 0.2s;
}

.video-slide.active .video-caption .fade-in-title:nth-child(1) {
	animation: fadeInLeft 0.7s ease forwards;
	animation-delay: 0.1s;
}

.video-slide.active .video-caption .fade-in-title:nth-child(2) {
	animation: fadeInLeft 0.7s ease forwards;
	animation-delay: 0.25s;
}

.video-slide.active .video-caption .fade-in-title:nth-child(3) {
	animation: fadeInLeft 0.7s ease forwards;
	animation-delay: 0.4s;
}

.video-slide.active .video-caption .fade-in-title:nth-child(4) {
	animation: fadeInLeft 0.7s ease forwards;
	animation-delay: 0.55s;
}

.video-slide.active .video-caption .desc {
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.5s;
}

.video-slide.active .video-caption .button-group {
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.7s;
}

.video-slide.active .video-caption .button-group .btn {
	opacity: 0;
	animation: scaleIn 0.5s ease forwards;
}

.video-slide.active .video-caption .button-group .btn:nth-child(1) {
	animation-delay: 0.82s;
}

.video-slide.active .video-caption .button-group .btn:nth-child(2) {
	animation-delay: 0.96s;
}

.video-slide.active .video-caption .sliderthree {
	animation: scaleIn 0.6s ease forwards;
	animation-delay: 0.35s;
}

.video-caption .title,
.video-caption .fade-in-title.title {
	display: inline-block;
	width: auto;
	max-width: 100%;
	margin: 0 auto 10px;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.video-caption .fade-in-title.title {
	margin-bottom: 6px;
	font-size: 1.85rem;
}

.video-caption .fade-in-title.title.sliderthree {
	display: inline-block;
	width: auto !important;
}

.video-caption .title-slider {
	display: inline-block;
	width: auto;
	background: transparent !important;
	color: #fff !important;
	text-align: center !important;
}

.home-main-title {
	display: inline-block;
	width: auto;
	max-width: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent !important;
	color: #fff !important;
}

.home-main-title-chip {
	display: inline;
	padding: 12px 28px;
	border-radius: 10px;
	background: var(--home-accent);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.home-title-blue {
	color: var(--home-highlight) !important;
}

.video-caption .sliderthree {
	display: inline-block;
	width: auto !important;
	max-width: 100% !important;
	margin: 10px auto;
	padding: 10px 22px;
	border-radius: 8px;
	background: var(--home-accent);
	color: #fff;
	white-space: nowrap;
	text-align: center;
}

.video-caption .desc {
	max-width: 620px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.96);
	font-size: 1.1rem;
	line-height: 1.7;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-caption .button-group {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.video-caption .button-group .btn {
	min-width: 170px;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.video-caption .button-group .btn.left,
.video-caption .button-group .btn.left2 {
	background: var(--home-accent);
	color: #fff;
	border: 2px solid var(--home-accent);
}

.video-caption .button-group .btn.left:hover,
.video-caption .button-group .btn.left2:hover {
	background: var(--home-accent-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 58, 45, 0.28);
}

.video-caption .button-group .btn.right,
.video-caption .button-group .btn.right2 {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.78);
}

.video-caption .button-group .btn.right:hover,
.video-caption .button-group .btn.right2:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	transform: translateY(-2px);
}

.video-control-prev,
.video-control-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.video-control-prev:hover,
.video-control-next:hover {
	background: rgba(255, 255, 255, 0.16);
}

.video-control-prev {
	left: 16px;
}

.video-control-next {
	right: 16px;
}

.video-indicators {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	gap: 12px;
}

.video-indicator {
	--progress-duration: 8s;
	position: relative;
	width: 64px;
	height: 5px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.32);
	cursor: pointer;
}

.video-indicator::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #fff;
	border-radius: 999px;
}

.video-indicator.active::after {
	width: 100%;
	transition: width var(--progress-duration) linear;
}

body.whatsapp-popup-open {
	overflow: hidden;
}

.whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1100;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border: none;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-float:hover {
	background: #21bd5c;
}

.whatsapp-popup-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1190;
	background: rgba(10, 12, 18, 0.58);
}

.whatsapp-popup {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.whatsapp-popup[hidden],
.whatsapp-popup-backdrop[hidden] {
	display: none !important;
}

.whatsapp-popup-card {
	position: relative;
	width: min(100%, 460px);
	padding: 2rem;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.whatsapp-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	border: none;
	background: transparent;
	color: #67707d;
	font-size: 2rem;
	line-height: 1;
}

.whatsapp-popup-kicker {
	margin: 0 0 8px;
	color: var(--home-accent);
	font-weight: 700;
}

.whatsapp-popup-card h3 {
	margin-bottom: 10px;
	color: #1c2430;
}

.whatsapp-popup-text {
	margin-bottom: 16px;
	color: #616b79;
}

.whatsapp-form-group {
	margin-bottom: 14px;
}

.whatsapp-form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	color: #1d2531;
}

.whatsapp-form-group textarea,
.whatsapp-form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #d6deea;
	border-radius: 14px;
	color: #1d2430;
}

.whatsapp-form-group textarea:focus,
.whatsapp-form-group input:focus {
	outline: none;
	border-color: #25d366;
	box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.13);
}

.whatsapp-submit {
	width: 100%;
	padding: 14px 16px;
	border: none;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 700;
}

.whatsapp-submit:hover {
	background: #21bd5c;
}

@media (max-width: 991.98px) {
	body.home-page .navbar-collapse {
		margin-top: 12px;
		padding: 16px;
		border-radius: 18px;
		background: rgba(12, 18, 32, 0.9);
	}

	.video-caption {
		width: min(58vw, 620px);
		min-width: 0;
		max-width: 58%;
	}
}

@media (max-width: 767.98px) {
	body.home-page .navbar {
		padding-top: 0.55rem;
	}

	body.home-page .navbar > .container {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	body.home-page .navbar-brand img,
	body.home-page .navbar .logo img {
		width: 64px;
	}

	body.home-page .navbar-toggler {
		padding: 0.35rem 0.5rem;
		border-radius: 10px;
	}

	body.home-page .navbar-nav .btn,
	body.home-page .btn-randevu {
		padding: 0.5rem 0.8rem;
		font-size: 0.88rem;
	}

	#videoSliderSection {
		margin-top: -68px;
	}

	.video-slider-container {
		height: 670px;
	}

	.video-caption {
		left: 50%;
		top: 61%;
		transform: translate(-50%, -50%);
		width: 88%;
		max-width: 88%;
		padding: 24px 18px 20px;
		min-width: 0;
		border-radius: 20px;
	}

	.video-caption .title,
	.video-caption .fade-in-title.title {
		font-size: 1.22rem;
		line-height: 1.18;
		margin-bottom: 8px;
	}

	.video-caption .title-slider {
		font-size: 1.02rem !important;
	}

	.home-main-title-chip {
		padding: 8px 14px;
		border-radius: 8px;
	}

	.video-caption .sliderthree {
		padding: 8px 12px;
		white-space: normal;
	}

	.video-caption .desc {
		max-width: 100%;
		font-size: 0.9rem;
		line-height: 1.45;
		margin-top: 12px;
	}

	.video-caption .button-group {
		gap: 9px;
		margin-top: 16px;
	}

	.video-caption .button-group .btn {
		min-width: 0;
		width: 100%;
		padding: 10px 14px;
		font-size: 0.9rem;
	}

	.video-control-prev,
	.video-control-next {
		width: 44px;
		height: 44px;
		top: auto;
		bottom: 86px;
		transform: none;
	}

	.video-control-prev {
		left: 12px;
	}

	.video-control-next {
		right: 12px;
	}

	.video-indicators {
		bottom: 22px;
		gap: 10px;
	}
}

@media (max-width: 479.98px) {
	body.home-page .navbar {
		padding-top: 0.45rem;
	}

	body.home-page .navbar > .container {
		padding-left: 0.65rem;
		padding-right: 0.65rem;
	}

	body.home-page .navbar-brand img,
	body.home-page .navbar .logo img {
		width: 56px;
	}

	body.home-page .navbar-toggler {
		padding: 0.3rem 0.42rem;
	}

	body.home-page .navbar-collapse {
		margin-top: 0.7rem;
		padding: 0.9rem;
	}

	.video-slider-container {
		height: 660px;
	}

	.video-caption {
		top: 63%;
		width: 90%;
		max-width: 90%;
		padding: 20px 14px 18px;
		border-radius: 18px;
	}

	.video-caption .title,
	.video-caption .fade-in-title.title {
		font-size: 0.98rem;
		line-height: 1.15;
	}

	.video-caption .title-slider {
		font-size: 0.9rem !important;
	}

	.home-main-title-chip {
		padding: 7px 10px;
		border-radius: 7px;
	}

	.video-caption .sliderthree {
		padding: 7px 10px;
	}

	.video-caption .desc {
		font-size: 0.8rem;
		line-height: 1.45;
		margin-top: 12px;
	}

	.video-caption .button-group {
		margin-top: 16px;
		gap: 8px;
	}

	.video-caption .button-group .btn {
		padding: 9px 12px;
		font-size: 0.86rem;
	}

	.video-control-prev,
	.video-control-next {
		display: none;
	}

	.video-indicator {
		width: 40px;
	}

	.video-indicators {
		bottom: 18px;
	}

	.whatsapp-float {
		right: 14px;
		bottom: 14px;
		padding: 11px 13px;
		font-size: 0.95rem;
	}

	.whatsapp-popup-card {
		padding: 1.5rem 1rem 1.2rem;
	}
}
