* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #f8f8f8;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	/* transition: var(--ms-transition-normal); */
}

button {
	border: none;
	cursor: pointer;
	/* transition: var(--ms-transition-normal); */
}

/* Typography */
.mcd-h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #333333;
	margin-bottom: 1.5rem;
}

.mcd-h2 {
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.3;
	color: #333333;
	margin-bottom: 1.2rem;
}

.mcd-h3 {
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.4;
	color: #333333;
	margin-bottom: 1rem;
}

.mcd-h4 {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.4;
	color: #333333;
	margin-bottom: 0.8rem;
}

.mcd-text-large {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #1a1a1a;
}

.mcd-text-medium {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #1a1a1a;
}

.mcd-text-small {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #1a1a1a;
}

/* Layout Utilities */
.mcd-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mcd-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.mcd-section {
	padding: 80px 0;
}

.mcd-section-small {
	padding: 60px 0;
}

.mcd-grid {
	display: grid;
	gap: 2rem;
}

.mcd-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.mcd-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.mcd-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.mcd-flex {
	display: flex;
}

.mcd-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mcd-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mcd-flex-column {
	display: flex;
	flex-direction: column;
}

.mcd-text-center {
	text-align: center;
}

.mcd-text-left {
	text-align: left;
}

.mcd-text-right {
	text-align: right;
}

/* Spacing */
.mcd-mb-xs {
	margin-bottom: 0.5rem;
}
.mcd-mb-sm {
	margin-bottom: 1rem;
}
.mcd-mb-md {
	margin-bottom: 1.5rem;
}
.mcd-mb-lg {
	margin-bottom: 2rem;
}
.mcd-mb-xl {
	margin-bottom: 3rem;
}
.mcd-mb-xxl {
	margin-bottom: 4rem;
}

.mcd-mt-xs {
	margin-top: 0.5rem;
}
.mcd-mt-sm {
	margin-top: 1rem;
}
.mcd-mt-md {
	margin-top: 1.5rem;
}
.mcd-mt-lg {
	margin-top: 2rem;
}
.mcd-mt-xl {
	margin-top: 3rem;
}

.mcd-p-xs {
	padding: 0.5rem;
}
.mcd-p-sm {
	padding: 1rem;
}
.mcd-p-md {
	padding: 1.5rem;
}
.mcd-p-lg {
	padding: 2rem;
}
.mcd-p-xl {
	padding: 3rem;
}

/* Header Styles */
.mcd-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	backdrop-filter: blur(10px);
	color: #f8f8f8;
	transition: all 0.3s ease;
}

.mcd-header.mcd-scrolled {
	background: rgba(248, 248, 248, 0.98);
	box-shadow: 0 2px 20px rgba(51, 51, 51, 0.1);
	/* border-bottom: 1px solid rgba(51, 51, 51, 0.1); */
}

.mcd-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.mcd-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #e63946;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.mcd-logo:hover {
	transform: scale(1.1);
}

.mcd-logo img {
	height: 40px;
	margin-right: 10px;
}

.mcd-nav {
	display: flex;
	align-items: center;
}

.mcd-nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	margin-right: 2rem;
}

.mcd-nav-list li {
	margin: 0 1rem;
}

.mcd-nav-link {
	color: #f8f8f8;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s ease;
}

.mcd-header.mcd-scrolled .mcd-nav-link {
	color: #333333;
}

.mcd-nav-link:hover {
	color: #e63946;
}

.mcd-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #e63946;
	transition: width 0.3s ease;
}

.mcd-nav-link:hover::after {
	width: 100%;
}

.mcd-header-email {
	color: #f8f8f8;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mcd-header.mcd-scrolled .mcd-header-email {
	color: #333333;
}

.mcd-header-email:hover {
	color: #e63946;
}

/* Mobile Menu */
.mcd-mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.mcd-mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: #e63946;
	margin: 3px 0;
	transition: 0.3s;
}

.mcd-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #f8f8f8;
	border-top: 1px solid rgba(51, 51, 51, 0.1);
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
}

.mcd-mobile-nav.mcd-active {
	display: block;
}

.mcd-mobile-nav-list {
	list-style: none;
	padding: 1rem;
}

