@import url("../bootstrap/bootstrap.min.css");
@import url("../jquery/jquery-ui/jquery-ui.css");
@import url("../owlcarousel/owl.carousel.min.css");
@import url("../fancybox/jquery.fancybox.min.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../fonts/fontawesome-free-6.7.2-web/css/all.min.css");
@import url("../fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* General
* ----------------------------------------------------------------------------------------
*/
*, *::before, *::after {
	box-sizing: border-box;
}
body {
	font-size: 1rem;
	font-weight: 400;
	font-family: "Inter", "Roboto", sans-serif;
	color: var(--bs-dark);
	line-height: 1.5;
	margin: 0;
}
html {
	scrollbar-gutter: stable;
	overflow-y: scroll;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease, background-color 0.3s ease;
}
a:hover {
	color: var(--bs-info);
}
a:focus {
	outline: none !important;
}
:focus {
	outline: 0 !important;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0.5rem;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
input:focus {
	outline: none;
}
 input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
 -webkit-appearance: none;
 margin: 0;
}
input[type=number] {
	-moz-appearance: textfield;
}
.form-floating > .form-control + label, .form-floating > .form-control:focus + label {
	transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem) !important;
	opacity: 0.65;
}
.form-floating > .form-control {
	padding-top: 1.625rem !important;
	padding-bottom: 0.625rem !important;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex-item {
	flex: 1 1 0;
	min-width: 0;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { 
    background: #0093ad; 
    border-radius: 5px; 
}
::-webkit-scrollbar-thumb:hover { background: #00acc1; }

/*
* ----------------------------------------------------------------------------------------
* Recaptcha
* ----------------------------------------------------------------------------------------
*/
.grecaptcha-badge {
	display: none !important;
}
/*
* ----------------------------------------------------------------------------------------
* Modal Custom
* ----------------------------------------------------------------------------------------
*/
.modal-custom {
 --mc-dark: #0f172a;
 --mc-accent: #0093ad;
 --mc-accent-soft: rgba(0, 180, 216, 0.08);
 --mc-bg-soft: #f8fafc;
 --mc-text-main: #102a43;
 --mc-text-muted: #475569;
 --mc-radius-lg: 24px;
 --mc-radius-md: 12px;
 --mc-border-color: #f1f5f9;
}
.modal-custom .modal-content {
	border-radius: var(--mc-radius-lg) !important;
	border: none !important;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}
.modal-custom .modal-header {
	background-color: var(--mc-accent) !important;
	padding: 1rem 1rem 2.5rem !important;
	clip-path: ellipse(150% 100% at 50% 0%) !important;
	border: none !important;
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}
.modal-custom .modal-title {
	color: var(--bs-white) !important;
	font-weight: 700 !important;
	font-size: 1.5rem !important;
	margin: 0 !important;
	align-items: center !important;
}
.modal-custom .btn-close {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	border-radius: 50% !important;
	background-color: rgba(255, 255, 255, 0.95) !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23102a43'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
	background-size: 11px !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	filter: none !important;
	opacity: 0 !important;
	transition: all 0.3s ease !important;
}
.modal-custom.show .btn-close {
	opacity: 1 !important;
	animation: btnSpinAppear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}
 @keyframes btnSpinAppear {
 0% {
transform: scale(0) rotate(-360deg);
opacity: 0;
}
 100% {
transform: scale(1) rotate(0deg);
opacity: 1;
}
}
.modal-custom .btn-close:active {
	background-color: #f0f4f8 !important;
	transform: scale(0.9) !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}
.modal-custom .btn-close:focus {
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
	outline: none !important;
}
.modal-custom .modal-body {
	padding: 35px !important;
	background-color: var(--bs-white);
}
.modal-custom label {
	display: block;
	font-weight: 700;
	color: var(--mc-text-main);
	margin-bottom: 10px;
	font-size: 14px;
}
.modal-custom .form-select, .modal-custom .form-control {
	border-radius: var(--mc-radius-md) !important;
	border: 2px solid var(--mc-border-color) !important;
	padding: 12px 15px !important;
	font-size: 15px !important;
	transition: all 0.3s ease;
}
.modal-custom .form-select:focus, .modal-custom .form-control:focus {
	border-color: var(--mc-accent) !important;
	box-shadow: none !important;
	background-color: #f8fafc;
}
.modal-custom .form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300b4d8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 16px 12px;
}
.modal-custom .input-group {
	display: flex;
	width: 100%;
	gap: 0;
}
.modal-custom .input-group .userAddress {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	border-right: none !important;
	flex: 1;
}
.modal-custom .btn-calc-route {
	background-color: var(--mc-accent) !important;
	color: var(--bs-white) !important;
	border: 2px solid var(--mc-accent) !important;
	border-radius: 0 var(--mc-radius-md) var(--mc-radius-md) 0 !important;
	padding: 0 25px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}
.modal-custom .calc-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap: 10px;
	margin-bottom: 20px;
}
.modal-custom .form-check {
	padding-left: 0;
	margin-bottom: 0;
	height: 100%;
}
.modal-custom .form-check-input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.modal-custom .form-check-label {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center;
	height: 100% !important;
	padding: 12px 10px !important;
	background: var(--mc-border-color);
	border: 2px solid transparent;
	border-radius: var(--mc-radius-md);
	cursor: pointer;
	font-weight: 600 !important;
	color: var(--mc-text-muted) !important;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
 .modal-custom .form-check:has(.form-check-input:checked) .form-check-label, .modal-custom .form-check-input:checked + .form-check-label {
 background: var(--mc-accent-soft) !important;
 border-color: var(--mc-accent) !important;
 color: var(--mc-accent) !important;
}
.modal-custom .opt-title {
	font-size: 13px;
	margin-bottom: 4px;
	display: block;
}
.modal-custom .opt-price {
	font-size: 11px;
	font-weight: 500 !important;
	opacity: 0.8;
	display: block;
}
.modal-custom .range-container {
	position: relative;
	padding-top: 10px;
}
.modal-custom .areaValueDisplay, .modal-custom .areaValueFinal {
	color: var(--mc-accent);
	font-size: 18px;
	font-weight: 800;
	margin-left: 5px;
}
.modal-custom .custom-range {
	-webkit-appearance: none;
	width: 100%;
	height: 8px;
	background: #f1f5f9;
	border-radius: 5px;
	outline: none;
	margin: 15px 0;
	display: block;
}
 .modal-custom .custom-range::-webkit-slider-thumb {
 -webkit-appearance: none;
 appearance: none;
 width: 24px;
 height: 24px;
 background: var(--mc-accent);
 border: 4px solid var(--mc-white);
 border-radius: 50%;
 cursor: pointer;
 box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
 transition: 0.2s;
 margin-top: -8px;
}

/* Firefox */
.modal-custom .custom-range::-moz-range-thumb {
 width: 24px;
 height: 24px;
 background: var(--mc-accent);
 border: 4px solid var(--mc-white);
 border-radius: 50%;
 cursor: pointer;
 box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
 border: none;
}
 .modal-custom .custom-range::-moz-focus-outer {
 border: 0;
}
 .modal-custom .custom-range:active::-webkit-slider-thumb {
 transform: scale(1.2);
}
.modal-custom .range-labels {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--mc-text-muted);
	font-weight: 600;
}
.modal-custom .btn-step-next, .modal-custom .btn-step-submit {
	width: 100%;
	border: none !important;
	border-radius: var(--mc-radius-md) !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	transition: 0.3s;
}
.modal-custom .btn-step-next, .modal-custom .btn-step-submit {
	background-color: var(--mc-accent) !important;
	color: var(--bs-white) !important;
	padding: 16px !important;
	letter-spacing: 1px;
	margin-top: 20px;
}
.modal-custom .btn-step-next:disabled, .modal-custom .btn-step-submit:disabled {
	background-color: #cbd5e1 !important;
	color: #94a3b8 !important;
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	transform: none !important;
}
.modal-custom .btn-step-next:hover:not(:disabled), .modal-custom .btn-step-submit:hover:not(:disabled) {
	background-color: var(--mc-dark) !important;
	transform: translateY(-2px);
}
.modal-custom .mc-v-wrapper {
	margin: -35px !important;
}
.modal-custom .mc-v-panel-info {
	background-color: var(--mc-bg-soft);
	border-right: 1px solid var(--mc-border-color);
	padding: 3rem !important;
}
.modal-custom .mc-v-panel-form {
	background-color: var(--bs-white);
	padding: 3rem !important;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.modal-custom .mc-v-back {
	cursor: pointer;
	color: var(--mc-text-muted);
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 1.5rem;
	transition: color 0.3s;
}
.modal-custom .mc-v-back:hover {
	color: var(--mc-accent);
}
.modal-custom .mc-v-title {
	font-weight: 800;
	font-size: 18px;
	color: var(--mc-text-main);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.modal-custom .mc-v-data-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 15px;
}
.modal-custom .mc-v-label-text {
	color: var(--mc-text-muted);
}
.modal-custom .mc-v-value-text {
	font-weight: 700;
	color: var(--mc-text-main);
}
.modal-custom .mc-v-stack {
	margin-bottom: 15px;
}
.modal-custom .mc-v-badge-title {
	font-size: 11px;
	color: var(--mc-accent);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.modal-custom .mc-v-stack-content {
	font-weight: 600;
	color: var(--mc-text-main);
	font-size: 14px;
}
.modal-custom .mc-v-total-box {
	padding-top: 20px;
	border-top: 2px dashed #e2e8f0;
}
.modal-custom .mc-v-total-label {
	font-size: 13px;
	color: var(--mc-text-muted);
	font-weight: 600;
	margin-bottom: 5px;
}
.modal-custom .mc-v-total-amount {
	font-size: 32px;
	font-weight: 900;
	color: var(--mc-accent);
}
.modal-custom .mc-v-total-amount small {
	font-size: 18px;
}
.modal-custom .mc-v-field {
	margin-bottom: 15px;
}
.modal-custom .mc-v-field-label {
	display: block;
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 8px !important;
	color: var(--mc-text-muted);
}
.modal-custom .mc-v-policy {
	margin-bottom: 1.5rem;
}
.modal-custom .mc-v-policy-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 12px;
	color: var(--mc-text-muted);
	font-weight: 500;
}
.modal-custom .mc-v-policy-check {
	width: 18px;
	height: 18px;
	accent-color: var(--mc-accent);
	flex-shrink: 0;
}
.modal-custom .mc-v-mb-md {
	margin-bottom: 15px;
}
.modal-custom .mc-v-mb-lg {
	margin-bottom: 20px;
}

@media (max-width: 767px) {
.modal-custom .mc-v-wrapper {
	margin: -20px !important;
}
.modal-custom .mc-v-panel-info, .modal-custom .mc-v-panel-form {
	padding: 1.5rem !important;
}
.modal-custom .mc-v-panel-info {
	border-right: none;
	border-bottom: 1px solid var(--mc-border-color);
}
}
.modal-custom .btn-back-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mc-text-muted);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 5px 0;
}
.modal-custom .btn-back-arrow svg {
	transition: transform 0.3s ease;
}
.modal-custom .btn-back-arrow:hover {
	color: var(--mc-accent);
}
.modal-custom .btn-back-arrow:hover svg {
	transform: translateX(-5px);
}

