* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #121212;
	color: #f5f5f5;
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	margin-bottom: 1rem;
}

a {
	color: #8ecae6;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #ffb703;
}

img {
	max-width: 100%;
	height: auto;
}

/* Container and Layout */
.dm-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.dm-section {
	padding: 60px 0;
}

.dm-grid {
	display: grid;
	gap: 30px;
}

.dm-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.dm-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dm-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Header Styles */
.dm-header {
	background: #1e1e1e;
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 2px solid #ffb703;
}

.dm-header.scrolled {
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	padding: 10px 0;
}

.dm-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dm-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dm-logo a {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffb703;
	text-shadow: 0 0 10px rgba(255, 183, 3, 0.3);
}

.dm-logo i {
	font-size: 2rem;
	color: #8ecae6;
	animation: dm-pulse 2s infinite;
}

.dm-nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

.dm-nav-link {
	color: #f5f5f5;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.dm-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 183, 3, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.dm-nav-link:hover::before {
	left: 100%;
}

.dm-nav-link:hover {
	color: #ffb703;
	background-color: rgba(255, 183, 3, 0.1);
	transform: translateY(-2px);
}

.dm-nav-link i {
	margin-right: 8px;
}

/* Mobile Menu */
.dm-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #ffb703;
	font-size: 1.5rem;
	cursor: pointer;
}

.dm-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(18, 18, 18, 0.98);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.dm-mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.dm-mobile-nav-link {
	color: #f5f5f5;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.dm-mobile-nav-link:hover {
	color: #ffb703;
	background-color: rgba(255, 183, 3, 0.1);
}

.dm-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: #ffb703;
	font-size: 2rem;
	cursor: pointer;
}

/* Hero Section */
.dm-hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.dm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/dm-hero.webp');
	opacity: 0.3;
	z-index: 1;
}

.dm-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 80px 20px 20px;
}

.dm-hero-title {
	font-size: 3.5rem;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffb703, #8ecae6);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 30px rgba(255, 183, 3, 0.3);
}

.dm-hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 40px;
	opacity: 0.9;
	line-height: 1.8;
}

.dm-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.dm-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
}

.dm-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.dm-btn:hover::before {
	left: 100%;
}

.dm-btn-primary {
	background: linear-gradient(135deg, #ffb703, #fb8500);
	color: #121212;
	box-shadow: 0 5px 20px rgba(255, 183, 3, 0.3);
}

.dm-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4);
}

.dm-btn-secondary {
	background: rgba(142, 202, 230, 0.1);
	color: #8ecae6;
	border: 2px solid #8ecae6;
}

.dm-btn-secondary:hover {
	background: #8ecae6;
	color: #121212;
	transform: translateY(-3px);
}

/* Section Titles */
.dm-section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 20px;
}

.dm-section-title h2 {
	font-size: 2.5rem;
	text-align: center;

	position: relative;
}

.dm-section-title p {
	font-size: 1.5rem;
	text-align: center;

	position: relative;
}

.dm-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #ffb703, #8ecae6);
	border-radius: 2px;
}

.dm-section-title i {
	color: #ffb703;
	margin-right: 15px;
}

/* Card Styles */
.dm-card {
	background: #1e1e1e;
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(142, 202, 230, 0.1);
}

.dm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ffb703, #8ecae6);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.dm-card:hover::before {
	transform: scaleX(1);
}

.dm-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 183, 3, 0.2);
	border-color: rgba(255, 183, 3, 0.3);
}

.dm-card-icon {
	font-size: 3rem;
	color: #ffb703;
	margin-bottom: 20px;
	display: block;
	animation: dm-float 3s ease-in-out infinite;
}

.dm-card-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #8ecae6;
}

.dm-card-text {
	line-height: 1.7;
	opacity: 0.9;
}

/* Trend Cards */
.dm-trend-card {
	background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
	border-radius: 20px;
	padding: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(142, 202, 230, 0.15);
}

.dm-trend-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 183, 3, 0.05) 0%,
		transparent 70%
	);
	transition: all 0.3s ease;
	opacity: 0;
}

.dm-trend-card:hover::before {
	opacity: 1;
}

.dm-trend-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 40px rgba(142, 202, 230, 0.2);
}

.dm-trend-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #ffb703;
	color: #121212;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

/* Culture Section */
.dm-culture-card {
	background: radial-gradient(circle at top right, #2a2a2a, #1e1e1e);
	border-radius: 15px;
	padding: 35px;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	background-clip: padding-box;
}

.dm-culture-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 183, 3, 0.1),
		rgba(142, 202, 230, 0.1)
	);
	margin: -2px;
	border-radius: 15px;
	z-index: -1;
}