.mcd-mobile-nav-list li {
	margin: 0.5rem 0;
}

.mcd-mobile-nav-link {
	color: #333333;
	text-decoration: none;
	font-weight: 500;
	display: block;
	padding: 0.5rem;
	transition: color 0.3s ease;
}

.mcd-mobile-nav-link:hover {
	color: #e63946;
}

/* Button Styles */
.mcd-btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	text-align: center;
	line-height: 1.5;
}

.mcd-btn-primary {
	background: #e63946;
	color: #f8f8f8;
	border: 2px solid #e63946;
}

.mcd-btn-primary:hover {
	background: #d32f2f;
	border-color: #d32f2f;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.mcd-btn-secondary {
	background: transparent;
	color: #e63946;
	border: 2px solid #e63946;
}

.mcd-btn-secondary:hover {
	background: #e63946;
	color: #f8f8f8;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.mcd-btn-large {
	padding: 1rem 3rem;
	font-size: 1.1rem;
}

.mcd-btn-small {
	padding: 0.6rem 1.5rem;
	font-size: 0.9rem;
}

main {
	min-height: 100vh;
	overflow-x: hidden;
}

/* Hero Section */
.mcd-hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('assets/mcd-hero.avif');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #f8f8f8;
	position: relative;
	min-height: 600px;
}

/* .mcd-hero-content {
	max-width: 800px;
	z-index: 2;
} */

.mcd-hero h1 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #f8f8f8;
}

.mcd-hero h2 {
	font-size: 1.5rem;
	font-weight: 300;
	margin-bottom: 2rem;
	color: #f8f8f8;
	opacity: 0.9;
}

.mcd-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.mcd-hero-content h1 {
		font-size: 2rem;
	}
	.mcd-hero {
		min-height: 400px;
	}
}

