

section {
	padding: 80px 0;
}

.section-white {
	background: #fff;
}

.section-soft {
	background: var(--light-bg);
}

.text-copy {
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 1.8rem;
}

.feature-title {
	color: var(--primary);
}

.feature-text {
	font-size: 1.88rem;
	color: #6b7280;
	margin: 2px 0 0;
}




/* Hero */
.hero {
	min-height: 92vh;
	background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary) 60%, #1e4080 100%);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover;
	opacity: 0.12;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 80px 0;
}

.hero-badge {
	position: relative;
	display: inline-block;
	background: transparent;
	color: var(--colorWhite);
	border: 0px solid var(--accent);
	border-radius: 30px;
	padding: 6px 18px;
	font-size: 1.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 1.5rem;
}
.hero-badge::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 30px;
	opacity: 0.5;
	transform: scale(1.4);
	animation: pulse 2s infinite;
	z-index: -1;
}
.hero h1 {
	font-size: clamp(4rem, 6vw, 6rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.2rem;
}

.hero h1 span {
	color: var(--accent);
}

.hero p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 2.5rem;
	max-width: 480px;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.btn-hero,
.btn-outline-hero,
.btn-white,
.btn-outline-white,
.btn-primary-custom {
	text-decoration: none;
	display: inline-block;
}

.btn-hero {
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 2rem;
}

.btn-hero:hover {
	color: #fff;
	filter: brightness(0.96);
}

.btn-outline-hero {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
}

.btn-outline-hero:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}

.hero-stat {
	text-align: center;
}

.hero-stat .num {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent);
}

.hero-stat .lbl {
	font-size: 1.78rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-stats {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.8rem;
	margin-top: 1.8rem;
}
.hero-stats .review-rating {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.hero-stats .review-rating span.rating {
    display: flex;
    flex-direction: column;
}

.review-rating span.icon {
    font-size: 4rem;
    color: var(--accent);
}

.hero-stats .review-rating span.rating img {
    opacity: 0.6;
    width: 100px;
    height: auto;
}

.hero-stats .review-rating small.text-rating {
    font-size: 1.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero form */
.hero-form-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

.hero-form-shell h5,
.hero-form-card h5 {
	font-size: 3.1rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.3rem;
}

.hero-form-card .subtitle {
	font-size: 1.82rem;
	color: #9ca3af;
	margin-bottom: 1.4rem;
}

.hf-input {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1.88rem;
	color: #1a1a2e;
	outline: none;
	transition: border-color 0.2s;
	background: #fff;
	margin-bottom: 10px;
	font-family: inherit;
}

.hf-input:focus {
	border-color: var(--primary);
}

.hf-submit {
	width: 100%;
	padding: 13px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1.95rem;
	margin-top: 4px;
}

.hf-note {
	font-size: 1.2rem!important;
	color: #9ca3af;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 0px;
}

/* Shared hero CMS blocks for slider/video */
#sliderForm {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 2;
	width: 100%;
	padding: 96px 0 56px;
}

#sliderForm .content-box-video {
	color: #fff;
}

#sliderForm .hero-copy-cms h1,
#sliderForm .hero-copy-cms h2,
#sliderForm .hero-copy-cms h3,
#sliderForm .hero-copy-cms h4,
#sliderForm .hero-copy-cms h5,
#sliderForm .hero-copy-cms h6 {
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1rem;
}

#sliderForm .hero-copy-cms p,
#sliderForm .hero-copy-cms p span,
#sliderForm .hero-copy-cms p strong {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 560px;
	text-shadow: none;
}

#sliderForm .formulario {
	margin-top: 18px;
}

.hero-form-shell .subtitle {
	font-size: 1.82rem;
	color: #9ca3af;
	margin-bottom: 1rem;
}

/* Trust bar */
.trustbar {
	background: var(--accent);
	padding: 14px 0;
}

.trustbar-item {
	color: #fff;
	font-size: 1.88rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Section title */
.section-label {
	font-size: 1.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
}

.section-title {
	font-size: clamp(2.8rem, 5vw, 5rem);
	font-weight: 800;
	color: var(--primary);
	line-height: 1.2;
}

.divider {
	width: 48px;
	height: 4px;
	background: var(--accent);
	border-radius: 4px;
	margin: 12px 0 1.5rem;
}

/* About */
.about-img {
	width: 100%;
	border-radius: 16px;
	object-fit: cover;
	height: 420px;
}

.about-img-wrap {
	position: relative;
}

.exp-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--accent);
	color: #fff;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(232, 160, 32, 0.35);
}

.exp-badge .num {
	font-size: 2.4rem;
	font-weight: 800;
	display: block;
}

.exp-badge .txt {
	font-size: 1.78rem;
	font-weight: 600;
	opacity: 0.9;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 1.2rem;
}

.feat-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;
	background: rgba(26, 46, 90, 0.08);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feat-icon i {
	color: var(--primary);
	font-size: 1.7rem;
}

/* Services */
.services-sec {
	background: var(--light-bg);
}

.service-card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid #e8ecf5;
	transition: all 0.3s;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(26, 46, 90, 0.12);
	border-color: var(--accent);
}

.svc-icon {
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
}

.svc-icon i {
	color: #fff;
	font-size: 2.4rem;
}

.service-card h4 {
	font-size: 2.15rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.6rem;
}

.service-card p {
	font-size: 1.9rem;
	color: #6b7280;
	line-height: 1.65;
}