/* Testimonial Cards */
.dm-testimonial {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
}

.dm-testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(142, 202, 230, 0.15);
}

.dm-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffb703, #8ecae6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: #121212;
	font-weight: 700;
}

.dm-testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.6;
}

.dm-testimonial-author {
	font-weight: 600;
	color: #8ecae6;
}

/* Form Styles */
.dm-form {
	background: #1e1e1e;
	padding: 40px;
	border-radius: 15px;
	border: 1px solid rgba(142, 202, 230, 0.2);
}

.dm-form-group {
	margin-bottom: 25px;
}

.dm-form-label {
	display: block;
	margin-bottom: 8px;
	color: #8ecae6;
	font-weight: 500;
}

.dm-form-input,
.dm-form-textarea {
	width: 100%;
	padding: 15px;
	background: rgba(142, 202, 230, 0.05);
	border: 2px solid rgba(142, 202, 230, 0.2);
	border-radius: 8px;
	color: #f5f5f5;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.dm-form-input:focus,
.dm-form-textarea:focus {
	outline: none;
	border-color: #ffb703;
	box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2);
	background: rgba(255, 183, 3, 0.05);
}

.dm-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.dm-form-error {
	color: #ff6b6b;
	font-size: 0.9rem;
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.dm-form-input.error,
.dm-form-textarea.error {
	border-color: #ff6b6b;
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* Map Container */
.dm-map-container {
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;
	border: 3px solid rgba(142, 202, 230, 0.2);
}

/* Map Section */
.dm-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.dm-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.dm-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.dm-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Footer */
.dm-footer {
	background: #0f0f0f;
	padding: 60px 0 20px;
	border-top: 3px solid #ffb703;
}

.dm-footer-content {
	display: grid;
	grid-template-columns: 2fr 2fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
}

.dm-footer-section h3 {
	color: #ffb703;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.dm-footer-text {
	margin-bottom: 15px;
	line-height: 1.6;
	opacity: 0.9;
}

.dm-footer-links {
	list-style: none;
}

.dm-footer-links li,
.dm-footer-links p {
	margin-bottom: 10px;
}

.dm-footer-link {
	color: #f5f5f5;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dm-footer-link:hover {
	color: #ffb703;
	transform: translateX(5px);
}

.dm-footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(142, 202, 230, 0.2);
	color: #8ecae6;
}

/* Cookie Popup */
.dm-cookie-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-radius: 15px;
	border: 2px solid #ffb703;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.dm-cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.dm-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.dm-cookie-text {
	flex: 1;
	line-height: 1.5;
}

.dm-cookie-link {
	color: #ffb703;
	text-decoration: underline;
}

.dm-cookie-actions {
	display: flex;
	gap: 10px;
}

.dm-cookie-accept {
	background: #ffb703;
	color: #121212;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dm-cookie-accept:hover {
	background: #fb8500;
	transform: scale(1.05);
}

/* Animations */
@keyframes dm-pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

@keyframes dm-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.dm-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.dm-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.dm-nav {
		gap: 0;
	}
}

@media (max-width: 810px) {
	.dm-nav {
		display: none;
	}

	.dm-mobile-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.dm-hero-title {
		font-size: 2.5rem;
	}

	.dm-hero-subtitle {
		font-size: 1.1rem;
	}

	.dm-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.dm-grid-2,
	.dm-grid-3,
	.dm-grid-4 {
		grid-template-columns: 1fr;
	}

	.dm-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.dm-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.dm-section-title {
		font-size: 2rem;
	}

	.dm-card,
	.dm-trend-card,
	.dm-culture-card,
	.dm-testimonial,
	.dm-form {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.dm-container {
		padding: 0 15px;
	}

	.dm-section {
		padding: 40px 0;
	}

	.dm-hero-title {
		font-size: 2rem;
	}

	.dm-section-title {
		font-size: 1.8rem;
	}
}

/* Additional Styles for Specific Pages */

/* Styles and Trends Page */
.dm-style-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.dm-style-item {
	background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.dm-style-item:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 183, 3, 0.5);
	box-shadow: 0 20px 40px rgba(255, 183, 3, 0.2);
}

.dm-style-header {
	padding: 25px;
	background: rgba(255, 183, 3, 0.1);
}

.dm-style-title {
	color: #ffb703;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.dm-style-subtitle {
	color: #8ecae6;
	font-size: 0.9rem;
	opacity: 0.8;
}

