/* Fonts */

@font-face {
	font-family: "EuropeExt-normal";
	src:
		url("../fonts/EuropeExt.woff2") format("woff2"),
		url("../fonts/EuropeExt.woff") format("woff");
}

@font-face {
	font-family: "EuropeExt-bold";
	src:
		url("../fonts/EuropeExt.woff2") format("woff2"),
		url("../fonts/EuropeExt.woff") format("woff");
}

@font-face {
	font-family: "CenturyGothic-normal";
	src:
		url("../fonts/CenturyGothic.woff2") format("woff2"),
		url("../fonts/CenturyGothic.woff") format("woff");
}

@font-face {
	font-family: "CenturyGothic-bold";
	src:
		url("../fonts/CenturyGothicBold.woff2") format("woff2"),
		url("../fonts/CenturyGothicBold.woff") format("woff");
}

.europeextnormal {
	font-family: "EuropeExt-normal";
}

.europeextbold {
	font-family: "EuropeExt-bold";
}

.centurygothicnormal {
	font-family: "CenturyGothic-normal";
}

.centurygothicbold {
	font-family: "CenturyGothic-normal";
}

.lh-0 {
	line-height: 0;
}

:root {
	--primary-bg: #001f3f;
	--accent-blue: #004080;
	--text-color: #ffffff;
	--btn-border: #ffffff;
}

body {
	font-family: "CenturyGothic-normal";
	color: var(--text-color);
	background: rgb(2, 46, 69);
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

a {
	text-decoration: none;
}

/* Backgrounds */
.global-bg-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -10;
}

.bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.layer-default {
	background-image: url("/assets/template/img/hero-background.webp");
	z-index: 1;
}

.layer-second {
	background-image: url("/assets/template/img/product-background.webp");
	z-index: 2;
	opacity: 0;
}

/* Homepage full-page scroll (assets/template/js/home.js).
   100dvh keeps these sized to the currently visible mobile viewport instead of
   100vh/100%, which is defined by the largest viewport and overflows past the
   visible area while the browser's address bar is shown. !important on the
   panel is needed to win over Bootstrap's .min-vh-100 utility. */
html.gsap-fullpage-active,
body.gsap-fullpage-active {
	height: 100%;
	height: 100dvh;
}

.gsap-fullpage-panel {
	height: 100% !important;
	height: 100dvh !important;
	min-height: 100% !important;
	min-height: 100dvh !important;
}

/* Buttons */