@media (max-width: 768px) {
.modal-custom .calc-options {
	grid-template-columns: repeat(2, 1fr);
}
.modal-custom .calc-final-container {
	flex-direction: column;
}
}

@media (max-width: 480px) {
.modal-custom .calc-options {
	grid-template-columns: 1fr;
}
}

/*
* ----------------------------------------------------------------------------------------
* Offcanvas
* ----------------------------------------------------------------------------------------
*/
@media (max-width: 991.98px) {
.offcanvas {
 --oc-accent: #0093ad;
 --oc-dark-text: #102a43;
}
.offcanvas .offcanvas-header {
	background-color: var(--oc-accent) !important;
	padding: 1rem 1rem 2.5rem !important;
	clip-path: ellipse(150% 100% at 50% 0%) !important;
	border: none !important;
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}
.offcanvas .offcanvas-title {
	color: var(--bs-white) !important;
	font-weight: 700 !important;
	font-size: 1.5rem !important;
	margin: 0 !important;
	align-items: center !important;
}
.offcanvas .btn-close {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	min-width: 28px !important;
	border-radius: 50% !important;
	background-color: rgba(255, 255, 255, 0.95) !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23102a43'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
	background-size: 11px !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	filter: none !important;
	opacity: 0 !important;
	transition: all 0.3s ease !important;
}
.offcanvas.show .btn-close {
	opacity: 1 !important;
	animation: btnSpinAppear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}
 @keyframes btnSpinAppear {
 0% {
transform: scale(0) rotate(-360deg);
opacity: 0;
}
 100% {
transform: scale(1) rotate(0deg);
opacity: 1;
}
}
.offcanvas .btn-close:active {
	background-color: #f0f4f8 !important;
	transform: scale(0.9) !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}
.offcanvas .btn-close:focus {
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15) !important;
	outline: none !important;
}
}
.offcanvas-backdrop {
	z-index: 1040 !important;
}
/*
* ----------------------------------------------------------------------------------------
* Header
* ----------------------------------------------------------------------------------------
*/
#header {
 --accent: #0093ad;
 --accent-hover: #00acc1;
 --text-dark: #102a43;
 --header-bg: rgba(255, 255, 255, 0.75);
	background: var(--header-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	height: 80px;
	display: flex;
	align-items: center;
	border-bottom: 2px solid rgba(0, 147, 173, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
#header .nav-link {
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-dark) !important;
	padding: 31px 18px !important;
	position: relative;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}
