@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #121418;
	color: #eaeaea;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Design System Variables */
:root {
	--dm-primary-bg: #121418;
	--dm-secondary-bg: #1c1f26;
	--dm-accent-teal: #4ecdc4;
	--dm-accent-coral: #ff6b6b;
	--dm-accent-yellow: #ffd93d;
	--dm-text-primary: #eaeaea;
	--dm-text-muted: #b0b0b0;
	--dm-border: #2a2d35;
	--dm-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	--dm-neon-glow: 0 0 20px;
	--dm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--dm-border-radius: 12px;
	--dm-max-width: 1200px;
}

/* Typography */
.dm-heading-xl {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.dm-heading-lg {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1.25rem;
}

.dm-heading-md {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.dm-heading-sm {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.dm-text-lg {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.6;
}

.dm-text-base {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}

.dm-text-sm {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
}

/* Layout Components */
.dm-container {
	max-width: var(--dm-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.dm-section {
	padding: 5rem 0;
	position: relative;
}

.dm-section-sm {
	padding: 3rem 0;
}

.dm-grid {
	display: grid;
	gap: 2rem;
}

.dm-grid-2 {
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.dm-grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.dm-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.dm-flex {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.dm-flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dm-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dm-flex-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Header Styles */
.dm-header {
	background: var(--dm-secondary-bg);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: var(--dm-shadow);
	transition: var(--dm-transition);
}

.dm-header-container {
	max-width: var(--dm-max-width);
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0;
}

.dm-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dm-accent-teal);
	text-decoration: none;
	transition: var(--dm-transition);
}

.dm-logo:hover {
	color: var(--dm-accent-coral);
	text-shadow: var(--dm-neon-glow) var(--dm-accent-coral);
}

.dm-nav {
	justify-self: center;
}

.dm-nav-list {
	display: flex;
	list-style: none;

	align-items: center;
}

.dm-nav-link {
	color: var(--dm-text-primary);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--dm-border-radius);
	transition: var(--dm-transition);
	position: relative;
}

.dm-nav-link:hover,
.dm-nav-link.dm-active {
	color: var(--dm-accent-teal);
	background: rgba(78, 205, 196, 0.1);
	box-shadow: var(--dm-neon-glow) rgba(78, 205, 196, 0.3);
}

.dm-social-links {
	display: flex;
	gap: 1rem;
	justify-self: end;
}

.dm-social-link {
	color: var(--dm-text-muted);
	font-size: 1.25rem;
	transition: var(--dm-transition);
	padding: 0.5rem;
	border-radius: 50%;
}

.dm-social-link:hover {
	color: var(--dm-accent-teal);
	background: rgba(78, 205, 196, 0.1);
	transform: translateY(-2px);
}

/* Mobile Menu */
.dm-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--dm-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

.dm-mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(18, 20, 24, 0.95);
	backdrop-filter: blur(10px);
	z-index: 9999;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.dm-mobile-menu nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.dm-mobile-menu.dm-active {
	display: flex;
}

.dm-mobile-nav-link {
	color: var(--dm-text-primary);
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1rem 2rem;
	border-radius: var(--dm-border-radius);
	transition: var(--dm-transition);
}

.dm-mobile-nav-link:hover {
	color: var(--dm-accent-teal);
	background: rgba(78, 205, 196, 0.1);
}

.dm-mobile-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: none;
	color: var(--dm-text-primary);
	font-size: 2rem;
	cursor: pointer;
}

/* Hero Section */
.dm-hero {
	background: linear-gradient(
		135deg,
		var(--dm-primary-bg) 0%,
		var(--dm-secondary-bg) 100%
	);
	padding: 8rem 0 5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.dm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/dm-hero.webp') center/cover;
	background-attachment: fixed;
	opacity: 0.3;
}

.dm-hero-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	text-align: center;
	align-items: center;
}

.dm-hero-content h1 {
	background: linear-gradient(
		135deg,
		var(--dm-accent-teal),
		var(--dm-accent-coral)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.dm-hero-content p {
	font-size: 1.25rem;
	color: var(--dm-text-muted);
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.dm-hero-cta {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.dm-hero-image {
	position: relative;
	text-align: center;
}

.dm-hero-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: var(--dm-border-radius);
	box-shadow: var(--dm-shadow);
}

/* Button Components */
.dm-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--dm-border-radius);
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: var(--dm-transition);
	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.1),
		transparent
	);
	transition: var(--dm-transition);
}

.dm-btn:hover::before {
	left: 100%;
}

.dm-btn-primary {
	background: linear-gradient(
		135deg,
		var(--dm-accent-teal),
		var(--dm-accent-coral)
	);
	color: white;
	box-shadow: var(--dm-neon-glow) rgba(78, 205, 196, 0.3);
}

.dm-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--dm-neon-glow) rgba(78, 205, 196, 0.5);
}