.btn-custom-primary {
	background-color: white;
	color: black;
	border: 3px solid white;
	padding: 12px 30px;
	font-weight: normal;
	border-radius: 0;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.btn-custom-primary:hover {
	border: 3px solid white;
	background-color: transparent;
	color: white;
}

.btn-custom-outline {
	background-color: transparent;
	color: white;
	border: 3px solid white;
	padding: 10px 30px;
	font-weight: normal;
	border-radius: 0;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.btn-custom-outline:hover {
	background-color: #f8f8f8;
	color: black;
}

/* Navbar Styling */

.navbar {
	position: fixed;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	background-color: rgba(17, 33, 53, 0.4);
	z-index: 9999;

	-webkit-transition:
		padding 0.3s ease,
		background-color 0.3s ease,
		-webkit-transform 0.3s ease;
	transition:
		padding 0.3s ease,
		background-color 0.3s ease,
		-webkit-transform 0.3s ease;
	-o-transition:
		padding 0.3s ease,
		background-color 0.3s ease,
		transform 0.3s ease;
	transition:
		padding 0.3s ease,
		background-color 0.3s ease,
		transform 0.3s ease;
	transition:
		padding 0.3s ease,
		background-color 0.3s ease,
		transform 0.3s ease,
		-webkit-transform 0.3s ease;
}

.navbar button {
	transition: margin 0.3s ease;
	margin: 1% 0 0 0;
}

.navbar button:focus,
.navbar button:active,
.navbar button:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

.navbar-brand {
	display: flex;
	align-items: center;
	color: white;
	font-size: 1.2rem;
	padding: 1% 7% 0 0;
}

.navbar-brand img {
	height: 56px;
	-webkit-transition: height 0.3s ease;
	transition: height 0.3s ease;
}

.navbar-brand .logo-icon {
	max-height: 100%;
}

.navbar-spacer {
	min-height: calc(135px + 2.5rem);
	width: 100%;
}

.phone-number {
	color: white;
	text-decoration: none;
	font-size: 1rem;
	margin: 1.2% 0 0 8%;
	transition: margin 0.3s ease;
}

.btn-custom-outline-form-order {
	font-weight: normal;
	font-size: 1rem !important;
	padding: 0px 33px !important;
	margin: 1.6% 0.5% 0 0 !important;
	transition: margin 0.3s ease;
}

.navbar_small {
	background: #080e1e;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.navbar_small button {
	margin: 0;
}

.navbar_small .phone-number {
	margin: 0 0 0 8%;
}

.navbar_small .navbar-brand img {
	height: 25px;
}

.navbar_small .btn-custom-outline-form-order {
	margin: 0 !important;
}

/* Hero Section */

.hero-section {
	padding-bottom: 5rem;
	background: transparent;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: 3.75rem;
}

@media (max-width: 768px) {
	.hero-section .navbar-spacer {
		display: none;
	}

	.hero-title {
		font-size: 2.5rem !important;
	}
}

/* Icons Feature Grid */
.feature-item {
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.feature-grid {
	width: 80%;
}

.feature-icon {
	height: 80px;
	margin-bottom: 15px;
}

.feature-text {
	text-align: center;
	font-size: 0.9rem;
}

/* Hero Image (Tooth) */
.hero-image-container {
	top: 5%;
	position: absolute;
	right: 5%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-img {
	max-width: 35vw;
	object-fit: contain;
	margin-left: 2rem;
}

/* --- Benefits Section Styles --- */
.benefits-section {
	position: relative;
	z-index: 2;
	will-change: clip-path;
	clip-path: circle(0% at 50% 100%);

	background-color: #24425a;
	color: black;
	padding: 5rem 0;
}

.benefit-item {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 80%;
}

.benefit-icon-wrapper {
	width: 120px;
	min-height: 120px;
	margin-bottom: 1.5rem;
}

.benefit-icon {
	width: 100%;
	height: 100%;
}

.benefit-title {
	color: white;
	font-size: 1.1rem;
	width: 85%;
}

@media (max-width: 768px) {
	.benefits-section .navbar-spacer {
		display: none;
	}

	.benefit-title {
		font-size: 0.88rem;
	}
}

/* --- Promo/Offer Section Styles --- */
.promo-section {
	background: transparent;
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 6rem 0;
}

.promo-title {
	font-weight: normal;
	margin-bottom: 1.5rem;
}

.promo-icons-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 70%;
}

.promo-item {
	margin-bottom: 1.5rem;
}

.promo-icon {
	height: 80px;
	width: 80px;
	margin-bottom: 15px;
}

.promo-text {
	text-align: center;
}

/* --- Craft Section Styles --- */
.craft-section {
	background: transparent;
	position: relative;
	z-index: 1;
	color: white;
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.craft-img-composition {
	position: relative;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.craft-tooth {
	width: 60vh;
	height: auto;
	position: absolute;
	padding-top: 20vh;
	z-index: 1;
}

.craft-wand {
	position: absolute;
	top: -40vh;
	left: 50%;
	width: 35vh;
	z-index: 2;
	pointer-events: none;
}

.craft-title {
	margin-bottom: 1rem;
}

.craft-subtitle {
	margin-bottom: 2rem;
}

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

.craft-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 1.5rem;
}

.craft-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: white;
	font-size: 1.1rem;
	top: 1px;
}

.highlight-bold {
	font-weight: normal;
	color: white;
}

/* --- Products/Catalog Section --- */
.products-section {
	background: transparent;
	position: relative;
	z-index: 1;
	padding: 5rem 0;
	color: white;
}

.section-title-centered {
	text-align: center;
	font-weight: normal;
	margin-bottom: 3rem;
}

.product-card {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	height: 250px;
	transition: transform 0.3s ease;
}

.product-card::after {
	background: #00000000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(50, 68, 84, 0.5) 70%, rgba(50, 68, 84, 1) 100%);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.product-card:hover::after {
	background: #00000000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(87, 154, 200, 0.5) 70%, rgba(27, 97, 144, 1) 100%);
}

.product-card.card-blue {
	background-color: #005689;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 1.5rem;
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s;
}

.product-caption {
	position: absolute;
	z-index: 3;
	bottom: 0;
	width: 100%;
	padding: 15px;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 500;
	color: white;
	transition: 0.3s ease;
}

.product-card:hover .product-caption {
	background: transparent;
}

.product-details {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	text-align: center;
	pointer-events: none;
	display: flex;
	transition: 0.3s ease;
	justify-content: center;
	gap: 0.75rem;
	opacity: 0;
}

.product-card:hover .product-caption,
.product-card:hover .product-details {
	color: white;
}

.product-details .price {
	font-weight: normal;
}

.product-card:hover .product-details {
	transform: translateY(0.2rem);
	opacity: 1;
}

.product-card:hover .product-caption {
	transform: translateY(-1.2rem);
}

.price-info-block {
	background-color: rgba(22, 31, 48, 0.4);
	border-radius: 10px;
	padding: 2rem;
	margin-top: 4rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.info-check-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	color: white;
	width: 75%;
}

.info-check-icon {
	margin-right: 15px;
	color: white;
	font-size: 1.2rem;
	margin-top: 2px;
}

/* --- Steps/Flow Section --- */
.steps-section {
	background: transparent;
	position: relative;
	z-index: 1;
	color: white;
}

.steps-content-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5rem;
}

.steps-content-wrapper {
	max-width: 500px;
	margin: 0 auto;
}

.steps-title {
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.step-item {
	align-items: center;
	margin-top: 4rem;
}

.step-circle {
	width: 120px;
	height: 120px;
	border: 1px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 10px;
	margin-right: 1rem;
}

.step-img {
	opacity: 0;
	height: 100px;
	position: absolute;
	width: 50%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.step-number {
	opacity: 0;
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-number div {
	line-height: 0.5;
}

.step-arrow {
	padding-top: 1rem;
}

.step-text {
	opacity: 0;
	color: white;
	position: absolute;
	margin-left: calc(120px + 1.5rem);
	width: 80%;
}

.steps-image-container {
	height: 100%;
	min-height: 400px;
}

/* --- Online Support Section --- */
.support-section {
	background-color: white;
	z-index: 7;
	color: black;
	padding: 7rem 0;
	position: relative;
	overflow: hidden;
}

.support-title {
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: black;
}

.support-subtitle {
	font-size: 1.2rem;
	font-weight: normal;
	color: black;
	margin-bottom: 1.5rem;
}

.support-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: black;
	margin-bottom: 2.5rem;
	max-width: 90%;
}

.support-subheader {
	font-weight: normal;
	text-transform: uppercase;
	color: black;
	margin-bottom: 1.5rem;
}

/* Custom Accordion */
.accordion-custom .accordion-item {
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
	border: none;
	background-color: #01344e;
}

.accordion-custom .accordion-button {
	background-color: #115c82;
	color: white;
	font-weight: normal;
	font-size: 1.2rem;
	padding: 1.2rem 1.5rem;
	box-shadow: none;
	gap: 20px;
	transition: background-color 0.3s ease;
	border: none;
	box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed),
.accordion-custom .accordion-button[aria-expanded="true"] {
	background-color: #01344e;
	color: white;
	border: none;
	box-shadow: none;
}

.accordion-custom .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
	background-color: #01344e;
	color: white;
	border: none;
	box-shadow: none;
}

/* Настройка стрелки */
.accordion-custom .accordion-button::after {
	background-image: url("/assets/template/img/accordion-button.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 1.25rem;
	height: 1.25rem;
	transform: scale(1.2) rotate(0deg);
	transition: transform 0.3s ease-in-out;
	flex-shrink: 0;
}

.accordion-custom .accordion-button:not(.collapsed)::after,
.accordion-custom .accordion-button[aria-expanded="true"]::after {
	transform: rotate(-90deg) scale(1.2) !important;
}

.accordion-custom .accordion-body {
	background-color: #01344e;
	color: white;
	font-size: 1rem;
	line-height: 1.5;
	padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-locked {
	pointer-events: none;
}

/* Image breaking out of container */
.hand-phone-img-wrapper {
	height: 100%;
	position: relative;
	left: -5%;
	top: 7rem;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.hand-phone-img {
	width: 90%;
	position: absolute;
	height: auto;
	top: 0;
}

/* --- Map Section --- */
.map-section {
	z-index: 8;
	/* background-image: url("/assets/template/img/map-background.webp"); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: white;
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.map-content {
	position: relative;
	z-index: 2;
}

.map-title {
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 2rem;
}

.map-list {
	list-style: none;
	padding: 0;
}

.map-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 300;
	color: #dceeff;
}

.map-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: white;
	font-size: 1.1rem;
}

/* --- Reviews Section --- */
.reviews-section {
	z-index: 9;
	margin-bottom: -300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: white;
	padding: 6rem 0;
	position: relative;
}

.reviews-title {
	font-weight: normal;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 3rem;
}

.review-card {
	background-color: white;
	color: #001f3f;
	border-radius: 15px;
	padding: 2.5rem;
	min-height: 365px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-author {
	font-size: 1.2rem;
	color: black;
}

.review-clinic {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: black;
}

.review-text {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 400;
	color: #333;
}

/* --- Slider Wrapper --- */
.reviews-slider-wrapper {
	position: relative;
	padding: 0 60px;
	width: 85%;
}

/* Swiper Customization */
.custom-nav-btn {
	color: white;
	padding-bottom: 5rem;
}

.custom-nav-btn::after {
	font-size: 1.2rem;
	font-weight: bold;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
}

/* --- Pagination Dots --- */
.swiper-pagination {
	position: relative;
	margin-top: 2rem;
	bottom: 0 !important;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #00aaff;
	opacity: 1;
	margin: 0 6px !important;
	transition: transform 0.2s;
}

.swiper-pagination-bullet-active {
	background: #ffffff;
	transform: scale(1.2);
}

.reviews-footer-text {
	text-align: center;
	margin-top: 3rem;
	text-transform: uppercase;
	color: white;
}

/* --- CTA Section --- */
.cta-section {
	z-index: 8;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: white;
	padding-top: 6rem;
	padding-bottom: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.cta-wrapper {
	position: relative;
	top: 20%;
}

.cta-title {
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1;
}

.cta-tooth-wrapper {
	margin-top: 4rem;
	display: flex;
	justify-content: center;
}

.cta-tooth-img {
	width: 70vh;
	height: auto;
	display: block;
}

.footer-section {
	position: relative;
	top: 300px;
	background-color: #020b14;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	font-size: 0.9rem;
	position: relative;
}

.footer-overlay {
	padding: 60px 0;
}

.footer-overlay a {
	color: #93c0d6;
}

.footer-logo {
	text-align: center;
}

.footer-logo img {
	width: 60%;
	margin-bottom: 10px;
}

.logo-text {
	font-size: 1.5rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	line-height: 1;
}

.logo-subtext {
	font-size: 0.6rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #aaa;
}

.footer-links {
	text-align: center;
}

.footer-links a {
	color: #e0e0e0;
	text-decoration: none;
	display: block;
	margin-bottom: 12px;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #fff;
	text-decoration: underline;
}

.contact-info p {
	margin-bottom: 8px;
	color: #d1d1d1;
}

.contact-phone {
	font-size: 1.1rem;
	color: #fff !important;
}

.contact-address {
	width: 50%;
}

.contact-details {
	background: white;
	text-align: center;
	color: black;
}

.contact-details h2 {
	font-family: "EuropeExt-bold";
	font-size: 2rem;
	text-transform: uppercase;
	margin: 0 0 80px 0;
}

.contact-details-bg {
	padding: 80px 0;
	background-color: #e9f5fb;
}

.contact-details-bg p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 2rem;
}

.policy-link {
	font-weight: normal;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	margin-top: 10px;
}

.social-icons {
	margin-top: 20px;
}

.social-icons a {
	margin: 0 15px;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	margin: 0 8px;
	text-decoration: none;
	font-size: 1.2rem;
	transition: opacity 0.3s;
}

.social-btn img {
	width: 100%;
}

.social-btn:hover {
	opacity: 0.8;
	color: #000;
}

@media (max-width: 768px) {
	.social-icons a {
		margin: 0 0 15px 0;
	}

	.contact-address {
		width: 100%;
	}
}

/* Mobile adjustments */

@media (max-width: 1400px) {
	.btn-custom-outline,
	.btn-custom-primary {
		font-size: 1rem;
	}

	.hero-title {
		font-size: calc(0.95rem + 1.5vw) !important;
	}

	.hero-subtitle {
		font-size: calc(0.8rem + 1vw) !important;
	}

	.feature-text {
		font-size: 1rem;
		line-height: 0.95rem;
	}
}

@media (max-width: 1200px) {
	.btn-custom-outline,
	.btn-custom-primary {
		font-size: 0.95rem;
	}

	.hero-title {
		font-size: calc(0.95rem + 1.2vw) !important;
	}

	.hero-subtitle {
		font-size: calc(0.7rem + 1vw) !important;
	}

	.feature-text {
		font-size: 0.8rem;
		line-height: 1rem;
	}

	.benefit-title {
		font-size: 1rem;
	}
}

@media (max-width: 992px) {
	.btn-custom-outline,
	.btn-custom-primary {
		font-size: 0.88rem;
	}

	.reviews-slider-wrapper {
		padding: 0;
		width: 100%;
	}

	.custom-nav-btn {
		display: none;
	}

	h1 {
		font-size: calc(0.95rem + 2.75vw) !important;
	}

	.fs-1 {
		font-size: calc(0.95rem + 3.5vw) !important;
	}

	.fs-2 {
		font-size: calc(0.85rem + 3vw) !important;
	}

	.fs-3 {
		font-size: calc(0.75rem + 2.75vw) !important;
	}

	.fs-5 {
		font-size: calc(0.75rem + 2vw) !important;
	}

	p {
		font-size: calc(0.65rem + 1.5vw) !important;
	}

	a {
		font-size: calc(0.5rem + 1.5vw) !important;
	}

	li {
		font-size: calc(0.65rem + 1.5vw) !important;
	}

	.feature-item {
		left: 0%;
	}

	.feature-grid {
		width: 100%;
	}

	.hero-img {
		max-width: 60vw;
	}

	.benefit-title {
		width: 100%;
	}

	.hero-section {
		justify-content: flex-start !important;
		align-items: flex-start !important;
		padding-top: 8rem;
	}

	.craft-section {
		height: auto;
		justify-content: flex-start !important;
		align-items: flex-start !important;
	}

	.benefits-section {
		justify-content: flex-start !important;
		align-items: flex-start !important;
		padding-top: 8rem;
	}

	.craft-wand {
		position: absolute;
		top: -45%;
		left: 45%;
		width: 70%;
		z-index: 2;
		pointer-events: none;
	}

	.craft-tooth {
		width: 90%;
		height: auto;
		position: relative;
		padding-top: 20%;
		z-index: 1;
	}

	.craft-list li::before {
		content: "";
	}

	.craft-list li {
		position: relative;
		padding-left: 0;
	}

	.promo-section .btn {
		width: 100%;
	}

	.price-info-block {
		flex-direction: column;
	}

	.price-info-block .btn {
		margin-top: 1.2rem;
	}

	.info-check-item {
		width: 100%;
	}

	.product-card {
		color: white;
		height: 250px;
		border-radius: 20px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
		margin-bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.product-img {
		position: absolute;
	}

	.product-card::after {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
		opacity: 1 !important;
	}

	.card-content {
		justify-content: flex-end;
		padding-bottom: 30px;
	}

	.product-caption {
		position: relative;
		font-size: 1.2rem;
		padding: 0px;
		transform: none !important;
	}

	.product-details {
		position: relative;
		opacity: 1 !important;
		padding: 0 0 20px 0;
		padding-top: 10px;
		transform: none !important;
		flex-wrap: wrap;
	}

	.step-item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 1.5rem;
	}

	.step-circle {
		margin-right: 0;
	}

	.map-list li::before {
		content: "";
	}

	.map-list li {
		position: relative;
		padding-left: 0;
	}

	.support-subheader {
		z-index: 5;
	}

	.accordion-custom {
		z-index: 5;
		width: 100%;
	}

	.hand-phone-img-wrapper {
		margin-bottom: -6rem;
		top: 0;
	}

	.hand-phone-img {
		position: relative;
		width: 80%;
		height: auto;
	}

	.cta-tooth-img {
		width: 120vw;
	}

	.accordion-custom .accordion-button {
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
	}

	.accordion-custom .accordion-button::after {
		transform: scale(1.6) rotate(0deg);
		margin-left: 0;
	}

	.accordion-custom .accordion-button:not(.collapsed)::after,
	.accordion-custom .accordion-button[aria-expanded="true"]::after {
		transform: rotate(-90deg) scale(1.6) !important;
	}

	.step-text {
		margin-left: 0;
		margin-top: calc(120px + 8rem);
		display: flex;
		flex-direction: column;
		width: 80vw;
	}
}

@media (max-width: 576px) {
	.product-card {
		justify-content: flex-end;
	}

	.mc-benefits-section,
	.mc-work-section,
	.mc-features-row {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.mc-col-code::before {
		content: "№ ";
	}

	.mc-col-price::after {
		content: " руб.";
	}

	.price-category-row .mc-col-code::before {
		content: "";
	}

	.price-category-row .mc-col-price::after {
		content: "";
	}

	.mc-client-notice-box,
	.mc-terms-box {
		padding: 1.5rem !important;
	}
}

/* Sweet Alert 2 */

.swal2-container {
	z-index: 99999999;
}

.swal2-title {
	font-family: "CenturyGothic-normal";
}

/* Modal Styles */

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	background: #f4f6f9;
	padding: 3rem 4rem;
	border-radius: 0;
	width: 90%;
	min-height: 60vh;
	max-height: 90vh;
	overflow-y: auto;
	max-width: 75vw;
	position: relative;
	text-align: center;
	color: #001f3f;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	transform: translateY(20px);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Custom scrollbar for modal */
.modal-container::-webkit-scrollbar {
	width: 6px;
}

.modal-container::-webkit-scrollbar-track {
	background: transparent;
	margin-top: 20px;
	margin-bottom: 20px;
}

.modal-container::-webkit-scrollbar-thumb {
	background-color: #cbd5e1;
	border-radius: 20px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
	background-color: #94a3b8;
}

.modal-overlay.active .modal-container {
	transform: translateY(0);
}

.modal-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #001f3f;
	transition: transform 0.2s;
}

.modal-close-btn:hover {
	transform: scale(1.1);
}

.modal-inner-wrapper {
	width: 100%;
	margin: auto 0;
}

.modal-title {
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	font-weight: normal;
	color: #001f3f;
}

.modal-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	font-weight: 400;
	letter-spacing: 1px;
	color: #001f3f;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.modal-row {
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
}

.modal-text-holder {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.modal-text-holder .modal-input {
	padding: 10px 15px;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	background: white;
	font-size: 1.1rem;
	outline: none;
	color: #333;
}

.modal-text-holder .input-error {
	color: red;
	font-size: 0.8rem;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
	color: #888;
}

.modal-textarea {
	width: 100%;
	height: 120px;
	padding: 15px;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	background: white;
	font-size: 1rem;
	outline: none;
	resize: none;
	color: #333;
}

.modal-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1rem;
}

.policy-text {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 1.5rem;
}

.policy-link-dark {
	color: #001f3f;
	text-decoration: none;
	font-weight: normal;
}

.modal-submit-btn {
	border: 2px solid #001f3f;
	color: #001f3f !important;
	padding: 10px 50px;
	font-weight: normal;
	text-transform: none;
	background: transparent;
}

.modal-submit-btn:hover {
	background: #001f3f;
	color: white !important;
}

@media (max-width: 992px) {
	.modal-container {
		padding: 1rem;
		width: 95%;
		height: 95%;
		max-width: 100vw;
	}

	.modal-row {
		flex-direction: column;
		gap: 1rem;
	}

	.modal-title {
		font-size: 1.5rem !important;
	}

	.modal-subtitle {
		font-size: 0.9rem !important;
		margin: 0 0 15px 0;
	}
}

@media (max-width: 576px) {
	.modal-form {
		gap: 1rem;
	}

	.modal-textarea {
		height: 90px;
	}

	.modal-close-btn {
		right: 2px;
	}

	.modal-title {
		font-size: 1rem !important;
	}

	.modal-subtitle {
		font-size: 0.6rem !important;
	}

	.modal-footer {
		margin: 0;
	}
}

/* Menu Styles */
.navbar.menu-open {
	background-color: #112135 !important;
	transition: background-color 0.3s ease;
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 95;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.interaction-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: #112135;
	z-index: 98;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	overflow-y: auto;
}

.interaction-menu.active {
	transform: translateX(0);
	box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.menu-wrapper {
	max-width: 600px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.menu-logo-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.menu-logo {
	height: 40px;
}

.menu-close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
}

.menu-nav-list {
	display: flex;
	flex-direction: column;
	padding: 0 1.5rem;
	gap: 0;
}

.menu-item {
	width: 100%;
	color: white;
	text-decoration: none;
	font-size: 1.4rem !important;
	text-transform: uppercase;
	padding: 1rem 0;
	border-bottom: 1px solid #273a4e;
	display: block;
	text-align: left;
}

.menu-item.active {
	color: #93c0d6;
}

.menu-item:hover {
	text-shadow: 0 0 15px rgba(0, 160, 240, 0.75);
}

.menu-accordion-header {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-bottom: 1px solid #273a4e;
	position: relative;
	border-bottom: none;
}

.menu-toggle-sign {
	color: white;
	font-size: 2.2rem;
	position: absolute;
	right: 0;
	font-weight: 300;
}

.menu-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.menu-subitem {
	color: #d0d0d0;
	text-decoration: none;
	display: block;
	padding: 10px 0;
	text-align: left;
	font-size: 1.1rem !important;
	transition: color 0.3s;
	position: relative;
}

.menu-subitem.active {
	color: #93c0d6;
}

.menu-subitem::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0%;
	transform: translateX(-50%);
	width: 180%;
	height: 1px;
	background-color: #273a4e;
}

.menu-subitem:last-child::after {
	display: none;
}

.menu-subitem:hover {
	color: white;
}

.menu-socials {
	margin-top: auto;
	padding: 2rem 1rem;
}

.menu-socials .social-btn {
	margin: 0 10px;
	width: 52px;
	height: 52px;
}

/* Mobile adjustments */
@media (max-width: 992px) {
	.interaction-menu {
		width: 100%;
		align-items: center;
	}

	.menu-wrapper {
		width: 100%;
	}

	.menu-subitem {
		text-align: center;
	}

	.menu-item {
		text-align: center;
	}

	.menu-accordion-header {
		justify-content: center;
		align-items: center;
	}

	.menu-subitem::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 90%;
		height: 1px;
		background-color: #273a4e;
	}

	.navbar.menu-open {
		background-color: #0b1527 !important;
		transition: background-color 0.3s ease;
	}

	.menu-socials {
		margin-top: auto;
		display: flex;
		justify-content: center;
		padding: 2rem 0;
	}
}

.menu-close-icon {
	width: 25px;
	height: 25px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: #0b1527;
}

::-webkit-scrollbar-thumb {
	background: #115c82;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #0080c0;
}

/* --- Services Page Styles --- */
.services-hero {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 100px;
}

.services-title-main {
	text-transform: uppercase;
	margin-bottom: 3rem;
	line-height: 1.2;
}

.services-icons-row {
	min-width: 60%;
}

.service-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2rem;
}

.service-icon-img {
	height: 80px;
	width: auto;
	margin-bottom: 1rem;
}

.service-icon-text {
	font-size: 0.9rem;
	color: #a0c0d0;
}

.info-block-container {
	background-color: #cde7f5;
	border-radius: 20px;
	padding: 3rem;
	margin: 4rem 0;
	color: #112135;
	text-align: center;
	line-height: 1.6;
}

.services-grid-title {
	text-align: center;
	color: #fff;
	font-size: 2.5rem;
	text-transform: uppercase;
	margin-bottom: 3rem;
}

.service-card-new {
	background-color: #f4f4f4;
	border-radius: 10px;
	overflow: hidden;
	color: #001f3f;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s;
}

.service-card-new:hover {
	transform: translateY(-5px);
}

.service-card-img-wrapper {
	height: 250px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.service-card-title {
	font-weight: normal;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.service-card-desc {
	font-size: 0.85rem;
	margin-bottom: 1rem;
	color: #444;
	flex-grow: 1;
}

.service-card-price {
	font-weight: normal;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.service-card-discount {
	font-size: 0.8rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.service-card-btns {
	width: 100%;
	display: flex;
	gap: 10px;
}

.btn-service-dark {
	flex: 1;
	background-color: #003a5d;
	color: white;
	border: none;
	padding: 8px 0;
	font-weight: 500;
	font-size: 0.9rem;
	transition: background 0.3s;
	text-decoration: none;
}

.btn-service-dark:hover {
	background-color: #005080;
	color: white;
}

.btn-service-outline {
	flex: 1;
	background-color: transparent;
	border: 2px solid #003a5d;
	color: #003a5d;
	padding: 8px 0;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.3s;
}

.btn-service-outline:hover {
	background-color: #003a5d;
	color: white;
}

/* Portfolio */

.portfolio-card {
	cursor: pointer;
}

.portfolio-card-zoom-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 1.8rem;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.portfolio-card:hover .portfolio-card-zoom-icon {
	opacity: 1;
}

@media (max-width: 767.98px) {
	.portfolio-card .service-card-img-wrapper {
		height: 160px;
	}

	.portfolio-card .service-card-body {
		padding: 0.75rem 0.5rem;
	}

	.portfolio-card .service-card-title {
		font-size: 0.95rem;
		margin-bottom: 0;
	}
}

/* ============================================================
   Shared base — two separate modals, both use this "shell":
   #portfolioLightbox      (.portfolio-strip-lightbox)  — several medium
                            photos in a row, close + arrows only, no zoom.
   #portfolioPhotoLightbox (.portfolio-photo-lightbox)   — one full-size
                            photo, zoomable. Opened directly on mobile, or by
                            clicking a photo inside the strip modal on desktop.
   ============================================================ */
.portfolio-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.portfolio-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.portfolio-lightbox-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.portfolio-lightbox-close,
.portfolio-lightbox-zoom-btn {
	position: absolute;
	top: 20px;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	z-index: 10001;
	transition: transform 0.2s;
}

.portfolio-lightbox-close {
	right: 20px;
	font-size: 1.8rem;
}

.portfolio-lightbox-zoom-btn {
	right: 68px;
	font-size: 1.5rem;
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-zoom-btn:hover {
	transform: scale(1.1);
}

.portfolio-lightbox-prev,
.portfolio-lightbox-next {
	color: #fff;
}

/* ============================================================
   Strip modal — https://swiperjs.com/demos/130-centered/core (client spec):
   active slide centered, the rest peeking off the right edge. Header row
   (title left, arrows right) sits below the close button, not sharing its row.
   ============================================================ */
/* The header's own .container (Bootstrap 5) centers title+arrows the same
   way the rest of the site centers content, instead of fixed side offsets. */
.portfolio-strip-lightbox .portfolio-lightbox-header {
	position: absolute;
	top: 140px;
	left: 0;
	right: 0;
	z-index: 2;
}

.portfolio-strip-lightbox .portfolio-lightbox-title {
	font-size: 2rem;
	text-transform: uppercase;
	color: #fff;
}

.portfolio-strip-lightbox .portfolio-lightbox-nav {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Font Awesome circle-arrow icons already look like round buttons, so the
   elements just need to be plain, unstyled hit areas — Swiper's own default
   ::after glyph is suppressed in favor of the <i> icon markup. */
.portfolio-strip-lightbox .portfolio-lightbox-prev,
.portfolio-strip-lightbox .portfolio-lightbox-next {
	position: static;
	margin: 0;
	width: auto;
	height: auto;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.portfolio-strip-lightbox .portfolio-lightbox-prev::after,
.portfolio-strip-lightbox .portfolio-lightbox-next::after {
	content: none;
}

/* Swiper 12 injects its own default arrow as a real <svg> child (no longer a
   CSS ::after icon-font glyph) regardless of the button's existing content,
   so it has to be hidden explicitly to leave only the Font Awesome <i> icon. */
.portfolio-strip-lightbox .portfolio-lightbox-prev svg,
.portfolio-strip-lightbox .portfolio-lightbox-next svg {
	display: none;
}

.portfolio-strip-lightbox .portfolio-lightbox-content {
	justify-content: center;
}

.portfolio-strip-lightbox .portfolio-lightbox-swiper {
	width: 100%;
	flex: 0 0 auto;
}

/* Swiper's own .swiper-wrapper is display:flex with align-items:stretch by
   default, which would force every slide to the modal's full height instead
   of the fixed 420x510 "medium" preset size. */
.portfolio-strip-lightbox .portfolio-lightbox-swiper .swiper-wrapper {
	align-items: center;
}

.portfolio-strip-lightbox .portfolio-lightbox-swiper .swiper-slide {
	width: 420px;
	height: 510px;
	flex-shrink: 0;
	cursor: pointer;
}

.portfolio-strip-lightbox .portfolio-lightbox-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================================
   Photo modal — one full-size ("big") photo, zoom via click / double-tap /
   pinch (Swiper's Zoom module), arrows to move to the next photo.
   ============================================================ */
.portfolio-photo-lightbox .portfolio-lightbox-footer {
	flex: 0 0 auto;
	width: 100%;
	padding-top: 16px;
	color: #fff;
	text-align: center;
}

.portfolio-photo-lightbox .portfolio-lightbox-title {
	font-size: 1.1rem;
	text-transform: uppercase;
}

.portfolio-photo-lightbox .portfolio-lightbox-counter {
	font-size: 0.9rem;
	color: #aaa;
}

.portfolio-photo-swiper {
	width: 100%;
	flex: 1 1 auto;
	min-height: 0;
}

.portfolio-photo-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.portfolio-photo-swiper .swiper-zoom-container {
	width: 100%;
	height: 100%;
}

.portfolio-photo-swiper .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	cursor: zoom-in;
}

.portfolio-photo-lightbox.zoomed .portfolio-photo-swiper .swiper-slide img {
	cursor: zoom-out;
}

.portfolio-photo-lightbox.single-slide .portfolio-lightbox-prev,
.portfolio-photo-lightbox.single-slide .portfolio-lightbox-next,
.portfolio-photo-lightbox.zoomed .portfolio-lightbox-prev,
.portfolio-photo-lightbox.zoomed .portfolio-lightbox-next {
	display: none;
}

@media (max-width: 768px) {
	.portfolio-lightbox {
		padding: 15px;
	}

	.portfolio-photo-lightbox .portfolio-lightbox-footer {
		padding-top: 10px;
	}

	.portfolio-photo-lightbox .portfolio-lightbox-title {
		font-size: 0.9rem;
	}

	.portfolio-photo-lightbox .portfolio-lightbox-counter {
		font-size: 0.8rem;
	}
}

/* FAQ Section */
.faq-section {
	padding: 4rem 0;
}

.faq-title {
	text-align: center;
	text-transform: uppercase;
	font-size: 2.2rem;
	margin-bottom: 3rem;
}

.faq-item {
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
	background-color: #003a5d;
}

.faq-accordion-header {
	background-color: #003a5d;
	color: white;
	padding: 1.5rem;
	cursor: pointer;
	font-weight: normal;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s;
}

.faq-accordion-header:hover {
	background-color: #004a75;
}

.faq-accordion-header::after {
	content: url("./public/accordion-button.svg");
	/* Reuse existing arrow */
	transform: rotate(0deg) scale(0.8);
	transition: transform 0.3s;
	filter: invert(1);
	width: 20px;
	height: 20px;
}

.faq-accordion-header.active::after {
	transform: rotate(-90deg) scale(0.8);
}

.faq-accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background-color: #0b1527;
	color: #e0e0e0;
}

.faq-content {
	padding: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.faq-section b,
.faq-section strong {
	color: #38cef7;
}

/* Metal-Ceramic Page Styles */

.mc-hero {
	padding-bottom: 80px;
	overflow: hidden;
	position: relative;
}

.mc-hero-content {
	z-index: 2;
	position: relative;
}

.mc-hero-img-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mc-hero-img {
	max-width: 100%;
	height: auto;
}

.mc-price {
	font-size: 2.5rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.mc-feature-icon {
	width: auto;
	height: 60px;
	margin-bottom: 1rem;
}

.mc-info-section {
	background-color: #f8fbfe;
	padding: 120px 0;
	color: #001f3f;
}

.mc-info-box {
	background: #cde7f5;
	border-radius: 20px;
	padding: 3rem;
}

.mc-process-section {
	padding: 80px 0;
}

.mc-step-number {
	width: 100px;
	height: 100px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	/* Visible circle */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	margin-bottom: 1.5rem;
	flex-shrink: 0;
	line-height: 1;
	padding-top: 10px;
}

.mc-process-step {
	min-height: 100vh;
	display: flex;
	align-items: stretch !important;
}

.mc-process-img-full {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.text-light-custom {
	color: #e0e0e0;
}

@media (max-width: 991.98px) {
	.mc-process-step {
		min-height: auto;
		padding: 2rem 0;
		text-align: center;
	}

	.mc-hero {
		padding-top: 100px;
		text-align: center;
	}

	.mc-features-row {
		justify-content: center;
	}
}

/* Benefits Section Icons */

.mc-benefit-icon {
	width: 80px;
	height: 60px;
	object-fit: contain;
}

.mc-benefit-icon-white {
	filter: brightness(0) invert(1);
}

/* Benefits Section */

/* Pricing Section */
.mc-pricing-section {
	background-color: #fff;
	padding-bottom: 80px;
}

.mc-pricing-block {
	background-color: #35475b;
	color: #fff;
	border-radius: 15px;
	padding: 20px;
	height: 100%;
}

.mc-pricing-header {
	padding-bottom: 15px;
	font-size: 1.2rem;
	text-align: center;
}

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

.mc-pricing-item {
	padding: 15px 5px;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.2;
}

.mc-pricing-item:last-child {
	border-bottom: none;
}

/* Terms Styles */
.mc-terms-header {
	background-color: #35475b;
	color: #fff;
	border-radius: 15px;
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.mc-terms-body {
	background-color: #35475b;
	color: #fff;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	font-size: 1rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 2;
}

/* About Lab Section */
.mc-about-section {
	background-color: #fff;
	padding: 0 0 80px 0;
}

.mc-about-list {
	list-style-type: disc;
	padding-left: 20px;
}

.mc-about-list li {
	margin-bottom: 10px;
	line-height: 2;
}

.mc-about-icon-wrapper {
	text-align: center;
	margin-bottom: 1rem;
}

.mc-about-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 15px;
}

.mc-about-icon-text {
	font-size: 0.9rem;
	text-align: center;
	color: #000;
}

/* Discount Section */
.mc-discount-section {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	padding-top: 80px;
	padding-bottom: 0;
	min-height: 600px;
}

.mc-discount-form-row {
	margin-bottom: 20px;
}

.mc-discount-form-row .input-error {
	color: red;
	font-size: 0.8rem;
}

.mc-discount-input {
	background-color: #fff;
	border: none;
	border-radius: 15px;
	padding: 10px 20px;
	width: 100%;
	color: #000;
	font-size: 0.9rem;
	height: 45px;
	outline: none;
}

.mc-discount-btn {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding: 10px 40px;
	border-radius: 0;
	text-transform: uppercase;
	transition: all 0.3s ease;
	display: inline-block;
	margin-top: 20px;
	font-size: 1rem;
	cursor: pointer;
}

.mc-discount-btn:hover {
	background-color: #fff;
	color: #000;
}

.mc-discount-image-wrapper {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	margin-bottom: -10px;
}

.mc-discount-tooth-img {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}

/* Work With Us Section */
.mc-work-section {
	background-color: #fff;
	padding-top: 80px;
}

.mc-work-item {
	text-align: center;
	margin-bottom: 40px;
}

.mc-work-icon {
	width: 90px;
	height: 80px;
	margin-bottom: 20px;
	object-fit: contain;
}

.mc-work-text {
	font-size: 0.95rem;
	line-height: 1.4;
	color: #000;
	max-width: 300px;
	margin: 0 auto;
}

/* Interesting Section */
.mc-interesting-section {
	background-color: #fff;
	padding-top: 80px;
	padding-bottom: 80px;
}

.mc-product-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 250px;
	margin-bottom: 20px;
	background-color: #000;
}

.mc-promo-banner {
	background-color: #cde7f5;
	border-radius: 20px;
	padding: 40px;
	margin-top: 40px;
	text-align: center;
}

.mc-promo-check {
	width: 24px;
	height: auto;
	margin-bottom: 20px;
}

.mc-promo-text {
	font-size: 1rem;
	width: 50%;
	color: #000;
}

.cta-tooth-wrapper-mc {
	margin-top: 4rem;
	display: flex;
	justify-content: center;
	margin-bottom: -30vh;
}

@media (max-width: 768px) {
	.mc-about-list {
		list-style-type: none;
		padding-left: 0;
	}

	.mc-promo-text {
		width: 80%;
	}
}

.is-hero-img {
	max-width: 120%;
	width: 120%;
}

@media (max-width: 768px) {
	.is-hero-img {
		max-width: 100%;
		width: 100%;
	}
}

/* --- About Page Hero --- */
.about-hero-section {
	min-height: 100vh;
	color: white;
}

.about-hero-logo {
	height: 20%;
	width: auto;
}

/* --- Fullscreen Info Sections --- */
.info-text-col {
	background-color: #022e45;
	color: white;
	padding: 5rem;
	min-height: 80vh;
	/* Ensure substantial height */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-img-col {
	min-height: 80vh;
	position: relative;
}

.info-section-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

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

.info-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.5;
}

.info-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: white;
	font-size: 1.2rem;
	line-height: 1.5;
}

@media (max-width: 992px) {
	.info-text-col {
		padding: 3rem 1.5rem;
		min-height: auto;
		text-align: center;
	}

	.info-list li {
		padding-left: 0;
		padding-top: 2rem;
		margin-bottom: 2rem;
		position: relative;
	}

	.info-list li::before {
		content: "•";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.info-text-col {
		padding: 0 1.5rem;
	}
}

.price-section {
	padding-bottom: 80px;
}

/* Table Styles for Price Page */
.table-responsive {
	text-align: center;
}

.mc-pricing-table {
	background-color: transparent !important;
	color: #fff;
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.mc-pricing-table thead th {
	color: #fff;
	border-bottom: none;
	padding: 20px;
	font-size: 1.1rem;
}

.mc-pricing-table tbody td {
	color: #fff;
	border-bottom: none;
	padding: 15px 20px;
	font-size: 1.1rem;
	vertical-align: middle;
}

.mc-pricing-table tbody tr:last-child td {
	border-bottom: none;
}

.mc-pricing-table tbody td p {
	margin: 10px 0;
}

.mc-col-bg {
	background-color: transparent !important;
	border: 0;
}

.mc-col-code {
	width: 10%;
	text-align: center;
	background-color: #35475b !important;
}

.mc-col-name {
	width: 70%;
	background-color: #35475b !important;
}

.mc-col-price {
	width: 20%;
	text-align: center;
	background-color: #35475b !important;
}

.mc-pricing-table thead tr th {
	border-radius: 10px;
}

.mc-pricing-table tr:first-child td {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.mc-pricing-table tr:last-child td {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.mc-price-table-bg-note tr td {
	border-radius: 10px !important;
}

.mc-col-w20 {
	width: 5%;
}

.mc-col-w60 {
	width: 45%;
}

@media (max-width: 768px) {
	.mc-pricing-table thead {
		display: none;
	}

	.mc-pricing-table tr {
		display: flex;
		flex-direction: column;
		margin-bottom: 15px;
		background-color: #fff;
	}

	.mc-price-table-bg-separator {
		display: none;
	}

	.price-category-row {
		display: none;
	}

	.mc-price-table-section table {
		width: 100%;
		background-color: transparent;
	}

	.mc-col-bg {
		display: none;
	}

	.mc-pricing-table tbody td {
		text-align: center;
		width: 100%;
		border-radius: 0 !important;
	}

	.mc-terms-table tbody td {
		padding: 10px;
	}

	.mc-terms-table tr {
		flex-direction: row;
	}

	.mc-terms-table .mc-col-code {
		width: 50%;
	}

	.mc-terms-table .mc-col-bg {
		display: none;
	}
}

/* Pricing Note */
.mc-pricing-note {
	background-color: #35475b;
	color: white;
	border-radius: 15px;
	font-size: 1rem;
}

/* Client Notice Box */
.mc-client-notice-box {
	background-color: #7090a4;
	border-radius: 15px;
	color: black;
	/* from text-black class but good to enforce */
}

.mc-client-notice-list {
	list-style-type: disc;
	padding-left: 20px;
}

/* Utilities */
.z-10 {
	z-index: 10 !important;
}

.opacity-100-imp {
	opacity: 1 !important;
}

/* Additional Terms Box */
.mc-terms-box {
	background-color: #7090a4;
	border-radius: 15px;
	padding: 3rem;
	margin-bottom: 3rem;
}

.mc-terms-list {
	list-style-type: disc;
	padding-left: 20px;
	font-size: 1rem;
}

.mc-terms-list li {
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

/* Footer Note */
.mc-footer-note {
	font-size: 1rem;
	font-weight: normal;
	text-align: center;
	margin: 0 auto;
	line-height: 1.6;
}

/* --- Delivery Page Styles --- */
.delivery-hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 175px;
	padding-bottom: 100px;
}

.delivery-title {
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 3rem;
	line-height: 1.2;
}

.delivery-subtitle {
	width: 80%;
}

.delivery-grid-title {
	text-align: center;
	color: #fff;
	width: 60%;
	text-transform: uppercase;
	padding-top: 75px;
	padding-bottom: 75px;
}

.delivery-process {
	min-height: 50vh;
	display: flex;
	align-items: stretch !important;
}

.btn-custom-outline-delivery {
	background-color: transparent;
	color: #101b2d;
	border: 3px solid #101b2d;
	padding: 10px 30px;
	border-radius: 0;
	font-size: 1rem;
	transition: all 0.3s;
}

.btn-custom-outline-delivery:hover {
	background-color: #101b2d;
	color: white;
}

@media (max-width: 992px) {
	.delivery-subtitle {
		width: 100%;
	}

	.delivery-grid-title {
		width: 100%;
	}

	.delivery-process {
		min-height: 20vh;
	}
}

/* --- Order Form Styles --- */

.order_form_holder h1 {
	margin: 12px 0 38px 0;
	color: black;
}

.order-form label {
	font-family: "CenturyGothic-bold";
	font-size: 1.26rem;
	text-transform: none;
	color: #222a32;
	margin: 0 0 12px 0;
	cursor: pointer;
}

.order-form input[type="text"],
.order-form input[type="number"],
.order-form input[type="email"],
.order-form textarea,
.order-form .tooth-picker-input,
.order-form select,
.order-form .input-group-text {
	border: 1px solid #161f30;
	min-height: 86px;
	padding: 24px;
	font-size: 1.12rem;
	color: black;
	border-radius: 14px;
	font-family: "EuropeExt";
	margin: 0 0 16px 0;
}

.order-form input[type="file"] {
	border: 1px solid #161f30;
	font-size: 1.12rem;
	color: black;
	border-radius: 14px;
	font-family: "EuropeExt";
}

.order-form .form-control::placeholder,
.order-form .form-select::placeholder,
.order-form .input-group-text::placeholder,
.tooth-picker-input span {
	color: #a3a3a3;
}

.order-form input[type="date"] {
	background: transparent;
	color: #a3a3a3;
}

.order-form .form-control:focus,
.order-form .form-select:focus {
	border-color: #001f3f;
	box-shadow: none;
}

.order-form h3 {
	font-family: "EuropeExt-bold";
	color: #161f30;
	text-align: center;
	text-transform: uppercase;
	margin: 0 0 50px 0;
}

.order-form-general_holder,
.order-form-personal_holder,
.order-form-dentaldata_holder {
	margin: 0 0 62px 0;
}

.order-form-personal-gender_label {
	margin-right: 16px !important;
}

.order-form-dentaldata_holder .btn,
.order-form-works_holder .btn,
.order-form-files_holder .btn {
	color: #115c82;
	font-family: "EuropeExt-normal";
	font-size: 1.12rem;
	display: flex;
	align-items: center;
	flex-direction: row;
	margin: 0 auto;
	text-decoration: none;
}

.order-form-files_holder .btn {
	margin: 0 auto 50px auto;
}

.order-form-shapes-shape {
	margin: 0 0 42px 0;
}

.order-form-color-restoration {
	margin: 0 0 44px 0;
}

.order-form-color-stump {
	margin: 0 0 45px 0;
}

.order-form-fixation {
	margin: 0 0 26px 0;
}

.order-form-gingival-contour {
	margin: 0 0 20px 0;
}

.order-form-cutting-edge {
	margin: 0 0 36px 0;
}

.order-form-shapes_holder {
	margin: 0 0 35px 0;
}

.tooth_scheme_holder {
	padding: 50px 0 0 0;
}

.order-form-works_holder {
	margin: 0 0 40px 0;
}

.order-form-comments_holder {
	margin: 0 0 74px 0;
}

.order-form-comments_holder textarea {
	height: 196px !important;
}

.order-form-files_holder {
	text-align: center;
}

.order-form-files_holder h3 {
	margin: 0 0 24px 0 !important;
}

.order-form-files_holder p {
	color: black;
	font-size: 1.26rem;
	font-weight: bold;
	margin: 0 0 28px 0;
}

.order-form-submit_holder {
	margin: 80px 0 0 0;
	text-align: center;
}

.order-form-submit_holder .btn {
	border: 4px solid #5fbbf9 !important;
	font-family: "EuropeExt";
	color: #115c82 !important;
	font-size: 1.2rem;
	padding: 10px 15px;
	border-radius: 0;
}

.order-form-submit_holder .btn:hover {
	color: white !important;
	background-color: #5fbbf9 !important;
}

/* Custom Plus Icon */
.order-form .custom_icon-plus {
	width: 35px;
	height: 35px;
	color: white;
	background: #5fbbf9;
	margin: 0 16px 0 0;
	border-radius: 50%;
	font-size: 1.5rem;
	line-height: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Custom Checkboxes */

.order-form .form-check-input:checked {
	background-color: #5fbbf9;
	border-color: #5fbbf9;
}

.order-form .form-check-input[type="radio"] {
	border-radius: 0;
	border: 1px solid #161f30;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.order-form .form-check-label {
	font-family: "CenturyGothic-normal";
	font-size: 1.12rem;
	text-transform: none;
	color: #222a32;
	margin: 2px 0 0 6px;
}

/* Primary Outline Button (Submit) */
.order-form .btn-outline-primary {
	color: #001f3f;
	border-color: #001f3f;
	background: transparent;
	transition: all 0.3s ease;
}

.order-form .btn-outline-primary:hover {
	color: white;
	background-color: #001f3f;
	border-color: #001f3f;
}

/* ========================================
   Tooth Picker Styles
   ======================================== */

.tooth-picker-container {
	position: relative;
	user-select: none;
}

.tooth-picker-input {
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition:
		border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
}

.tooth-picker-input:focus-within {
	border-color: #86b7fe;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Selected Tooth Tag */
.tooth-tag {
	background-color: #e9ecef;
	border: 1px solid #dee2e6;
	border-radius: 12px;
	padding: 5px;
	font-size: 0.8rem;
	color: #495057;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tooth-tag:hover {
	background-color: #dee2e6;
}

.tooth-tag .btn-close {
	font-size: 0.5rem;
	width: 0.5em;
	height: 0.5em;
	opacity: 0.6;
}

/* Dropdown Grid */
.tooth-picker-dropdown {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.tooth-option {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 0.9rem;
	color: #001f3f;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.tooth-option:hover {
	background-color: #e9ecef;
	color: #001f3f;
}

.tooth-option.selected {
	background-color: #2aace2;
	/* Placemark Teal/Green color */
	color: white;
	font-weight: normal;
}

/* 404 */

.page404_page {
	text-align: center;
	background: url(/assets/template/img/404-bg.webp);
	background-size: cover;
}

.page404_holder {
	height: 100%;
	padding: 17% 0;
}

.page404_holder h2 {
	font-size: 13rem;
	line-height: 13rem;
}

.page404_holder h1 {
	font-size: 1.9rem;
	font-weight: bold;
	margin: 0 0 65px 0;
}

.page404_holder p {
	font-size: 1.5rem;
	line-height: 1.7rem;
}

.page404_holder p a {
	color: #71d4f4;
	text-decoration: underline;
}

/* Responsive adjustments */

@media (max-width: 1540px) {
	.hero-title {
		font-size: 2.75rem;
	}

	.h2,
	h2 {
		font-size: 1.4rem;
	}

	.feature-icon {
		height: 60px;
	}

	.btn-custom-primary {
		padding: 6px 24px;
		font-size: 1rem;
	}
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
	.navbar-brand {
		padding: 1% 0 0 0;
	}

	.navbar-brand .logo-icon {
		height: 40px;
	}

	.btn-custom-outline-form-order {
		padding: 2% 3% !important;
		font-size: 0.75rem !important;
		margin: 1% 2% 0 0 !important;
	}

	.order-form label {
		margin: 20px 0;
	}

	.order-form input[type="text"],
	.order-form input[type="number"],
	.order-form input[type="email"],
	.order-form textarea,
	.order-form .tooth-picker-input,
	.order-form select,
	.order-form .input-group-text {
		margin: 0 0 20px 0;
	}

	.order-form-dentaldata_holder .btn,
	.order-form-works_holder .btn {
		margin: 50px auto 0 auto;
	}

	.order-form-files_holder .btn {
		margin: 50px auto;
	}

	.tooth_scheme_holder {
		padding: 0;
	}

	.order-form .form-check-label {
		margin: 3px 0 20px 6px;
	}

	.construction-row,
	.work-row {
		padding: 0 0 45px 0;
		border-bottom: 1px solid #161f30;
	}

	.construction-row:last-child,
	.work-row:last-child {
		border-bottom: 0;
		padding: 0;
	}

	.order-form-files_holder input {
		margin: 0 0 40px 0;
	}

	.page404_holder h2 {
		font-size: 6rem;
		line-height: 6rem;
	}

	.info-block-container {
		padding: 2rem;
	}

	.craft-img-composition {
		min-height: 275px;
	}

	.craft-wand {
		top: -55%;
		left: 55%;
		width: 45%;
	}

	.craft-tooth {
		width: 70%;
		padding-top: 0;
	}

	.support-mobile .accordion-body ul li {
		text-align: left;
		margin: 0 0 1rem 0;
	}
}

@media (max-width: 480px) {
	.fs-1 {
		font-size: calc(0.75rem + 3.5vw) !important;
	}

	.page404_holder h2 {
		font-size: 3rem;
		line-height: 3rem;
	}
}