#header .nav-link:hover {
	color: var(--accent) !important;
}
#header .nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 18px;
	right: 18px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-hover));
	transform: scaleX(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 4px 4px 0 0;
}
#header .nav-link.active::after, #header .nav-link:hover::after {
	transform: scaleX(1);
}
#header .dropdown-toggle::after {
	display: none !important;
}
#header .dropdown-toggle::before {
	content: "\f282" !important;
	font-family: "bootstrap-icons" !important;
	order: 2;
	margin-left: 10px;
	width: 22px;
	height: 22px;
	background: rgba(0, 147, 173, 0.1);
	color: var(--accent);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	transition: all 0.3s ease;
}
#header .dropdown-toggle.show::before {
	background: var(--accent);
	color: #fff;
	transform: rotate(180deg);
}

@media (min-width: 992px) {
#header .dropdown:hover > .dropdown-menu {
	display: flex !important;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 0;
}
#header .dropdown-menu li {
	width: 50%;
}
#header .dropdown-menu li:last-child {
	width: 100%;
}
#header .nav-link.dropdown-toggle:hover::before {
	background: var(--accent);
	color: #fff;
	transform: rotate(180deg);
}
}
#header .phone-icon-round {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent) 0%, #005f73 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50% !important;
	font-size: 16px;
	margin-right: 12px;
	transition: transform 0.3s ease;
}
#header .phone-number {
	font-weight: 800;
	font-size: 17px;
	color: var(--text-dark);
}
.pulse-blue {
	animation: p-wave 2s infinite;
}
 @keyframes p-wave {
 0% {
box-shadow: 0 0 0 0 rgba(0, 147, 173, 0.4);
}
 70% {
box-shadow: 0 0 0 12px rgba(0, 147, 173, 0);
}
 100% {
box-shadow: 0 0 0 0 rgba(0, 147, 173, 0);
}
}
#header .dropdown-menu {
	border-radius: 12px;
	border: 1px solid rgba(0, 147, 173, 0.1);
	box-shadow: 0 10px 40px rgba(0, 42, 67, 0.1);
	padding: 10px;
	min-width: 540px;
}
#header .dropdown-item {
	font-weight: 600;
	border-radius: 8px;
	padding: 10px 20px;
}
#header .dropdown-item:hover {
	background-color: rgba(0, 147, 173, 0.05);
	color: var(--accent);
}