.dm-btn-secondary {
	background: transparent;
	color: var(--dm-accent-teal);
	border: 2px solid var(--dm-accent-teal);
}

.dm-btn-secondary:hover {
	background: var(--dm-accent-teal);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--dm-neon-glow) rgba(78, 205, 196, 0.3);
}

.dm-btn-outline {
	background: transparent;
	color: var(--dm-text-primary);
	border: 2px solid var(--dm-border);
}

.dm-btn-outline:hover {
	background: var(--dm-secondary-bg);
	border-color: var(--dm-accent-teal);
	color: var(--dm-accent-teal);
}

/* Card Components */
.dm-card {
	background: var(--dm-secondary-bg);
	border-radius: var(--dm-border-radius);
	padding: 2rem;
	box-shadow: var(--dm-shadow);
	transition: var(--dm-transition);
	border: 1px solid var(--dm-border);
	position: relative;
	overflow: hidden;
}

.dm-card img {
	object-fit: cover;
}

.dm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--dm-accent-teal),
		var(--dm-accent-coral)
	);
	transform: scaleX(0);
	transition: var(--dm-transition);
}

.dm-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--dm-accent-teal);
}

.dm-card:hover::before {
	transform: scaleX(1);
}

.dm-card-header {
	margin-bottom: 1.5rem;
}

.dm-card-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dm-card-header h3 {
	color: var(--dm-accent-teal);
	margin-bottom: 0.5rem;
}

.dm-card-header p {
	color: var(--dm-text-muted);
	font-size: 0.875rem;
}

.dm-card-body {
	margin-bottom: 1.5rem;
}

.dm-card-footer {
	border-top: 1px solid var(--dm-border);
	padding-top: 1rem;
	margin-top: 1rem;
}

/* Accordion Component */
.dm-accordion {
	background: var(--dm-secondary-bg);
	border-radius: var(--dm-border-radius);
	overflow: hidden;
	box-shadow: var(--dm-shadow);
}

.dm-accordion-item {
	border-bottom: 1px solid var(--dm-border);
}

.dm-accordion-item:last-child {
	border-bottom: none;
}

.dm-accordion-header {
	background: none;
	border: none;
	width: 100%;
	padding: 1.5rem;
	text-align: left;
	cursor: pointer;
	transition: var(--dm-transition);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--dm-text-primary);
	font-size: 1.125rem;
	font-weight: 500;
}

.dm-accordion-header:hover {
	background: rgba(78, 205, 196, 0.05);
	color: var(--dm-accent-teal);
}

.dm-accordion-icon {
	transition: var(--dm-transition);
	font-size: 1rem;
}

.dm-accordion-item.dm-active .dm-accordion-icon {
	transform: rotate(180deg);
}

.dm-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: var(--dm-transition);
	background: var(--dm-primary-bg);
}

.dm-accordion-item.dm-active .dm-accordion-content {
	max-height: 500px;
}

.dm-accordion-body {
	padding: 1.5rem;
	color: var(--dm-text-muted);
	line-height: 1.6;
}