.dm-style-content {
	padding: 25px;
}

.dm-style-description {
	line-height: 1.7;
	margin-bottom: 20px;
}

.dm-style-features {
	list-style: none;
}

.dm-style-features li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: #8ecae6;
}

.dm-style-features li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #ffb703;
	font-weight: bold;
}

/* History Page */
.dm-timeline {
	position: relative;
	padding: 40px 0;
}

.dm-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #ffb703, #8ecae6);
	transform: translateX(-50%);
}

.dm-timeline-item {
	position: relative;
	margin-bottom: 50px;
	width: 45%;
}

.dm-timeline-item:nth-child(even) {
	left: 55%;
}

.dm-timeline-item:nth-child(odd) {
	left: 0;
}

.dm-timeline-dot {
	position: absolute;
	top: 20px;
	width: 20px;
	height: 20px;
	background: #ffb703;
	border-radius: 50%;
	border: 4px solid #121212;
	z-index: 2;
}

.dm-timeline-item:nth-child(odd) .dm-timeline-dot {
	right: -68px;
}

.dm-timeline-item:nth-child(even) .dm-timeline-dot {
	left: -68px;
}

.dm-timeline-content {
	background: #1e1e1e;
	padding: 25px;
	border-radius: 15px;
	position: relative;
	border: 1px solid rgba(142, 202, 230, 0.2);
	transition: all 0.3s ease;
}

.dm-timeline-content:hover {
	transform: scale(1.02);
	border-color: #ffb703;
	box-shadow: 0 10px 30px rgba(255, 183, 3, 0.2);
}

.dm-timeline-year {
	background: #ffb703;
	color: #121212;
	padding: 5px 15px;
	border-radius: 20px;
	display: inline-block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.dm-timeline-title {
	color: #8ecae6;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

/* About Page */
.dm-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.dm-team-member {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.dm-team-member:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 183, 3, 0.5);
	box-shadow: 0 15px 35px rgba(142, 202, 230, 0.2);
}

.dm-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffb703, #8ecae6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 3rem;
	color: #121212;
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.dm-team-avatar::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s ease;
}

.dm-team-member:hover .dm-team-avatar::before {
	left: 100%;
}

.dm-team-name {
	color: #ffb703;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.dm-team-role {
	color: #8ecae6;
	font-size: 1rem;
	margin-bottom: 15px;
	font-weight: 500;
}

.dm-team-description {
	line-height: 1.6;
	opacity: 0.9;
}

.dm-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.dm-stat-item {
	text-align: center;
	padding: 30px;
	background: linear-gradient(
		135deg,
		rgba(255, 183, 3, 0.1),
		rgba(142, 202, 230, 0.1)
	);
	border-radius: 15px;
	border: 1px solid rgba(142, 202, 230, 0.2);
	transition: all 0.3s ease;
}

.dm-stat-item:hover {
	transform: scale(1.05);
	border-color: #ffb703;
}

.dm-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffb703;
	display: block;
	margin-bottom: 10px;
}

.dm-stat-label {
	color: #8ecae6;
	font-weight: 500;
}

.dm-contact-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
	position: relative;
	overflow: hidden;
}

.dm-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 25% 25%,
			rgba(255, 183, 3, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(142, 202, 230, 0.1) 0%,
			transparent 50%
		);
	z-index: 1;
}

.dm-contact-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.dm-contact-hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffb703, #8ecae6);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dm-contact-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
	line-height: 1.7;
}

/* Contact Information Grid */
.dm-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.dm-contact-card {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	overflow: hidden;
}

.dm-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffb703, #8ecae6);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.dm-contact-card:hover::before {
	transform: scaleX(1);
}

.dm-contact-card:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 183, 3, 0.3);
	box-shadow: 0 15px 40px rgba(255, 183, 3, 0.2);
}

.dm-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ffb703, #fb8500);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 2rem;
	color: #121212;
	animation: dm-float 3s ease-in-out infinite;
}

.dm-contact-card h3 {
	color: #8ecae6;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.dm-contact-card p {
	line-height: 1.6;
	margin-bottom: 15px;
}

.dm-contact-card a {
	color: #ffb703;
	font-weight: 500;
	transition: color 0.3s ease;
}

.dm-contact-card a:hover {
	color: #fb8500;
}

.dm-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(255, 183, 3, 0.1);
	border-radius: 25px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.dm-contact-link:hover {
	background: rgba(255, 183, 3, 0.2);
	transform: translateY(-2px);
}