@media (max-width: 991px) {
#header .offcanvas-start {
	width: 300px !important;
	height: 100vh !important;
	background-color: #fff !important;
}
#header .dropdown-menu {
	position: static !important;
	float: none !important;
	width: 100% !important;
	min-width: 100% !important;
	box-shadow: none !important;
	border: none !important;
	border-left: 2px solid rgba(0, 147, 173, 0.1) !important;
	border-radius: 0 !important;
	background: rgba(0, 147, 173, 0.03) !important;
	padding-left: 20px !important;
	margin: 0 !important;
}
#header .dropdown-menu li {
	width: 100% !important;
}
#header .nav-link {
	padding: 15px 20px !important;
	border-bottom: 1px solid rgba(0, 147, 173, 0.1);
	width: 100%;
	text-align: left;
	justify-content: space-between;
}
#header .nav-link::after {
	display: none !important;
}
}
#header .menu-icon {
	width: 25px;
	height: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}
#header .menu-icon span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: var(--accent);
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#header .navbar-toggler.active .menu-icon span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
#header .navbar-toggler.active .menu-icon span:nth-child(2) {
	opacity: 0;
	transform: translateX(-10px);
}
#header .navbar-toggler.active .menu-icon span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}
/*
* ----------------------------------------------------------------------------------------
* Section
* ----------------------------------------------------------------------------------------
*/