/* Why us */
.why-card {
	background: var(--primary);
	border-radius: 16px;
	padding: 1.8rem;
	color: #fff;
	text-align: center;
	height: 100%;
}

.why-card i {
	font-size: 4rem;
	color: var(--accent);
	margin-bottom: 1rem;
}

.why-card h5 {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.why-card p {
	font-size: 1.88rem;
	opacity: 0.75;
}

/* Process */
.process-step {
	text-align: center;
	padding: 1.5rem;
}

.step-num {
	width: 86px;
	height: 86px;
	background: var(--accent);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	font-weight: 800;
	margin: 0 auto 1rem;
}

.process-step h6 {
	font-size: 2.3rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.4rem;
}

.process-step p {
	font-size: 1.85rem;
	color: #6b7280;
}

/* Testimonials */
.testimonials-sec {
	background: var(--dark-bg);
}

.review-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 1.8rem;
	height: 100%;
}

.stars i {
	color: var(--accent);
	font-size: 1.4rem;
}

.review-card p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.95rem;
	line-height: 1.7;
	margin: 1rem 0;
}

.reviewer {
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #fff;
	font-size: 1.9rem;
}

.reviewer-info .name {
	font-weight: 600;
	color: #fff;
	font-size: 0.9rem;
}

.reviewer-info .role {
	font-size: 1.78rem;
	color: rgba(255, 255, 255, 0.5);
}

/* CTA banner */
.cta-banner {
	background: var(--accent);
	padding: 4rem 2rem;
	text-align: center;
}

.cta-banner h2 {
	font-size: clamp(2.6rem, 5vw, 5rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.8rem;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.6rem;
	margin-bottom: 1.8rem;
}

.btn-white {
	background: #fff;
	color: var(--accent);
	border: none;
	padding: 14px 36px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1.8rem;
}

.btn-outline-white {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.6);
	padding: 14px 36px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.8rem;
}

.btn-white:hover {
	color: var(--accent);
}

.btn-outline-white:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.gallery-item {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4/3;
	position: relative;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.gallery-item:hover img {
	transform: scale(1.06);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 46, 90, 0.5);
	opacity: 0;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay i {
	color: #fff;
	font-size: 2rem;
}

/* Contact */
.contact-info-item {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 1.4rem;
}

.ci-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	background: rgba(26, 46, 90, 0.08);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ci-icon i {
	color: var(--primary);
	font-size: 1.8rem;
}

.ci-label {
	font-size: 1.78rem;
	color: #9ca3af;
	margin-bottom: 2px;
}

.ci-value {
	font-weight: 600;
	color: var(--primary);
	font-size: 1.95rem;
}

.map-iframe {
	width: 100%;
	height: 380px;
	border-radius: 16px;
	border: none;
	box-shadow: 0 8px 32px rgba(26, 46, 90, 0.1);
}

/* Footer */
footer {
	background: var(--dark-bg);
	padding: 3rem 0 1.5rem;
}

footer h6 {
	color: var(--accent);
	font-size: 1.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 1rem;
}

footer ul {
	list-style: none;
	padding: 0;
}

footer ul li {
	margin-bottom: 8px;
}

footer ul li a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.88rem;
	text-decoration: none;
	transition: color 0.2s;
}

footer ul li a:hover {
	color: var(--accent);
}

.footer-brand {
	color: #fff;
	font-size: 2.1rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
	display: block;
}

.footer-desc {
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.85rem;
	line-height:1.6;
	margin-bottom: 1.2rem;
}

.social-btn {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.4rem;
	text-decoration: none;
	margin-right: 6px;
	transition: all 0.2s;
}

.social-btn:hover {
	background: var(--accent);
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 2.5rem;
	padding-top: 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 1.8rem;
	margin: 0;
}

.btn-primary-custom {
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.95rem;
}

.btn-primary-custom:hover {
	color: #fff;
	filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
	.topbar .container {
		justify-content: center !important;
		gap: 0.8rem !important;
		text-align: center;
	}

	.main-navigation .navbar {
		padding: 0.6rem 0;
	}

	.main-navigation .nav-link {
		padding: 0.75rem 0.3rem !important;
		border-bottom: none;
	}

	.main-navigation .nav-link.nav-cta {
		margin: 0.5rem 0 0;
		width: fit-content;
	}

	.main-navigation .dropdown-menu {
		border-radius: 8px;
		box-shadow: none;
		margin-top: 0.25rem;
	}

	.hero {
		min-height: auto;
	}

	.hero-content {
		padding: 56px 0;
	}

	.hero-form-card {
		margin-top: 10px;
	}


	#sliderForm .hero-copy-cms p,
	#sliderForm .hero-copy-cms p span,
	#sliderForm .hero-copy-cms p strong {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767.98px) {
	#sliderForm .hero-stats {
		display: flex;
		align-items: center;
		width: 100%;
		margin-bottom: 10px;
	}
	.hero-stat .lbl { font-size: 1.08rem;}
	.hero-stat .num {font-size: 2rem;}
	.hero-stats .review-rating small.text-rating { font-size: 1.08rem;}
	.hero-stats .review-rating span.rating img { width: 80px; }
	.review-rating span.icon { font-size: 2rem; }
	.trustbar-item {font-size: 1.08rem;}
	section {
		padding: 56px 0;
	}

	.trustbar-item {
		justify-content: center;
	}

	.exp-badge {
		right: 0;
		bottom: -16px;
		padding: 14px;
	}

	.map-iframe {
		height: 300px;
	}
}