/* Contact Form Section */
.dm-contact-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.dm-contact-form-wrapper {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(142, 202, 230, 0.2);
	position: relative;
	overflow: hidden;
}

.dm-contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffb703, #8ecae6);
}

.dm-contact-form-content h2 {
	color: #ffb703;
	font-size: 2rem;
	margin-bottom: 15px;
}

.dm-contact-form-content p {
	margin-bottom: 30px;
	line-height: 1.7;
	opacity: 0.9;
}

.dm-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.dm-form-group {
	margin-bottom: 25px;
}

.dm-form-label {
	display: block;
	color: #8ecae6;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.dm-form-label i {
	margin-right: 8px;
	color: #ffb703;
}

.dm-form-input,
.dm-form-textarea {
	width: 100%;
	padding: 15px 18px;
	background: rgba(142, 202, 230, 0.05);
	border: 2px solid rgba(142, 202, 230, 0.2);
	border-radius: 10px;
	color: #f5f5f5;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Roboto', sans-serif;
}

.dm-form-input:focus,
.dm-form-textarea:focus {
	outline: none;
	border-color: #ffb703;
	background: rgba(255, 183, 3, 0.05);
	box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.1);
}

.dm-form-input::placeholder,
.dm-form-textarea::placeholder {
	color: rgba(245, 245, 245, 0.5);
}

.dm-form-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6;
}

.dm-form-error {
	color: #ff6b6b;
	font-size: 0.85rem;
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dm-form-error.show {
	opacity: 1;
}

.dm-form-input.error,
.dm-form-textarea.error {
	border-color: #ff6b6b;
	background: rgba(255, 107, 107, 0.05);
}

/* Checkbox Styling */
.dm-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	line-height: 1.5;
	font-size: 0.95rem;
}

.dm-checkbox {
	opacity: 0;
	position: absolute;
}

.dm-checkbox-custom {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(142, 202, 230, 0.3);
	border-radius: 4px;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.dm-checkbox:checked + .dm-checkbox-custom {
	background: #ffb703;
	border-color: #ffb703;
}

.dm-checkbox:checked + .dm-checkbox-custom::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #121212;
	font-weight: bold;
	font-size: 12px;
}

/* Button Styling */
.dm-btn-large {
	padding: 18px 40px;
	font-size: 1.1rem;
	width: 100%;
	justify-content: center;
}

/* Map Section */
.dm-contact-map-section {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(142, 202, 230, 0.2);
	height: fit-content;
	position: sticky;
	top: 100px;
}

.dm-contact-map-section h3 {
	color: #ffb703;
	font-size: 1.5rem;
	margin-bottom: 25px;
}

.dm-map-container {
	border-radius: 15px;
	overflow: hidden;
	height: 350px;
	border: 3px solid rgba(142, 202, 230, 0.2);
	margin-bottom: 20px;
}

.dm-map {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(20%) brightness(0.8);
	transition: filter 0.3s ease;
}

.dm-map:hover {
	filter: grayscale(0%) brightness(1);
}

.dm-map-description {
	line-height: 1.6;
	opacity: 0.9;
	font-size: 0.95rem;
}

/* Working Hours Section */
.dm-hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.dm-hours-card {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 35px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.dm-hours-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #8ecae6, #ffb703);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.dm-hours-card:hover::before {
	transform: scaleX(1);
}

.dm-hours-card:hover {
	border-color: rgba(142, 202, 230, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(142, 202, 230, 0.2);
}

.dm-hours-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #8ecae6, #ffb703);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 1.8rem;
	color: #121212;
}

.dm-hours-card h3 {
	color: #ffb703;
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.dm-hours-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.dm-hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(142, 202, 230, 0.1);
}

.dm-hours-item:last-child {
	border-bottom: none;
}

.dm-hours-item span:first-child {
	color: #8ecae6;
	font-weight: 500;
}

.dm-hours-item span:last-child {
	color: #ffb703;
	font-weight: 600;
}