.section-header {
 --sec-accent: #00b4d8;
 --sec-dark: #0f172a;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}
.section-header .section-badge {
	color: var(--sec-accent);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 10px;
}
.section-header .section-title {
	font-size: clamp(22px, 4vw, 40px);
	color: var(--sec-dark);
	font-weight: 900;
	margin: 0;
}
.section-header .section-title span {
	background: linear-gradient(135deg, var(--sec-accent), #0077b6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*
* ----------------------------------------------------------------------------------------
* Hero
* ----------------------------------------------------------------------------------------
*/
#hero {
 --h-accent: #00b4d8;
 --h-accent-hover: #0096c7;
 --h-dark: #0f172a;
 --h-text: #475569;
	padding: 100px 0 140px;
	background: var(--bs-white);
	overflow: hidden;
	position: relative;
}
#hero .hero-bg-shape {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%;
	background: var(--h-accent);
	clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
	opacity: 0.08;
	z-index: 0;
}
#hero .hero-wrapper {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}
#hero .hero-badge-container {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
	padding: 5px 15px;
	background: linear-gradient(120deg, rgba(0,180,216,0.2) 0%, rgba(0,180,216,0) 100%);
	border-left: 4px solid var(--h-accent);
	border-radius: 4px;
}
#hero .hero-badge {
	color: var(--h-dark) !important;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}
#hero .hero-title {
	font-size: 1.7rem;
	color: var(--h-dark);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
}
#hero .hero-title span {
	color: var(--h-accent);
	background: linear-gradient(135deg, var(--h-accent), #0077b6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#hero .hero-description {
	font-size: 17px;
	color: var(--h-text);
	line-height: 1.8;
	margin-bottom: 45px;
	max-width: 600px;
}
#hero .hero-advantages {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}
#hero .adv-item {
	display: flex;
	align-items: center;
	gap: 15px;
}
#hero .adv-icon {
	font-size: 12px;
	font-weight: 900;
	color: var(--bs-white);
	width: 34px;
	height: 34px;
	background: linear-gradient(135deg, var(--h-accent), #0077b6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
	flex-shrink: 0;
}
#hero .adv-text strong {
	display: block;
	color: var(--h-dark);
	font-size: 15px;
	line-height: 1.2;
}
#hero .adv-text span {
	font-size: 13px;
	color: var(--h-text);
}
#hero .hero-btn-primary {
	background: linear-gradient(135deg, var(--h-accent) 0%, #0077b6 100%);
	color: white !important;
	padding: 22px 45px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: inline-block;
}
#hero .hero-btn-primary:hover {
	transform: translateY(-5px) scale(1.03);
	box-shadow: 0 20px 40px rgba(0, 180, 216, 0.4);
	color: white !important;
}
#hero .hero-gallery-stack {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	grid-template-rows: repeat(10, 45px);
	position: relative;
	width: 100%;
}
#hero .stack-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);
	border: 6px solid #fff;
	transition: all 0.4s ease;
}
#hero .stack-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#hero .item-v {
	grid-column: 1 / 7;
	grid-row: 1 / 9;
	z-index: 1;
	transform: rotate(-3deg);
}
#hero .item-h {
	grid-column: 4 / 11;
	grid-row: 2 / 7;
	z-index: 2;
	transform: rotate(2deg);
}
#hero .item-s {
	grid-column: 5 / 10;
	grid-row: 6 / 11;
	z-index: 3;
	transform: rotate(-1deg);
}
#hero .stack-stats {
	grid-column: 2 / 6;
	grid-row: 7 / 11;
	z-index: 5;
	background: var(--h-dark) !important;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.4);
	border: 2px solid rgba(255,255,255,0.1);
}
#hero .stack-stats strong {
	font-size: 34px;
	background: linear-gradient(to bottom, #fff, #cbd5e1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
	margin-bottom: 5px;
}
#hero .stack-stats span {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0.8;
	letter-spacing: 1px;
}
#hero .stats-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0,180,216,0.2) 0%, transparent 70%);
	pointer-events: none;
}
#hero .stack-item:hover {
	z-index: 10 !important;
	transform: scale(1.05) rotate(0deg);
}