/* Form Components */
.dm-form {
	background: var(--dm-secondary-bg);
	border-radius: var(--dm-border-radius);
	padding: 2rem;
	box-shadow: var(--dm-shadow);
}

.dm-form-group {
	margin-bottom: 1.5rem;
}

.dm-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--dm-text-primary);
}

.dm-form-input,
.dm-form-textarea,
.dm-form-select {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--dm-primary-bg);
	border: 2px solid var(--dm-border);
	border-radius: var(--dm-border-radius);
	color: var(--dm-text-primary);
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: var(--dm-transition);
}

.dm-form-input:focus,
.dm-form-textarea:focus,
.dm-form-select:focus {
	outline: none;
	border-color: var(--dm-accent-teal);
	box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.dm-form-input::placeholder,
.dm-form-textarea::placeholder {
	color: var(--dm-text-muted);
}

.dm-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.dm-form-error {
	color: var(--dm-accent-coral);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.dm-form-success {
	color: var(--dm-accent-teal);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

/* Table Component */
.dm-table-container {
	background: var(--dm-secondary-bg);
	border-radius: var(--dm-border-radius);
	overflow-x: auto;
	box-shadow: var(--dm-shadow);
}

.dm-table {
	width: 100%;
	border-collapse: collapse;
}

.dm-table th,
.dm-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--dm-border);
}

.dm-table th {
	background: var(--dm-primary-bg);
	color: var(--dm-accent-teal);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.dm-table tr:hover {
	background: rgba(78, 205, 196, 0.05);
}

.dm-table tr:last-child td {
	border-bottom: none;
}

/* Testimonial Component */
.dm-testimonial {
	background: var(--dm-secondary-bg);
	border-radius: var(--dm-border-radius);
	padding: 2rem;
	box-shadow: var(--dm-shadow);
	text-align: center;
	position: relative;
}

.dm-testimonial::before {
	content: '"';
	font-size: 4rem;
	color: var(--dm-accent-teal);
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.dm-testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--dm-text-muted);
}

.dm-testimonial-author {
	color: var(--dm-accent-teal);
	font-weight: 600;
	font-size: 1rem;
}

.dm-testimonial-title {
	color: var(--dm-text-muted);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

/* Footer Styles */
.dm-footer {
	background: var(--dm-primary-bg);
	border-top: 1px solid var(--dm-border);
	padding: 3rem 0 1rem;
}

.dm-footer-container {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.dm-footer-brand h3 {
	color: var(--dm-accent-teal);
	margin-bottom: 1rem;
}

.dm-footer-brand p {
	color: var(--dm-text-muted);
	line-height: 1.6;
}

.dm-footer-nav h4 {
	color: var(--dm-text-primary);
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

.dm-footer-nav-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.dm-footer-nav-link {
	color: var(--dm-text-muted);
	text-decoration: none;
	transition: var(--dm-transition);
	padding: 0.25rem 0;
	display: block;
}

.dm-footer-nav-link:hover {
	color: var(--dm-accent-teal);
}

.dm-footer-contact h4 {
	color: var(--dm-text-primary);
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

.dm-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: var(--dm-text-muted);
	line-height: 1.5;
}

.dm-footer-contact-icon {
	color: var(--dm-accent-teal);
	margin-top: 0.125rem;
	flex-shrink: 0;
}

.dm-footer-bottom {
	border-top: 1px solid var(--dm-border);
	padding-top: 1rem;
	text-align: center;
	color: var(--dm-text-muted);
	font-size: 0.875rem;
}

/* Cookie Banner */
.dm-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--dm-secondary-bg);
	border-top: 1px solid var(--dm-border);
	padding: 1rem;
	z-index: 9998;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(100%);
	transition: var(--dm-transition);
}

.dm-cookie-banner.dm-show {
	transform: translateY(0);
}

.dm-cookie-content {
	max-width: var(--dm-max-width);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.dm-cookie-text {
	flex: 1;
	color: var(--dm-text-muted);
}

.dm-cookie-text a {
	color: var(--dm-accent-teal);
	text-decoration: none;
}

.dm-cookie-text a:hover {
	text-decoration: underline;
}

.dm-cookie-actions {
	display: flex;
	gap: 1rem;
}

/* Animation Classes */
.dm-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: var(--dm-transition);
}

.dm-fade-in.dm-visible {
	opacity: 1;
	transform: translateY(0);
}

.dm-slide-up {
	opacity: 0;
	transform: translateY(50px);
	transition: var(--dm-transition);
}

.dm-slide-up.dm-visible {
	opacity: 1;
	transform: translateY(0);
}

.dm-scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: var(--dm-transition);
}

.dm-scale-in.dm-visible {
	opacity: 1;
	transform: scale(1);
}

/* Utility Classes */
.dm-text-center {
	text-align: center;
}

.dm-text-left {
	text-align: left;
}

.dm-text-right {
	text-align: right;
}

.dm-mb-0 {
	margin-bottom: 0;
}
.dm-mb-1 {
	margin-bottom: 0.5rem;
}
.dm-mb-2 {
	margin-bottom: 1rem;
}
.dm-mb-3 {
	margin-bottom: 1.5rem;
}
.dm-mb-4 {
	margin-bottom: 2rem;
}
.dm-mb-5 {
	margin-bottom: 2.5rem;
}

.dm-mt-0 {
	margin-top: 0;
}
.dm-mt-1 {
	margin-top: 0.5rem;
}
.dm-mt-2 {
	margin-top: 1rem;
}
.dm-mt-3 {
	margin-top: 1.5rem;
}
.dm-mt-4 {
	margin-top: 2rem;
}
.dm-mt-5 {
	margin-top: 2.5rem;
}

.dm-hidden {
	display: none;
}

.dm-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Dark theme enhancements */
.dm-glow-effect {
	position: relative;
}

.dm-glow-effect::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		var(--dm-accent-teal),
		var(--dm-accent-coral)
	);
	opacity: 0;
	border-radius: var(--dm-border-radius);
	transition: var(--dm-transition);
	z-index: -1;
	filter: blur(20px);
}

