/* ---- BANNER STATS ---- */
.stats-dark {
	background: linear-gradient(90deg, #1e3a8a 0%, #1d4ed8 60%, #2563eb 100%);
	padding: 0;
}
.stats-banner-row {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.stat-banner-card {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 36px 16px 28px 16px;
	background: transparent;
	border-right: 1.5px solid rgba(255,255,255,.15);
	gap: 8px;
}
.stat-banner-card:last-child {
	border-right: none;
}
.stat-banner-number {
	font-size: 2.6rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: .01em;
	line-height: 1.1;
}
.stat-banner-number.stat-banner-static {
	font-size: 1.6rem;
	letter-spacing: .03em;
}
.stat-banner-icon {
	font-size: 1.6rem;
	color: #93c5fd;
	margin-bottom: 4px;
}
.stat-banner-label {
	font-size: .9rem;
	color: #bfdbfe;
	font-weight: 600;
	letter-spacing: .07em;
	text-align: center;
	line-height: 1.2;
	text-transform: uppercase;
}
@media (max-width: 900px) {
	.stats-banner-row {
		flex-direction: column;
	}
	.stat-banner-card {
		border-right: none;
		border-bottom: 1.5px solid rgba(255,255,255,.15);
		padding: 22px 0 16px 0;
	}
	.stat-banner-card:last-child {
		border-bottom: none;
	}
}
/* ---- TALL STATS ---- */
.stats-tall {
	gap: 24px;
	justify-content: center;
	align-items: flex-end;
}
.stats-tall .stat-card.stat-tall {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(15,23,42,.06);
	border: 1.5px solid #e5e7eb;
	padding: 32px 0 28px 0;
	min-width: 80px;
	max-width: 90px;
	width: 100%;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	transition: box-shadow .18s;
}
.stats-tall .stat-card.stat-tall:hover {
	box-shadow: 0 8px 24px rgba(29,78,216,.10);
}
.stats-tall .stat-number {
	font-size: 1.45rem;
	font-weight: 700;
	color: #1d4ed8;
	margin-bottom: 0;
	min-width: 0;
	min-height: 0;
}
.stats-tall .stat-label {
	font-size: .97rem;
	color: #334155;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}
@media (max-width: 900px) {
	.stats-tall {
		gap: 12px;
	}
	.stats-tall .stat-card.stat-tall {
		max-width: 100%;
		min-width: 60px;
		min-height: 120px;
		padding: 18px 0 14px 0;
	}
}
/* ---- SIMPLE STATS ---- */
.stats-simple {
	gap: 12px;
	justify-content: center;
	align-items: flex-end;
}
.stats-simple .stat-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 6px rgba(15,23,42,.04);
	border: 1px solid #e5e7eb;
	padding: 14px 18px 10px 18px;
	min-width: 90px;
	max-width: 120px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	transition: box-shadow .18s;
}
.stats-simple .stat-card:hover {
	box-shadow: 0 4px 16px rgba(29,78,216,.08);
}
.stats-simple .stat-number {
	font-size: 1.18rem;
	font-weight: 700;
	color: #1d4ed8;
	margin-bottom: 2px;
	min-width: 0;
	min-height: 0;
}
.stats-simple .stat-label {
	font-size: .93rem;
	color: #334155;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}
@media (max-width: 900px) {
	.stats-simple {
		flex-direction: column;
		gap: 8px;
		align-items: stretch;
	}
	.stats-simple .stat-card {
		max-width: 100%;
		width: 100%;
	}
}
/* ---- MODERN STATS ---- */
.stats-modern {
	gap: 18px;
}
.stat-horizontal {
	flex-direction: row;
	align-items: center;
	min-width: 0;
	min-height: 0;
	padding: 16px 18px;
	border: 1.5px solid #e0e7ef;
	box-shadow: 0 2px 8px rgba(15,23,42,.04);
	border-radius: 12px;
	background: #f8fafc;
	max-width: 260px;
	width: 100%;
	gap: 14px;
}
.stat-horizontal .stat-icon {
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	background: #e0e7ff;
	margin-bottom: 0;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stat-horizontal .stat-icon i {
	font-size: 1.15rem;
	color: #2563eb;
}
.stat-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}
.stat-horizontal .stat-number {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1d4ed8;
	margin-bottom: 0;
	min-width: 0;
	min-height: 0;
}
.stat-horizontal .stat-label {
	font-size: .97rem;
	color: #334155;
	font-weight: 500;
	line-height: 1.2;
}
@media (max-width: 900px) {
	.stats-modern {
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}
	.stat-horizontal {
		max-width: 100%;
		width: 100%;
		justify-content: flex-start;
	}
}
/* ---- STAT ICON ---- */
.stat-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
	border-radius: 50%;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(29,78,216,.10);
}
.stat-icon i {
	color: #2563eb;
	font-size: 1.5rem;
}
/* ---- STATS SECTION ---- */
.stats-section {
	padding: 0;
	margin-bottom: 0;
}
.stat-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(15,23,42,.07);
	padding: 32px 28px 24px 28px;
	min-width: 170px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform .18s, box-shadow .18s;
}
.stat-card:hover {
	transform: translateY(-4px) scale(1.04);
	box-shadow: 0 8px 32px rgba(29,78,216,.10);
}
.stat-number {
	font-size: 2.3rem;
	font-weight: 700;
	color: #1d4ed8;
	margin-bottom: 8px;
	letter-spacing: .01em;
	transition: color .18s;
	min-width: 80px;
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stat-label {
	font-size: 1.04rem;
	color: #334155;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
}
@media (max-width: 900px) {
	.stats-grid {
		gap: 18px;
	}
	.stat-card {
		min-width: 170px;
		min-height: 110px;
		display: flex;
		flex-direction: column;
		align-items: center;
		transition: transform .18s, box-shadow .18s;
	}
}
/* ---- SERVICE BENEFITS ---- */
.service-benefits {
	margin: 18px 0 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.service-benefits li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .93rem;
	color: #2563eb;
	font-weight: 500;
	background: #f1f5f9;
	border-radius: 10px;
	padding: 6px 14px;
}
.service-benefits i {
	color: #22c55e;
	font-size: 1em;
}
/* ==============================
   COMPONENTS
   ============================== */

/* ---- BUTTONS ---- */

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform .18s, box-shadow .18s;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(29,78,216,.35);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(29,78,216,.45);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: transparent;
	color: #1d4ed8;
	border: 2px solid #1d4ed8;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .18s, color .18s, transform .18s;
	text-decoration: none;
}

.btn-secondary:hover {
	background: #eff6ff;
	transform: translateY(-2px);
}

.cta .btn-secondary {
	color: #ffffff;
	border-color: rgba(255,255,255,.7);
}

.cta .btn-secondary:hover {
	background: rgba(255,255,255,.15);
	border-color: #ffffff;
	transform: translateY(-2px);
}

.phone-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 20px;
	background: linear-gradient(135deg, #1d4ed8, #2563eb);
	color: #ffffff;
	border-radius: 8px;
	font-size: .85rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(29,78,216,.3);
	transition: transform .18s, box-shadow .18s;
}

.phone-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(29,78,216,.4);
}