/* Card Styles */
.mcd-card {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

.mcd-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

.mcd-card-header {
	margin-bottom: 1.5rem;
}

.mcd-card-icon {
	font-size: 3rem;
	color: #e63946;
	margin-bottom: 1rem;
}

.mcd-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.mcd-card-description {
	color: #1a1a1a;
	line-height: 1.6;
}

/* Product Card */
.mcd-product-card {
	background: #f8f8f8;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(51, 51, 51, 0.1);
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.mcd-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

.mcd-product-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.mcd-product-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mcd-product-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.mcd-product-description {
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.mcd-product-link {
	margin-top: auto;
}

/* Process Steps */
.mcd-process-container {
	display: grid;
	/* justify-content: space-between; */
	/* align-items: center; */
	/* flex-wrap: wrap; */
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	position: relative;
	gap: 20px;
	margin: 3rem 0;
}

.mcd-process-step {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 2;
}

.mcd-process-number {
	width: 80px;
	height: 80px;
	background: #e63946;
	color: #f8f8f8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto 1rem;
	position: relative;
	z-index: 2;
}

.mcd-process-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.mcd-process-description {
	color: #1a1a1a;
	line-height: 1.6;
	max-width: 200px;
	margin: 0 auto;
}

.mcd-process-line {
	position: absolute;
	top: 40px;
	left: 10%;
	right: 10%;
	height: 3px;
	background: linear-gradient(to right, #e63946, #e63946);
	z-index: 1;
}

/* Testimonial Styles */
.mcd-testimonial {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	border: 1px solid rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
}

.mcd-testimonial:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(51, 51, 51, 0.15);
}

.mcd-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1rem;
}

.mcd-testimonial-text {
	font-style: italic;
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.mcd-testimonial-name {
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.25rem;
}

.mcd-testimonial-role {
	color: #e63946;
	font-size: 0.9rem;
}

/* Form Styles */
.mcd-form {
	background: rgba(248, 248, 248, 0.95);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
}

.mcd-form-group {
	margin-bottom: 1.5rem;
}

.mcd-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333333;
}

.mcd-form-input,
.mcd-form-textarea {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid rgba(51, 51, 51, 0.2);
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: #f8f8f8;
	color: #1a1a1a;
}

.mcd-form-input:focus,
.mcd-form-textarea:focus {
	outline: none;
	border-color: #e63946;
}

.mcd-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.mcd-form-button {
	width: 100%;
}

.mcd-form-error {
	color: #e63946;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Contact Section with Background */
.mcd-contact-section {
	background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0.8)),
		url('assets/mcd-contact-bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #f8f8f8;
	padding: 50px 0;
}

.mcd-contact-section h2,
.mcd-contact-section h3 {
	color: #f8f8f8;
}

.mcd-contact-section .mcd-text-large {
	color: #f8f8f8;
	opacity: 0.9;
}

.mcd-ul li {
	list-style-type: none;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}
.mcd-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Footer Styles */
.mcd-footer {
	background: #333333;
	color: #f8f8f8;
	padding: 3rem 0 1rem;
}

.mcd-footer-main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.mcd-footer-section h4 {
	color: #f8f8f8;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.mcd-footer-links {
	list-style: none;
}

.mcd-footer-links li {
	margin-bottom: 0.5rem;
}

.mcd-footer-links a {
	color: #f8f8f8;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.mcd-footer-links a:hover {
	opacity: 1;
	color: #e63946;
}

.mcd-footer-contact p {
	margin-bottom: 0.5rem;
	opacity: 0.8;
}

.mcd-footer-contact strong {
	color: #e63946;
}

.mcd-footer-contact a {
	color: aliceblue;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.mcd-footer-contact a:hover {
	color: #e63946;
}

.mcd-footer-bottom {
	border-top: 1px solid rgba(248, 248, 248, 0.2);
	padding-top: 1rem;
	text-align: center;
	opacity: 0.8;
}

/* Cookie Banner */
.mcd-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #333333;
	color: #f8f8f8;
	padding: 1rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	display: none;
}

.mcd-cookie-banner.mcd-show {
	transform: translateY(0);
	display: block;
}

.mcd-cookie-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.mcd-cookie-banner-text {
	flex: 1;
	margin-right: 1rem;
}

.mcd-cookie-banner-buttons {
	display: flex;
	gap: 1rem;
}

.mcd-cookie-banner a {
	color: #e63946;
}

/* Gallery Styles */
.mcd-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.mcd-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #f8f8f8;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
}

.mcd-gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

.mcd-gallery-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.mcd-gallery-content {
	padding: 1.5rem;
}

.mcd-gallery-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.mcd-gallery-description {
	color: #1a1a1a;
	line-height: 1.6;
}

/* About Page Specific Styles */
.mcd-about-hero {
	background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
		url('assets/mcd-hero.avif');
	background-size: cover;
	background-position: center;
	padding: 120px 0 80px;
	text-align: center;
	color: #f8f8f8;
}

.mcd-about-hero h1,
.mcd-about-hero p {
	color: #f8f8f8;
}

.mcd-about-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.mcd-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.mcd-team-member {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
}

.mcd-team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

.mcd-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1rem;
}

.mcd-team-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.mcd-team-role {
	color: #e63946;
	font-weight: 500;
	margin-bottom: 1rem;
}

.mcd-team-description {
	color: #1a1a1a;
	line-height: 1.6;
}

/* Products Page Specific Styles */
.mcd-products-hero {
	background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
		url('assets/mcd-hero.avif');
	background-size: cover;
	background-position: center;
	padding: 120px 0 80px;
	text-align: center;
	color: #f8f8f8;
}

.mcd-products-hero h1,
.mcd-products-hero p {
	color: #f8f8f8;
}

.mcd-catalog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.mcd-product-specs {
	list-style: none;
	margin: 1rem 0;
}

.mcd-product-specs li {
	padding: 0.25rem 0;
	border-bottom: 1px solid rgba(51, 51, 51, 0.1);
	display: flex;
	justify-content: space-between;
}

.mcd-product-specs li:last-child {
	border-bottom: none;
}

.mcd-spec-label {
	font-weight: 600;
	color: #333333;
}

.mcd-spec-value {
	color: #1a1a1a;
}

/* Manufacturing Page Specific Styles */
.mcd-manufacturing-hero {
	background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
		url('assets/mcd-hero.avif');
	background-size: cover;
	background-position: center;
	padding: 120px 0 80px;
	text-align: center;
	color: #f8f8f8;
}