@media (max-width: 991px) {
#hero {
	padding: 60px 0 80px;
}
#hero .hero-wrapper {
	grid-template-columns: 1fr;
	gap: 40px;
}
#hero .hero-advantages {
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
#hero .hero-gallery-stack {
	grid-template-rows: repeat(10, 35px);
	max-width: 400px;
	margin: 0 auto;
}
}
/*
* ----------------------------------------------------------------------------------------
* Steps
* ----------------------------------------------------------------------------------------
*/
#steps {
 --s-accent: #00b4d8;
 --s-accent-soft: rgba(0, 180, 216, 0.1);
 --s-dark: #0f172a;
 --s-gold: #e3d5ca;
 --s-text: #475569;
 --s-bg: #f8fafc;
	padding: 100px 0;
	background-color: var(--s-bg);
	position: relative;
	overflow: hidden;
}
#steps .steps-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	align-items: stretch;
	position: relative;
	z-index: 2;
}
#steps .step-card {
	background: var(--bs-white);
	padding: 35px 25px;
	border-radius: 24px;
	border: 1px solid rgba(15, 23, 42, 0.05);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}
#steps .step-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px rgba(0, 180, 216, 0.12);
	border-color: var(--s-accent);
}
#steps .step-number {
	font-size: 38px;
	font-weight: 900;
	color: var(--s-accent-soft);
	margin-bottom: 15px;
	line-height: 1;
	transition: 0.3s;
}
#steps .step-card:hover .step-number {
	color: var(--s-accent);
	transform: scale(1.1);
}
#steps .step-content {
	flex-grow: 1;
}
#steps .step-card h3 {
	font-size: 18px;
	color: var(--s-dark);
	font-weight: 800;
	margin-bottom: 12px;
}
#steps .step-card p {
	font-size: 14px;
	color: var(--s-text);
	line-height: 1.6;
	margin: 0;
}
#steps .step-btn {
	margin-top: 25px;
	padding: 12px 15px;
	border-radius: 12px;
	background: var(--s-accent-soft);
	color: var(--s-accent);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	transition: 0.3s;
	display: block;
}
#steps .step-btn:hover {
	background: var(--s-accent);
	color: var(--bs-white);
}
#steps .step-dark {
	background: var(--s-dark) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3) !important;
	z-index: 3;
}
#steps .step-dark h3 {
	color: var(--bs-white);
}
#steps .step-dark p {
	color: rgba(255, 255, 255, 0.7);
}
#steps .step-dark .step-number {
	color: rgba(255, 255, 255, 0.1);
}
#steps .step-icon {
	margin-bottom: 15px;
	color: var(--s-gold);
	font-size: 28px;
}
#steps .step-dark .step-btn.btn-gold {
	background: var(--s-gold);
	color: var(--s-dark);
}
#steps .step-dark .step-btn.btn-gold:hover {
	background: var(--bs-white);
	transform: scale(1.05);
}
#steps .step-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

@media (max-width: 1200px) {
#steps .steps-grid {
	grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 991px) {
#steps .steps-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 576px) {
#steps .steps-grid {
	grid-template-columns: 1fr;
}
#steps .step-card {
	max-width: 100%;
	text-align: center;
}
}
/*
* ----------------------------------------------------------------------------------------
* Services
* ----------------------------------------------------------------------------------------
*/
#services {
 --sv-accent: #00b4d8;
 --sv-dark: #0f172a;
 --sv-gold: #e3d5ca;
 --sv-text: #475569;
 --sv-red: #ff4d4d;
 --sv-blue: #007bff;
 --sv-orange: #ff9800;
 --sv-green: #2ecc71;
	padding: 100px 0;
	background-color: #f1f5f9;
	position: relative;
	box-shadow: inset 0 10px 20px -10px rgba(15, 23, 42, 0.05);
}
#services .mc-oferta-panel {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	background: rgba(15, 23, 42, 0.03);
	border-left: 4px solid var(--sv-orange);
	padding: 15px;
	border-radius: 8px;
	margin: 20px 0;
}
#services .mc-oferta-text {
	font-size: 13px;
	line-height: 1.5;
	color: var(--sv-text);
}
#services .mc-oferta-text strong {
	color: var(--sv-dark);
	font-weight: 700;
}
#services .mc-oferta-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: var(--sv-orange);
	animation: mc-flash 1.5s infinite;
}
 @keyframes mc-flash {
 0% {
opacity: 1;
transform: scale(1);
}
 50% {
opacity: 0.4;
transform: scale(0.9);
}
 100% {
opacity: 1;
transform: scale(1);
}
}