/* ---- HERO ELEMENTS ---- */

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
	border-radius: 20px;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 20px;
}

.highlight {
	color: #1d4ed8;
	background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid #e2e8f0;
}

.feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .88rem;
	color: #475569;
	font-weight: 500;
}

.feature i {
	width: 32px;
	height: 32px;
	background: #eff6ff;
	color: #1d4ed8;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: .85rem;
}

/* ---- SERVICE CARDS ---- */

.service-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 32px 26px;
	transition: box-shadow .25s, transform .25s, border-color .25s;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #1d4ed8, #60a5fa);
	width: 0;
	transition: width .3s ease;
}

.service-card:hover::before {
	width: 100%;
}

.service-card:hover {
	box-shadow: 0 12px 32px rgba(15,23,42,.1);
	transform: translateY(-4px);
	border-color: #bfdbfe;
}

.service-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #eff6ff, #dbeafe);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #1d4ed8;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(29,78,216,.12);
}

.service-card h3 {
	font-size: 1.05rem;
	margin-bottom: 10px;
	color: #0f172a;
}

.service-card p {
	font-size: .9rem;
	color: #64748b;
	line-height: 1.65;
}

/* ---- GALLERY ---- */

.gallery-subtitle {
	color: #64748b;
	margin-top: -32px;
	margin-bottom: 36px;
	font-size: .95rem;
}

.gallery-item {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	transition: transform .25s, box-shadow .25s;
}

.gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.gallery-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
	justify-content: center;
}

.gallery-filter button {
	padding: 7px 18px;
	border: 1.5px solid #cbd5e1;
	border-radius: 24px;
	background: #ffffff;
	color: #475569;
	font-size: .85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .18s;
}

.gallery-filter button:hover,
.gallery-filter button.active {
	background: #1d4ed8;
	border-color: #1d4ed8;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(29,78,216,.3);
}

.gallery-btn {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

/* ---- CONTACT ---- */

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid #f1f5f9;
}

.contact-item:first-child {
	padding-top: 0;
}

.contact-item i {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #eff6ff, #dbeafe);
	color: #1d4ed8;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
	box-shadow: 0 2px 6px rgba(29,78,216,.1);
}

.contact-item span,
.contact-item a {
	color: #334155;
	font-size: .95rem;
	font-weight: 500;
}

.contact-item a:hover {
	color: #1d4ed8;
}

.contact-form {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 32px;
	box-shadow: 0 4px 24px rgba(15,23,42,.06);
	display: grid;
	gap: 16px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	background: #f8fafc;
	color: #1e293b;
	font-size: .92rem;
	outline: none;
	transition: border-color .18s, background .18s;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #1d4ed8;
	background: #ffffff;
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

/* ---- MAP ---- */

.map-container {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 20px rgba(15,23,42,.07);
}

.map-container iframe {
	display: block;
	width: 100%;
}

/* ---- MOBILE MENU ---- */

.menu-toggle {
	display: none;
	background: none;
	border: 1.5px solid #cbd5e1;
	padding: 7px 11px;
	border-radius: 8px;
	cursor: pointer;
	color: #334155;
	font-size: 1.1rem;
	transition: border-color .18s;
}

.menu-toggle:hover {
	border-color: #1d4ed8;
	color: #1d4ed8;
}

/* ---- WHATSAPP ---- */

.whatsapp-btn {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 54px;
	height: 54px;
	background: #25d366;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(37,211,102,.4);
	z-index: 300;
	transition: transform .2s, box-shadow .2s;
}

.whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 28px rgba(37,211,102,.5);
}

/* ---- LIGHTBOX ---- */

#lightbox {
	display: none;
}

#lightbox.active {
	display: flex;
	position: fixed;
	inset: 0;
	background: rgba(2,6,23,.9);
	align-items: center;
	justify-content: center;
	z-index: 500;
	padding: 24px;
}

#lightbox img {
	max-width: 100%;
	max-height: 88vh;
	border-radius: 8px;
	box-shadow: 0 24px 80px rgba(0,0,0,.6);
}