.dm-glow-effect:hover::after {
	opacity: 0.3;
}

/* Special page-specific styles */
.dm-page-header {
	background: var(--dm-secondary-bg);
	padding: 8rem 0 3rem;
	text-align: center;
	border-bottom: 1px solid var(--dm-border);
}

.dm-page-header h1 {
	background: linear-gradient(
		135deg,
		var(--dm-accent-teal),
		var(--dm-accent-coral)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.dm-breadcrumb {
	margin-bottom: 1rem;
}

.dm-breadcrumb-list {
	display: flex;
	list-style: none;
	gap: 0.5rem;
	justify-content: center;
	align-items: center;
}

.dm-breadcrumb-link {
	color: var(--dm-text-muted);
	text-decoration: none;
	transition: var(--dm-transition);
}

.dm-breadcrumb-link:hover {
	color: var(--dm-accent-teal);
}

.dm-breadcrumb-separator {
	color: var(--dm-text-muted);
}

/* Map container */
.dm-map-container {
	height: 400px;
	border-radius: var(--dm-border-radius);
	overflow: hidden;
	box-shadow: var(--dm-shadow);
}

.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;
}

/* Loading states */
.dm-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid var(--dm-border);
	border-radius: 50%;
	border-top-color: var(--dm-accent-teal);
	animation: dm-spin 1s ease-in-out infinite;
}

@keyframes dm-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Success states */
.dm-success-message {
	background: rgba(78, 205, 196, 0.1);
	border: 1px solid var(--dm-accent-teal);
	color: var(--dm-accent-teal);
	padding: 1rem;
	border-radius: var(--dm-border-radius);
	text-align: center;
	margin: 1rem 0;
}

.dm-error-message {
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid var(--dm-accent-coral);
	color: var(--dm-accent-coral);
	padding: 1rem;
	border-radius: var(--dm-border-radius);
	text-align: center;
	margin: 1rem 0;
}