@media (max-width: 576px) {
.mc-oferta-panel {
	padding: 12px;
	gap: 10px;
}
.mc-oferta-text {
	font-size: 12px;
}
}
#services .service-card {
	background: var(--bs-white);
}
#services .services-badge {
	color: var(--sv-accent);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 15px;
}
#services .services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	align-items: stretch;
}
#services .service-card {
	background: var(--bs-white);
	padding: 35px 25px;
	border-radius: 24px;
	border: 1px solid rgba(15, 23, 42, 0.05);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}
#services .service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
	border-color: var(--sv-accent);
}
#services .service-icon {
	width: 48px;
	height: 48px;
	color: var(--sv-accent);
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
#services .service-icon svg {
	width: 100%;
	height: 100%;
}
#services .service-card:hover .service-icon {
	transform: scale(1.1);
	filter: drop-shadow(0 4px 8px rgba(0, 180, 216, 0.2));
}
#services .service-card h3 {
	font-size: 19px;
	color: var(--sv-dark);
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.3;
}
#services .service-card p {
	font-size: 14px;
	color: var(--sv-text);
	line-height: 1.6;
	margin-bottom: 25px;
	flex-grow: 1;
}
#services .service-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid rgba(15, 23, 42, 0.05);
}
#services .price-val {
	font-size: 15px;
	font-weight: 800;
	color: var(--sv-dark);
}
#services .service-btn {
	background: var(--sv-dark);
	color: var(--bs-white) !important;
	text-decoration: none;
	white-space: nowrap;
	padding: 10px 20px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	transition: all 0.3s ease;
	text-align: center;
	border: 1px solid var(--sv-dark);
}
#services .service-btn:hover {
	background: var(--sv-accent);
	border-color: var(--sv-accent);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}
#services .service-card.hot {
	border-color: var(--sv-gold);
}
#services .card-label {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 10px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 50px;
	text-transform: uppercase;
	color: var(--bs-white);
}
/* 1. Спецпредложение (Красный) */
#services .service-card.promo {
	border-color: var(--sv-red);
}
#services .service-card.promo .card-label {
	background: var(--sv-red);
}
/* 2. Новинка (Синий) */
#services .service-card.new {
	border-color: var(--sv-blue);
}
#services .service-card.new .card-label {
	background: var(--sv-blue);
}
/* 3. Популярное  (Оранжевый) */
#services .service-card.hit {
	border-color: var(--sv-orange);
}
#services .service-card.hit .card-label {
	background: var(--sv-orange);
}
/* 4. Выгода (Зеленый) */
#services .service-card.eco {
	border-color: var(--sv-green);
}
#services .service-card.eco .card-label {
	background: var(--sv-green);
}

@media (max-width: 1200px) {
#services .services-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
}

@media (max-width: 600px) {
#services .services-grid {
	grid-template-columns: 1fr;
}
#services .service-card {
	text-align: center;
	align-items: center;
}
#services .service-footer {
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
#services .service-btn {
	width: 100%;
}
}
/*
* ----------------------------------------------------------------------------------------
* Portfolio
* ----------------------------------------------------------------------------------------
*/

#portfolio {
    /* Переменные для этой секции */
    --p-accent: #0093ad;
 --p-radius: 16px;
 --p-glass: rgba(255, 255, 255, 0.15);
	padding: 80px 0;
	background-color: #fff;
}
#portfolio .work-card {
	display: block;
	position: relative;
	margin: 15px 10px;
	height: 350px;
	border-radius: var(--p-radius);
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#portfolio .work-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
#portfolio .work-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
#portfolio .work-card:hover img {
	transform: scale(1.1);
}
#portfolio .work-glass-panel {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	padding: 20px;
	background: var(--p-glass);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	z-index: 2;
}
#portfolio .work-title {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	text-align: center;
}
#portfolio .owl-dots {
	display: flex !important;
	justify-content: center !important;
	align-items: center;
	width: 100% !important;
	margin-top: 40px !important;
}
#portfolio .owl-dot {
	outline: none !important;
	display: inline-block;
}
#portfolio .owl-dot span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	background: #e2e8f0 !important;
	border-radius: 30px;
	transition: all 0.3s ease;
}
#portfolio .owl-dot.active span {
	background: var(--p-accent) !important;
	width: 35px;
}
/*
* ----------------------------------------------------------------------------------------
* Button To Top
* ----------------------------------------------------------------------------------------
*/
#button-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 50px;
	width: 50px;
	display: none;
	place-items: center;
	border-radius: 50%;
	cursor: pointer;
	z-index: 95;
}
#button-to-top-progress-value {
	height: calc(100% - 15px);
	width: calc(100% - 15px);
	background-color: var(--bs-white);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.5em;
	color: var(--bs-dark);
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/

