/* ---------- RESET & GLOBAL ---------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

element {
	background: rgba(0, 0, 0, 0);
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #ffffff;
	color: #1a1a1a;
	line-height: 1.5;
}

.nav-item {
	position: relative;
}

.cool-btn {
	background: #d4af37;
	color: #222;
	border: none;
	padding: 12px 26px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
}

/* hover smecher */
.cool-btn:hover {
	background: #222;
	color: #d4af37;
	transform: scale(1.08);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-item a {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* dropdown box */
.dropdown-menu {
	position: absolute;
	top: 120%;
	left: 0;
	background: #0b0f1c;
	border-radius: 14px;
	min-width: 180px;
	padding: 10px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.25s ease;
	z-index: 1000;
}

/* links inside dropdown */
.dropdown-menu a {
	display: block;
	padding: 10px 20px;
	color: white;
	text-decoration: none;
	font-size: 0.9rem;
}

.dropdown-menu a:hover {
	background: #141a2c;
	color: #d4af37;
}

/* 🔥 hover trigger */
.nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-item i {
	transition: 0.2s;
}

.nav-item:hover i {
	transform: rotate(180deg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	border-radius: 40px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background-color: #d4af37;
	color: #0a0a0a;
}

.btn-primary:hover {
	background-color: #c6a21e;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
	background: transparent;
	border: 2px solid #d4af37;
	color: #d4af37;
}

.btn-outline:hover {
	background: #d4af37;
	color: #0a0a0a;
}

/* header */
.site-header {
	background: #0a0a0a;
	color: white;
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.logo-area h1 {
	font-size: 1.6rem;
	letter-spacing: -0.5px;
}

.logo-area span {
	color: #d4af37;
}

.nav-links {
	display: flex;
	gap: 32px;
	font-weight: 500;
}

.nav-links a:hover {
	color: #d4af37;
}

.header-phone {
	background: #d4af37;
	color: #0a0a0a;
	padding: 8px 18px;
	border-radius: 40px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mobile-toggle {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
}

/* hero */
.hero {
	background: linear-gradient(95deg, #0b0f1c 0%, #1a1f2e 100%);
	color: white;
	padding: 80px 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.hero-title {
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-highlight {
	color: #d4af37;
}

.hero-desc {
	font-size: 1.1rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 40px;
}

.stat h3 {
	font-size: 2rem;
	color: #d4af37;
}

/* trust badges slider (like the original) */
.trust-bar {
	background: #f8f9fa;
	padding: 30px 0;
	border-bottom: 1px solid #eef2f6;
}

.badge-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.badge-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
}

.badge-item i {
	font-size: 2rem;
	color: #d4af37;
}

/* services grid */
.section-title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 48px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin: 60px 0;
}

.service-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 32px 24px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
	transition: 0.25s ease;
	text-align: center;
	border: 1px solid #edf2f7;
}

.service-card-transparent {
	background: #00000000;
	padding: 32px 24px;
	transition: 0.25s ease;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 3rem;
	color: #d4af37;
	margin-bottom: 20px;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.price-tag {
	display: inline-block;
	background: #f1f5f9;
	padding: 6px 14px;
	border-radius: 30px;
	font-weight: 700;
	margin: 16px 0;
}

/* emergency pricing table */
.emergency-section {
	background: #0a0f1c;
	color: white;
	padding: 70px 0;
	border-radius: 48px;
	margin: 40px 0;
}

.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.price-list {
	list-style: none;
}

.price-list li {
	display: flex;
	justify-content: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* areas grid */
.areas-cloud {
	background: #f9fafc;
	padding: 48px;
	border-radius: 48px;
	margin: 40px 0;
	text-align: center;
}

.areas-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 30px;
}

.area-tag {
	background: white;
	padding: 8px 20px;
	border-radius: 40px;
	font-weight: 500;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* footer */
.footer {
	background: #0a0a0a;
	color: #ccc;
	padding: 60px 0 30px;
	margin-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer h4 {
	color: white;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a:hover {
	color: #d4af37;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #222;
	font-size: 0.85rem;
}

.sticky-cta {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #d4af37;
	padding: 14px 22px;
	border-radius: 50px;
	font-weight: bold;
	color: black;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 12px;
}

#areas,
.emergency-section {
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	padding: 100px;
}

@media (max-width: 1250px) {

	.hero-grid,
	.two-columns {
		grid-template-columns: 1fr;
	}

	.nav-links {
		display: none;
	}

	.mobile-toggle {
		display: block;
	}

	.service-card-transparent {
		display: none;
	}

	.nav-links.mobile-open {
		display: flex;
		flex-direction: column;
		width: 100%;
		background: #111;
		padding: 20px;
		margin-top: 20px;
	}

	.hero-title {
		font-size: 2.3rem;
	}
}

.pulse-icon {
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.08);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}