/* FAQ Section */
.dm-faq-grid {
	display: grid;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.dm-faq-item {
	background: #1e1e1e;
	border-radius: 15px;
	border: 1px solid rgba(142, 202, 230, 0.2);
	overflow: hidden;
	transition: all 0.3s ease;
}

.dm-faq-item:hover {
	border-color: rgba(255, 183, 3, 0.3);
}

.dm-faq-question {
	padding: 25px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 500;
	color: #8ecae6;
	background: rgba(142, 202, 230, 0.03);
	transition: all 0.3s ease;
}

.dm-faq-question:hover {
	background: rgba(255, 183, 3, 0.05);
	color: #ffb703;
}

.dm-faq-question i {
	color: #ffb703;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.dm-faq-item.active .dm-faq-question i {
	transform: rotate(90deg);
}

.dm-faq-answer {
	padding: 0 25px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	line-height: 1.6;
	opacity: 0;
}

.dm-faq-item.active .dm-faq-answer {
	padding: 0 25px 25px;
	max-height: 200px;
	opacity: 1;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
	.dm-timeline::before {
		left: 30px;
	}

	.dm-timeline-item {
		width: calc(100% - 60px);
		left: 60px !important;
	}

	.dm-timeline-item .dm-timeline-dot {
		left: -40px !important;
	}

	.dm-style-showcase {
		grid-template-columns: 1fr;
	}

	.dm-team-grid,
	.dm-stats-grid {
		grid-template-columns: 1fr;
	}

	.dm-footer-section .dm-logo {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.dm-contact-hero h1 {
		font-size: 2.2rem;
	}

	.dm-contact-hero p {
		font-size: 1rem;
	}

	.dm-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dm-contact-form-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dm-contact-map-section {
		position: static;
	}

	.dm-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.dm-contact-form-wrapper,
	.dm-contact-map-section {
		padding: 25px;
	}

	.dm-map-container {
		height: 250px;
	}

	.dm-hours-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dm-hours-card {
		padding: 25px;
	}

	.dm-hours-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.dm-faq-question {
		padding: 20px;
		font-size: 0.95rem;
	}

	.dm-faq-answer {
		font-size: 0.9rem;
	}

	.dm-section-title h2 {
		font-size: 1.5rem;
	}

	.dm-section-title p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.dm-contact-hero {
		padding: 100px 0 60px;
	}

	.dm-contact-hero h1 {
		font-size: 1.8rem;
	}

	.dm-contact-card {
		padding: 25px 20px;
	}

	.dm-contact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.dm-contact-form-wrapper,
	.dm-contact-map-section {
		padding: 20px;
	}

	.dm-form-input,
	.dm-form-textarea {
		padding: 12px 15px;
	}

	.dm-btn-large {
		padding: 15px 30px;
		font-size: 1rem;
	}
}

.dm-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px 60px;
	background: #121212;
}

.dm-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 2px solid #ffb703;
}

.dm-legal-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: #f5f5f5;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.dm-legal-title i {
	color: #ffb703;
	font-size: 2.5rem;
}

.dm-legal-date {
	font-size: 1.1rem;
	color: #8ecae6;
	font-style: italic;
}

.dm-legal-content {
	background: #1e1e1e;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dm-legal-section {
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

.dm-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.dm-legal-section-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: #ffb703;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.dm-legal-section-title i {
	font-size: 1.5rem;
	color: #8ecae6;
}

.dm-legal-text {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.8;
	color: #f5f5f5;
	text-align: justify;
	margin-bottom: 20px;
}

.dm-legal-list {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: #f5f5f5;
	padding-left: 30px;
	margin: 20px 0;
}

.dm-legal-list li {
	margin-bottom: 12px;
	position: relative;
}

.dm-legal-list li::marker {
	color: #ffb703;
}

.dm-legal-contact {
	background: rgba(142, 202, 230, 0.1);
	border-radius: 12px;
	padding: 30px;
	margin-top: 30px;
	border-left: 4px solid #8ecae6;
}

.dm-legal-contact-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: #8ecae6;
	margin-bottom: 20px;
}

.dm-legal-contact-info {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #f5f5f5;
}

.dm-legal-contact-info p {
	margin-bottom: 8px;
}

.dm-legal-contact-info a {
	color: #ffb703;
	text-decoration: none;
	transition: color 0.3s ease;
}

.dm-legal-contact-info a:hover {
	color: #fb8500;
	text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
	.dm-legal-title {
		font-size: 2.2rem;
		flex-direction: column;
		gap: 10px;
	}

	.dm-legal-title i {
		font-size: 2rem;
	}

	.dm-legal-content {
		padding: 25px 20px;
	}

	.dm-legal-section-title {
		font-size: 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.dm-legal-text {
		font-size: 0.95rem;
		text-align: left;
	}

	.dm-legal-list {
		padding-left: 20px;
	}

	.dm-legal-contact {
		padding: 20px;
	}

	.dm-legal-contact-title {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.dm-legal-title {
		font-size: 1.5rem;
	}

	.dm-legal-section-title {
		font-size: 1.3rem;
	}

	.dm-legal-text {
		font-size: 0.9rem;
	}

	.dm-legal-contact {
		padding: 15px;
	}
}