#footer {
 --f-bg-main: #0093ad;
 --f-bg-light: #00acc1;
 --f-bg-dark: #051622;
 --f-text: #bcccdc;
 --f-accent: #0093ad;
 --f-white: #ffffff;
	position: relative;
	padding-top: 80px;
	color: var(--f-text);
	overflow: hidden;
	background: radial-gradient(circle at 15% 50%, rgba(0, 172, 193, 0.15) 0%, transparent 40%), radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.4) 0%, transparent 35%), linear-gradient(135deg, var(--f-bg-dark) 0%, var(--f-bg-main) 50%, var(--f-bg-dark) 100%);
}
#footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
	opacity: 0.04;
	pointer-events: none;
	z-index: 1;
}
#footer .footer-top, #footer .footer-bottom {
	position: relative;
	z-index: 2;
}
#footer .footer-top {
	padding-bottom: 50px;
}
#footer .footer-logo {
	font-size: 24px;
	font-weight: 800;
	color: var(--f-white);
	text-decoration: none;
	display: block;
	margin-bottom: 20px;
}
#footer .footer-logo span {
	color: var(--f-accent);
}
#footer .footer-desc {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 25px;
}
#footer .footer-title {
	color: var(--f-white);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 10px;
	text-shadow: 0 2px 10px rgba(0, 172, 193, 0.3);
}
#footer .footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--f-accent);
}
#footer .footer-nav-wrapper {
	display: flex;
	gap: 20px;
}
#footer .footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}
#footer .footer-nav li {
	margin-bottom: 12px;
}
#footer .footer-nav a {
	color: var(--f-text);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}
#footer .footer-nav a:hover {
	color: var(--f-white);
	padding-left: 5px;
}
#footer .footer-contacts {
	list-style: none;
	padding: 0;
}
#footer .footer-contacts li {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 14px;
}
#footer .footer-contacts i {
	color: var(--f-accent);
	font-size: 18px;
}
#footer .footer-contacts a {
	color: var(--f-text);
	text-decoration: none;
	transition: color 0.3s;
}
#footer .footer-contacts a:hover {
	color: var(--f-white);
}
#footer .footer-social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
#footer .footer-social a {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--f-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}
#footer .footer-social a:hover {
	background: var(--f-accent);
	transform: translateY(-3px);
}
#footer .footer-bottom {
	background: rgba(0, 0, 0, 0.25);
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#footer .footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .footer-copyright {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	flex: 1;
}
#footer .footer-counter {
	flex: 1;
	display: flex;
	justify-content: center;
}
#footer .footer-dev {
	flex: 1;
	text-align: right;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}
#footer .footer-dev a {
	color: var(--f-white);
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 1px;
	margin-left: 5px;
	transition: color 0.3s ease;
}
#footer .footer-dev a:hover {
	color: var(--f-accent);
}

@media (max-width: 991px) {
#footer {
	padding-top: 60px;
	text-align: center;
}
#footer .footer-logo {
	display: inline-block;
}
#footer .footer-title::after {
	left: 50%;
	transform: translateX(-50%);
}
#footer .footer-nav-wrapper {
	flex-direction: column;
	gap: 0;
}
#footer .footer-nav {
	margin-bottom: 0;
}
#footer .footer-contacts li {
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 25px;
}
#footer .footer-social {
	justify-content: center;
	margin-bottom: 30px;
}
#footer .footer-bottom-content {
	flex-direction: column;
	gap: 20px;
}
#footer .footer-copyright,  #footer .footer-counter,  #footer .footer-dev {
	text-align: center;
	flex: none;
	width: 100%;
}
}

@media (max-width: 480px) {
#footer .footer-title {
	font-size: 16px;
}
#footer .footer-logo {
	font-size: 20px;
}
}