.mcd-manufacturing-hero h1,
.mcd-manufacturing-hero p {
	color: #f8f8f8;
}

.mcd-process-detailed {
	margin: 3rem 0;
}

.mcd-process-item {
	display: flex;
	align-items: center;
	margin-bottom: 3rem;
	gap: 2rem;
}

.mcd-process-item:nth-child(even) {
	flex-direction: row-reverse;
}

.mcd-process-image {
	flex: 1;
	max-width: 500px;
	height: 100%;
}

.mcd-process-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.mcd-process-content {
	flex: 1;
}

.mcd-process-step-number {
	background: #e63946;
	color: #f8f8f8;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 1rem;
}

/* FAQ Styles */
.mcd-faq {
	margin: 3rem 0;
}

.mcd-faq-item {
	background: #f8f8f8;
	border-radius: 10px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(51, 51, 51, 0.05);
}

.mcd-faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: #333333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: color 0.3s ease;
}

.mcd-faq-question:hover {
	color: #e63946;
}

.mcd-faq-icon {
	transition: transform 0.3s ease;
}

.mcd-faq-question.active .mcd-faq-icon {
	transform: rotate(180deg);
}

.mcd-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mcd-faq-answer.active {
	max-height: 500px;
}

.mcd-faq-answer-content {
	padding: 0 1.5rem 1.5rem;
	color: #1a1a1a;
	line-height: 1.6;
}

.mcd-back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #e63946;
	color: #f8f8f8;
	border: none;
	padding: 15px;
	border-radius: 50%;
	display: none;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.mcd-back-to-top.mcd-show {
	display: flex;
	opacity: 1;
}

/* Accessibility */
.mcd-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Print styles */
@media print {
	.mcd-header,
	.mcd-footer,
	.mcd-cookie-banner {
		display: none;
	}

	.mcd-hero {
		background: none;
		color: #1a1a1a;
	}

	.mcd-section {
		padding: 2rem 0;
	}
}

/* Additional utility classes */
.mcd-bg-white {
	background-color: #f8f8f8;
}

.mcd-bg-gray {
	background-color: #333333;
}

.mcd-bg-accent {
	background-color: #e63946;
}

.mcd-text-white {
	color: #f8f8f8;
}

.mcd-text-gray {
	color: #333333;
}

.mcd-text-accent {
	color: #e63946;
}

.mcd-border-radius {
	border-radius: 10px;
}

.mcd-shadow {
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
}

.mcd-shadow-large {
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

/* Contact specific backgrounds */
.mcd-contact-bg {
	background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0.8)),
		url('assets/mcd-contact-bg.avif');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.mcd-btn-primary {
		background: #000;
		border-color: #000;
	}

	.mcd-btn-secondary {
		border-color: #000;
		color: #000;
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Contact Page Specific Styles */
.mcd-contact-hero {
	background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
		url('assets/mcd-hero.avif');
	background-size: cover;
	background-position: center;
	padding: 120px 0 80px;
	text-align: center;
	color: #f8f8f8;
}

.mcd-contact-hero h1,
.mcd-contact-hero p {
	color: #f8f8f8;
}

.mcd-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.mcd-contact-card {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

.mcd-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

.mcd-contact-icon {
	font-size: 3rem;
	color: #e63946;
	margin-bottom: 1rem;
}

.mcd-contact-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 1rem;
}

.mcd-contact-details {
	color: #1a1a1a;
	line-height: 1.6;
}

.mcd-contact-details a {
	color: #e63946;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mcd-contact-details a:hover {
	color: #d32f2f;
}

.mcd-contact-form-container {
	background: rgba(248, 248, 248, 0.95);

	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
}

.mcd-contact-benefits {
	margin-top: 2rem;
}

.mcd-benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.mcd-benefit-item i {
	color: #e63946;
	margin-right: 0.75rem;
	font-size: 1.1rem;
}

/* Services Subdomain Page Styles */
.mcd-services-hero {
	background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0.8)),
		url('assets/mcd-hero.avif');
	background-size: cover;
	background-position: center;
	padding: 120px 0 80px;
	color: #f8f8f8;
}