.dm-tab-pane {
	margin-bottom: 2rem;
}
/* Responsive Design */
@media (max-width: 1024px) {
	.dm-hero-container {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.dm-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.dm-footer-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.dm-footer-nav-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.dm-header-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.dm-nav {
		display: none;
	}

	.dm-mobile-menu-toggle {
		display: block;
	}

	.dm-header-container .dm-social-link {
		display: none;
	}
}

@media (max-width: 768px) {
	.dm-hero {
		padding: 6rem 0 3rem;
	}

	.dm-heading-xl {
		font-size: 2.5rem;
	}

	.dm-heading-lg {
		font-size: 2rem;
	}

	.dm-grid-3,
	.dm-grid-4 {
		grid-template-columns: 1fr;
	}

	.dm-grid-2 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.dm-hero-cta {
		flex-direction: column;
	}

	.dm-cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.dm-footer-nav-list {
		grid-template-columns: 1fr;
	}

	.dm-social-links {
		justify-self: center;
	}
}

@media (max-width: 480px) {
	.dm-container {
		padding: 0 1rem;
	}

	.dm-grid-2,
	.dm-grid-3,
	.dm-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.dm-heading-lg {
		font-size: 1.5rem;
	}

	.dm-section {
		padding: 3rem 0;
	}

	.dm-heading-xl {
		font-size: 2rem;
	}

	.dm-card {
		padding: 1.5rem;
	}

	.dm-form {
		padding: 1.5rem;
	}

	.dm-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.875rem;
	}

	.dm-page-header h1 {
		font-size: 1.5rem;
	}

	.dm-hero-cta {
		width: 100%;
	}

	.dm-btn {
		width: 100%;
		justify-content: center;
	}
}

.dm-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	position: relative;
}

.dm-legal-content {
	background: linear-gradient(135deg, #1c1f26 0%, #1a1d24 100%);
	border-radius: 20px;
	padding: 60px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(78, 205, 196, 0.1);
	position: relative;
	overflow: hidden;
}

.dm-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4ecdc4 0%, #ff6b6b 50%, #ffd93d 100%);
	border-radius: 20px 20px 0 0;
}

/* ========= HEADER SECTION ========= */
.dm-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 2px solid rgba(78, 205, 196, 0.2);
	position: relative;
}

.dm-legal-title {
	font-size: 3rem;
	font-weight: 800;
	color: #eaeaea;
	margin-bottom: 15px;
	letter-spacing: -0.025em;
	background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.dm-legal-subtitle {
	font-size: 1.25rem;
	color: #4ecdc4;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.dm-legal-date {
	display: inline-block;
	background: rgba(78, 205, 196, 0.1);
	color: #4ecdc4;
	padding: 12px 24px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid rgba(78, 205, 196, 0.3);
}

/* ========= INTRODUCTION ========= */
.dm-legal-intro {
	background: linear-gradient(
		135deg,
		rgba(78, 205, 196, 0.08) 0%,
		rgba(255, 107, 107, 0.05) 100%
	);
	padding: 35px;
	border-radius: 15px;
	margin-bottom: 40px;
	border-left: 5px solid #4ecdc4;
	font-size: 1.1rem;
	line-height: 1.8;
}

.dm-legal-intro strong {
	color: #4ecdc4;
	font-weight: 700;
}

/* ========= SECTION STYLES ========= */
.dm-legal-section {
	margin-bottom: 45px;
	background: rgba(28, 31, 38, 0.6);
	border-radius: 15px;
	padding: 35px;
	transition: all 0.3s ease;
	border: 1px solid rgba(78, 205, 196, 0.1);
	position: relative;
	overflow: hidden;
}

.dm-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, #4ecdc4, #ff6b6b);
	opacity: 0.7;
}

.dm-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(78, 205, 196, 0.15);
	border-color: rgba(78, 205, 196, 0.3);
}

.dm-legal-section-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #4ecdc4;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(78, 205, 196, 0.2);
	display: flex;
	align-items: center;
	gap: 15px;
}