.mcd-services-hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.mcd-services-hero h1 {
	color: #f8f8f8;
	margin-bottom: 1.5rem;
}

.mcd-services-hero-content p {
	color: #f8f8f8;
}

.mcd-services-content {
	max-width: 1000px;
	margin: 0 auto;
}

.mcd-services-description {
	line-height: 1.8;
}

.mcd-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.mcd-service-card {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(51, 51, 51, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

.mcd-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(51, 51, 51, 0.15);
}

.mcd-service-icon {
	font-size: 3rem;
	color: #e63946;
	margin-bottom: 1.5rem;
}

.mcd-service-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 1rem;
}

.mcd-service-description {
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.mcd-service-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mcd-service-features li {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	color: #1a1a1a;
	font-size: 0.95rem;
}

.mcd-service-features li i {
	color: #e63946;
	margin-right: 0.75rem;
	font-size: 0.9rem;
}

.mcd-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Back to Top Button */
.mcd-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #e63946;
	color: #f8f8f8;
	border: none;
	border-radius: 50%;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.mcd-back-to-top.mcd-show {
	opacity: 1;
	visibility: visible;
}

.mcd-back-to-top:hover {
	background: #d32f2f;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Responsive Design */
@media (max-width: 1110px) {
	.mcd-nav {
		display: none;
	}

	.mcd-mobile-menu-btn {
		display: flex;
	}
}

@media (max-width: 1024px) {
	.mcd-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.mcd-hero h1 {
		font-size: 3rem;
	}

	.mcd-process-container {
		flex-direction: column;
		gap: 3rem;
	}

	.mcd-process-line {
		display: none;
	}

	.mcd-process-item {
		flex-direction: column !important;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.mcd-header-container {
		padding: 0.8rem 0;
	}

	.mcd-hero h1 {
		font-size: 2.5rem;
	}

	.mcd-hero h2 {
		font-size: 1.2rem;
	}

	.mcd-h1 {
		font-size: 2.5rem;
	}

	.mcd-h2 {
		font-size: 2rem;
	}

	.mcd-h3 {
		font-size: 1.7rem;
	}

	.mcd-grid-2,
	.mcd-grid-3,
	.mcd-grid-4 {
		grid-template-columns: 1fr;
	}

	.mcd-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.mcd-footer-main {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.mcd-cookie-banner-content {
		flex-direction: column;
		gap: 1rem;
	}

	.mcd-cookie-banner-buttons {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.mcd-container {
		padding: 0 15px;
	}

	.mcd-logo {
		font-size: 1.3rem;
	}

	.mcd-hero h1 {
		font-size: 2rem;
	}

	.mcd-section {
		padding: 60px 0;
	}

	.mcd-card {
		padding: 1.5rem;
	}

	.mcd-btn {
		padding: 0.7rem 1.5rem;
		font-size: 0.9rem;
	}

	.mcd-btn-large {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}

	.mcd-h1 {
		font-size: 1.5rem;
	}

	.mcd-services-grid,
	.mcd-catalog-grid,
	.mcd-contact-info-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

.mcd-legal-hero {
	background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0.8)),
		url('assets/mcd-hero.avif') center/cover;
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

.mcd-legal-hero .mcd-h1 {
	color: white;
	margin-bottom: 20px;
	font-size: 3rem;
	font-weight: 700;
}

.mcd-legal-hero .mcd-text-large {
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto;
}

.mcd-legal-content {
	padding: 80px 0;
	background: white;
}

.mcd-legal-section {
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e5e5e5;
}

.mcd-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.mcd-legal-section h2 {
	color: var(--mcd-primary);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--mcd-accent);
	display: inline-block;
}

.mcd-legal-section h3 {
	color: var(--mcd-primary);
	font-size: 1.4rem;
	font-weight: 600;
	margin: 30px 0 15px 0;
}

.mcd-legal-section p {
	line-height: 1.8;
	margin-bottom: 20px;
	color: var(--mcd-text);
	font-size: 1.1rem;
}

.mcd-legal-section ul {
	margin: 20px 0;
	padding-left: 30px;
}

.mcd-legal-section li {
	margin-bottom: 12px;
	line-height: 1.7;
	color: var(--mcd-text);
	font-size: 1.05rem;
}

.mcd-legal-section li::marker {
	color: var(--mcd-accent);
}

.mcd-legal-highlight {
	background: #fff8f0;
	border-left: 4px solid var(--mcd-accent);
	padding: 25px;
	margin: 30px 0;
	border-radius: 8px;
}

.mcd-legal-highlight p {
	margin-bottom: 0;
	font-weight: 500;
	color: var(--mcd-primary);
}

.mcd-legal-contact {
	background: var(--mcd-bg);
	padding: 30px;
	border-radius: 12px;
	margin: 30px 0;
	border: 1px solid #e5e5e5;
}

.mcd-legal-contact h4 {
	color: var(--mcd-primary);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.mcd-legal-contact p {
	margin-bottom: 8px;
	line-height: 1.6;
}

.mcd-legal-contact a {
	color: var(--mcd-accent);
	text-decoration: none;
	font-weight: 500;
	word-wrap: break-word;
}

.mcd-legal-contact a:hover {
	text-decoration: underline;
}

.mcd-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mcd-legal-table th,
.mcd-legal-table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid #e5e5e5;
}

.mcd-legal-table th {
	background: var(--mcd-primary);
	color: white;
	font-weight: 600;
	font-size: 1.1rem;
}

.mcd-legal-table td {
	color: var(--mcd-text);
	line-height: 1.6;
}

.mcd-legal-table tr:last-child td {
	border-bottom: none;
}

.mcd-legal-table tr:hover {
	background: #fafafa;
}

.mcd-legal-warning {
	background: #fff2f2;
	border: 1px solid #ffd6d6;
	border-radius: 8px;
	padding: 25px;
	margin: 30px 0;
}

.mcd-legal-warning h4 {
	color: #d32f2f;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mcd-legal-warning h4::before {
	content: '⚠️';
	font-size: 1.3rem;
}

.mcd-legal-warning p {
	color: #b71c1c;
	margin-bottom: 0;
	font-weight: 500;
}

.mcd-legal-info {
	background: #f0f8ff;
	border: 1px solid #b3d9ff;
	border-radius: 8px;
	padding: 25px;
	margin: 30px 0;
}

.mcd-legal-info h4 {
	color: #1565c0;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mcd-legal-info h4::before {
	content: 'ℹ️';
	font-size: 1.3rem;
}

.mcd-legal-info p {
	color: #0d47a1;
	margin-bottom: 0;
}

.mcd-legal-breadcrumb {
	background: var(--mcd-bg);
	padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
}

.mcd-legal-breadcrumb a {
	color: var(--mcd-accent);
	text-decoration: none;
	font-weight: 500;
}

.mcd-legal-breadcrumb a:hover {
	text-decoration: underline;
}

.mcd-legal-breadcrumb span {
	color: #999;
	margin: 0 10px;
}

.mcd-legal-toc {
	background: var(--mcd-bg);
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
}

.mcd-legal-toc h3 {
	color: var(--mcd-primary);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.mcd-legal-toc ol {
	padding-left: 25px;
}

.mcd-legal-toc li {
	margin-bottom: 10px;
	line-height: 1.6;
}

.mcd-legal-toc a {
	color: var(--mcd-accent);
	text-decoration: none;
	font-weight: 500;
}

.mcd-legal-toc a:hover {
	text-decoration: underline;
}

.mcd-legal-last-updated {
	text-align: center;
	padding: 40px 0;
	background: var(--mcd-bg);
	border-top: 1px solid #e5e5e5;
	margin-top: 60px;
}

.mcd-legal-last-updated p {
	color: #666;
	font-style: italic;
	margin: 0;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.mcd-legal-hero {
		padding: 80px 0 60px;
	}

	.mcd-legal-hero .mcd-h1 {
		font-size: 2.2rem;
	}

	.mcd-legal-content {
		padding: 60px 0;
	}

	.mcd-legal-section {
		margin-bottom: 40px;
	}

	.mcd-legal-section h2 {
		font-size: 1.6rem;
	}

	.mcd-legal-table {
		font-size: 0.9rem;
	}

	.mcd-legal-table th,
	.mcd-legal-table td {
		padding: 15px 10px;
	}
}