.dm-legal-content {
	counter-reset: section-counter;
}

.dm-legal-section-content {
	color: #eaeaea;
	font-size: 1rem;
	line-height: 1.7;
}

.dm-legal-section-content p {
	margin-bottom: 20px;
}

/* ========= LIST STYLES ========= */
.dm-legal-list {
	list-style: none;
	padding: 0;
	margin: 25px 0;
}

.dm-legal-list li {
	margin-bottom: 15px;
	padding-left: 40px;
	position: relative;
	line-height: 1.7;
	transition: all 0.2s ease;
}

.dm-legal-list li::before {
	content: '◆';
	color: #4ecdc4;
	font-weight: bold;
	position: absolute;
	left: 15px;
	top: 0;
	font-size: 1.1rem;
}

.dm-legal-list li:hover {
	padding-left: 45px;
	color: #4ecdc4;
}

.dm-legal-list li strong {
	color: #ffd93d;
	font-weight: 700;
}

/* ========= CONTACT INFO ========= */
.dm-legal-contact-info {
	background: linear-gradient(
		135deg,
		rgba(255, 107, 107, 0.1) 0%,
		rgba(255, 217, 61, 0.1) 100%
	);
	padding: 30px;
	border-radius: 12px;
	margin-top: 30px;
	border: 1px solid rgba(255, 107, 107, 0.2);
}

.dm-legal-contact-info h3 {
	color: #ff6b6b;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.dm-legal-contact-info p {
	margin-bottom: 10px;
	font-size: 1rem;
}

.dm-legal-contact-info strong {
	color: #ffd93d;
	font-weight: 600;
	display: inline-block;
	min-width: 100px;
}

.dm-legal-contact-info a {
	color: #4ecdc4;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}

.dm-legal-contact-info a:hover {
	color: #ffd93d;
	text-decoration: underline;
}

/* ========= COOKIE NOTICE STYLES ========= */
.dm-legal-cookie-notice {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: linear-gradient(135deg, #1c1f26 0%, #252932 100%);
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(78, 205, 196, 0.3);
	z-index: 1000;
	max-width: 600px;
	margin: 0 auto;
}

.dm-legal-cookie-content p {
	color: #eaeaea;
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.6;
}

.dm-legal-cookie-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.dm-legal-cookie-buttons button {
	background: transparent;
	border: 2px solid #4ecdc4;
	color: #4ecdc4;
	padding: 12px 24px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dm-legal-btn-accept {
	background: linear-gradient(135deg, #4ecdc4, #ff6b6b) !important;
	color: #121418 !important;
	border-color: transparent !important;
}

.dm-legal-btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.dm-legal-btn-settings:hover {
	background: rgba(255, 217, 61, 0.1);
	border-color: #ffd93d;
	color: #ffd93d;
}

.dm-legal-btn-reject:hover {
	background: rgba(255, 107, 107, 0.1);
	border-color: #ff6b6b;
	color: #ff6b6b;
}

/* ========= RESPONSIVE STYLES ========= */
@media (max-width: 768px) {
	.dm-legal-content {
		padding: 30px;
		border-radius: 15px;
	}

	.dm-legal-title {
		font-size: 2.2rem;
	}

	.dm-legal-section {
		padding: 25px;
		margin-bottom: 30px;
	}

	.dm-legal-section-title {
		font-size: 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.dm-legal-list li {
		padding-left: 30px;
	}

	.dm-legal-list li::before {
		left: 10px;
	}

	.dm-legal-cookie-buttons {
		flex-direction: column;
	}

	.dm-legal-cookie-buttons button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.dm-legal-content {
		padding: 20px;
	}

	.dm-legal-title {
		font-size: 1.3rem;
	}

	.dm-legal-subtitle {
		font-size: 1.1rem;
	}

	.dm-legal-section {
		padding: 20px;
	}

	.dm-legal-intro {
		padding: 25px;
	}

	.dm-legal-contact-info {
		padding: 20px;
	}
}
