:root {
	--navy:   #0d1f3c;
	--gold:   #c9a84c;
	--gold-lt:#f0d080;
	--light:  #f5f7fa;
	--text:   #2d3748;
	--muted:  #718096;
}

* { box-sizing: border-box; }

body {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: #fff;
}

.preloader {
	width: 100%;
	height: 100%;
	top: 0px;
	position: fixed;
	z-index: 99999;
}

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
	background: rgba(13,31,60,.97);
	padding: .5rem 1.5rem;
	transition: box-shadow .3s;
}

.navbar.scrolled { 
	box-shadow: 0 2px 20px rgba(0,0,0,.4); 
}

.navbar-brand {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff !important;
	letter-spacing: .5px;
}

.navbar-brand span { 
	color: var(--gold); 
}

.navbar-brand .logo {
	height: 70px;
	transition: height .3s;
}

.navbar-toggler { 
	border-color: rgba(255,255,255,.3); 
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
	color: rgba(255,255,255,.8) !important;
	font-size: .9rem;
	font-weight: 500;
	padding: .5rem 1rem !important;
	transition: color .2s;
}

.nav-link:hover, 
.nav-link.active { 
	color: var(--gold) !important; 
}

.btn-nav {
	background: var(--gold);
	color: var(--navy) !important;
	font-weight: 600;
	border-radius: 50px;
	padding: .45rem 1.4rem !important;
	transition: background .2s, transform .15s;
}

.btn-nav:hover { 
	background: var(--gold-lt); transform: translateY(-1px); 
}

.close {
	cursor: pointer;
}

.table {
	font-size: 14px;
}

.preloader {
  width: 100%;
  height: 100%;
  top: 0px;
  position: fixed;
  z-index: 99999;
  background: #fff; }

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px); }
  .lds-ripple .lds-pos {
    position: absolute;
    border: 2px solid #2962FF;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite; }
  .lds-ripple .lds-pos:nth-child(2) {
    animation-delay: -0.5s; }

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 0; }
  5% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0; } }

/* ── HERO CAROUSEL ───────────────────────────── */
#heroCarousel,
.page-hero { 
	margin-top: 95px; 
}

.hero-slide {
	position: relative;
	min-height: calc(100vh - 66px);
	display: flex;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
}

.hero-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.06);
	transition: transform 8s ease;
}

.owl-item.active .hero-slide-bg { 
	transform: scale(1); 
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(13,31,60,.93) 0%, rgba(13,31,60,.6) 100%);
}

.hero-slide-pattern {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-slide-icon {
	position: absolute;
	right: -2rem;
	bottom: -2rem;
	font-size: 22rem;
	color: var(--gold);
	opacity: .04;
	line-height: 1;
	pointer-events: none;
}

.hero-slide-content {
	position: relative;
	z-index: 2;
	padding: 5rem 0;
	width: 100%;
}

/* ── slide text animations ── */
@keyframes slideUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
	from { opacity: 0; transform: translateX(-24px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.slide-eyebrow,
.slide-title,
.slide-desc,
.slide-btns,
.slide-stats { 
	opacity: 0; 
}

.owl-item.active .slide-eyebrow { 
	animation: slideRight .55s .1s forwards; 
}

.owl-item.active .slide-title   { 
	animation: slideUp   .6s  .25s forwards; 
}

.owl-item.active .slide-desc    { 
	animation: slideUp   .6s  .4s  forwards; 
}

.owl-item.active .slide-btns    { 
	animation: slideUp   .6s  .55s forwards; 
}

.owl-item.active .slide-stats   { 
	animation: fadeIn    .7s  .75s forwards; 
}

.slide-eyebrow {
	color: var(--gold);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: .75rem;
}

.slide-title {
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	margin-bottom: 1.2rem;
}

.slide-title span { 
	color: var(--gold); 
}

.slide-desc {
	color: rgba(255,255,255,.72);
	font-size: 1.05rem;
	max-width: 520px;
	line-height: 1.75;
	margin-bottom: 2rem;
}

.slide-btns { 
	display: flex; 
	flex-wrap: wrap; 
	gap: .9rem; 
}

.slide-stats {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,.12);
}

.stat-value {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}

.stat-label {
	font-size: .78rem;
	color: rgba(255,255,255,.55);
	margin-top: .2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ── Owl nav & dots ── */
.owl-prev, .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px; height: 48px;
	background: rgba(201,168,76,.18) !important;
	border: 1px solid rgba(201,168,76,.4) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: background .2s, transform .2s !important;
	z-index: 5;
	color: #fff !important;
}

.owl-prev { 
	left: 1.2rem; 
}

.owl-next { 
	right: 1.2rem; 
}

.owl-prev:hover, .owl-next:hover {
	background: var(--gold) !important;
	transform: translateY(-50%) scale(1.08) !important;
}

.owl-prev span, 
.owl-next span { 
	color: #fff !important; 
	font-size: 1.4rem !important; 
	line-height: 0; 
}

.owl-dots {
	position: absolute;
	bottom: 1.6rem;
	left: 50%; transform: translateX(-50%);
	z-index: 5;
}

.owl-dot span {
	width: 8px !important; height: 8px !important;
	background: rgba(255,255,255,.35) !important;
	border-radius: 50% !important;
	transition: all .3s !important;
}

.owl-dot.active span {
	background: var(--gold) !important;
	width: 26px !important;
	border-radius: 4px !important;
}

/* ── shared CTA buttons ── */
.btn-primary-custom {
	background: var(--gold);
	color: var(--navy);
	font-weight: 700;
	border: none;
	border-radius: 50px;
	padding: .85rem 2.2rem;
	font-size: 1rem;
	transition: background .2s, transform .15s, box-shadow .2s;
	display: inline-block;
}

.btn-primary-custom:hover {
	background: var(--gold-lt);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(201,168,76,.35);
	color: var(--navy);
	text-decoration: none;
}

.btn-outline-light-custom {
	background: transparent;
	color: #fff;
	font-weight: 600;
	border: 2px solid rgba(255,255,255,.35);
	border-radius: 50px;
	padding: .82rem 2rem;
	font-size: 1rem;
	transition: all .2s;
	display: inline-block;
}

.btn-outline-light-custom:hover {
	border-color: #fff;
	background: rgba(255,255,255,.08);
	color: #fff;
	text-decoration: none;
}

/* ── SECTIONS ────────────────────────────────── */
section { padding: 5rem 0; }
.section-label {
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: .6rem;
}

.section-title {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.section-sub {
	color: var(--muted);
	font-size: 1rem;
	max-width: 520px;
	line-height: 1.7;
}

/* ── SERVICES ────────────────────────────────── */
#services { 
	background: var(--light); 
}

.service-card {
	background: #fff;
	border-radius: 16px;
	padding: 2.2rem 1.8rem;
	height: 100%;
	border: 1px solid #e8ecf0;
	transition: transform .25s, box-shadow .25s;
	position: relative;
	overflow: hidden;
}

.service-card::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), var(--gold-lt));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s;
}

.service-card:hover { 
	transform: translateY(-5px); 
	box-shadow: 0 16px 40px rgba(0,0,0,.1); 
}

.service-card:hover::after { 
	transform: scaleX(1); 
}

.service-icon {
	width: 54px; height: 54px;
	background: linear-gradient(135deg, var(--navy), #1a3a6b);
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 1.4rem;
}

.service-icon i { 
	color: var(--gold); 
	font-size: 1.3rem; 
}

.service-card h5 {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--navy);
	margin-bottom: .6rem;
}

.service-card p { 
	color: var(--muted); 
	font-size: .92rem; 
	line-height: 1.65; 
	margin: 0 0 1.2rem; 
}

.service-amount {
	display: inline-block;
	background: var(--light);
	border-radius: 50px;
	padding: .3rem .9rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--navy);
}

.badge-return {
	background: #ebf5eb;
	color: #276227;
	border-radius: 50px;
	padding: .3rem .9rem;
	font-size: .8rem;
	font-weight: 600;
}

/* ── ABOUT ───────────────────────────────────── */
#about { 
	background: #fff; 
}

.about-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-icon-bg { 
	opacity: .07; 
	font-size: 14rem; 
	color: var(--gold); 
}

.about-badge {
	position: absolute;
	bottom: 1.8rem; right: 1.8rem;
	background: var(--gold);
	border-radius: 14px;
	padding: 1rem 1.4rem;
	text-align: center;
	color: var(--navy);
}

.about-badge .num { 
	font-size: 1.8rem; 
	font-weight: 800; 
	line-height: 1; 
}

.about-badge .lbl { 
	font-size: .7rem; 
	font-weight: 600; 
	text-transform: uppercase; 
	letter-spacing: 1px; 
}

.check-list { 
	list-style: none; 
	padding: 0; 
	margin: 1.5rem 0 2rem; 
}

.check-list li {
	padding: .45rem 0;
	color: var(--text);
	font-size: .95rem;
	display: flex;
	align-items: flex-start;
	gap: .7rem;
}

.check-list li i { 
	color: var(--gold); 
	margin-top: 2px; 
	flex-shrink: 0; 
}

/* ── HOW IT WORKS ────────────────────────────── */
#how { 
	background: var(--light); 
}

.step-card {
	text-align: center;
	padding: 1.5rem 1rem;
}

.step-num {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold);
	font-weight: 800;
	font-size: 1.2rem;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1.2rem;
}

.step-card h6 { 
	font-weight: 700; 
	font-size: 1rem; 
	color: var(--navy); 
	margin-bottom: .5rem; 
}

.step-card p { 
	font-size: .88rem; 
	color: var(--muted); 
	line-height: 1.6; margin: 0; 
}

/* ── CONTACT ─────────────────────────────────── */
#contact { 
	background: var(--navy); 
}

#contact .section-title { 
	color: #fff; 
}

#contact .section-label { 
	color: var(--gold); 
}

#contact .section-sub { 
	color: rgba(255,255,255,.6); 
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.1rem;
	margin-bottom: 1.8rem;
}

.contact-item-icon {
	width: 46px; height: 46px;
	background: rgba(201,168,76,.15);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

.contact-item-icon i { 
	color: var(--gold); 
	font-size: 1.1rem; 
}

.contact-item-text h6 {
	color: rgba(255,255,255,.5);
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 .2rem;
}

.contact-item-text a,
.contact-item-text p {
	color: #fff;
	font-size: .97rem;
	font-weight: 500;
	margin: 0;
	text-decoration: none;
}

.contact-item-text a:hover { 
	color: var(--gold); 
}

.contact-form-wrap {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 20px;
	padding: 2.2rem;
}

.form-label {
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  font-weight: 600;
}

.form-control,
select.form-control {
  background-color: rgba(255,255,255,.07) !important;
  border: 1px solid #e8ecf0;
  border-radius: 8px !important;
  height: auto !important;
  padding: .75rem 1rem !important;
}

.btn-submit {
	background: var(--gold);
	color: var(--navy);
	font-weight: 700;
	border: none;
	border-radius: 50px;
	padding: .8rem 2rem;
	width: 100%;
	font-size: 1rem;
	transition: background .2s, transform .15s;
}

.btn-submit:hover { 
	background: var(--gold-lt); 
	transform: translateY(-1px); 
}

.contact-panel .form-control {
	background-color: #fff !important;
}

/* ── FLOATING BUTTONS ───────────────────────── */
.fab-wrap {
	position: fixed;
	bottom: 1.5rem;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.fab-wrap.left  { 
	left: 1.5rem; 
}

.fab-wrap.right { 
	right: 1.5rem; 
}

.fab {
	width: 52px; height: 52px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.3rem;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0,0,0,.25);
	transition: transform .2s, box-shadow .2s;
	border: none;
	cursor: pointer;
}

.fab:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.fab-whatsapp { 
	background: #25d366; 
	color: #fff; 
}

.fab-whatsapp:hover { 
	color: #fff; 
}

.fab-top { 
	background: var(--navy); 
	color: var(--gold); 
	opacity: 0; 
	pointer-events: none; 
	transition: opacity .3s, transform .2s, box-shadow .2s; 
}

.fab-top.visible { 
	opacity: 1; 
	pointer-events: auto; 
}

/* ── FOOTER ──────────────────────────────────── */
.footer-main {
	background: #060e1c;
	padding: 5rem 0 3rem;
	color: rgba(255,255,255,.55);
	font-size: .9rem;
}

.footer-brand {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .75rem;
	display: inline-block;
}

.footer-brand span { 
	color: var(--gold); 
}

.footer-tagline {
	color: rgba(255,255,255,.45);
	font-size: .88rem;
	line-height: 1.7;
	max-width: 280px;
	margin-bottom: 1.5rem;
}

.footer-social { 
	display: flex; 
	gap: .6rem; 
}

.footer-social a {
	width: 36px; height: 36px;
	border-radius: 8px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.1);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,.6);
	font-size: .85rem;
	transition: background .2s, color .2s, border-color .2s;
	text-decoration: none;
}

.footer-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

.footer-heading {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.2rem;
}

.footer-links { 
	list-style: none; 
	padding: 0; 
	margin: 0; 
}

.footer-links li { 
	margin-bottom: .6rem; 
}

.footer-links a {
	color: rgba(255,255,255,.5);
	text-decoration: none;
	font-size: .88rem;
	transition: color .2s, padding-left .2s;
	display: inline-block;
}

.footer-links a:hover { 
	color: var(--gold); 
	padding-left: 4px; 
}

.footer-contact-item {
	display: flex; align-items: flex-start;
	gap: .75rem; margin-bottom: .9rem;
}

.footer-contact-item i {
	color: var(--gold); font-size: .85rem;
	margin-top: 2px; flex-shrink: 0;
}

.footer-contact-item span {
	color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.5;
}

.footer-contact-item a {
	color: rgba(255,255,255,.5); text-decoration: none;
	font-size: .88rem; transition: color .2s;
}

.footer-contact-item a:hover { 
	color: var(--gold); 
}

.footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,.08);
	margin: 0;
}

.footer-bottom {
	background: #040a12;
	padding: 1.3rem 0;
	font-size: .8rem;
	color: rgba(255,255,255,.3);
}

.footer-bottom a { 
	color: rgba(255,255,255,.4); 
	text-decoration: none; 
	transition: color .2s; 
}

.footer-bottom a:hover { 
	color: var(--gold); 
}

.footer-disclaimer {
	background: rgba(201,168,76,.07);
	border-left: 3px solid var(--gold);
	border-radius: 0 6px 6px 0;
	padding: .75rem 1rem;
	font-size: .78rem;
	color: rgba(255,255,255,.35);
	line-height: 1.6;
	margin-top: 2.5rem;
}

/* ── SELECT2 DARK THEME ──────────────────────── */
.select2-container { 
	width: 100% !important; 
}

.select2-container--default .select2-selection--single {
	background: #fff;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 10px;
	height: auto;
	padding: .75rem 2.5rem .75rem 1rem;
	font-size: .93rem;
	color: #fff;
	transition: border-color .2s, background .2s, box-shadow .2s;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
	background: rgba(255,255,255,.1);
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201,168,76,.2);
	outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.5;
	padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: rgba(255,255,255,.35);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%; right: .9rem;
	transform: translateY(-50%);
	height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--gold) transparent transparent transparent;
	border-width: 6px 5px 0 5px;
	margin-top: -3px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent var(--gold) transparent;
	border-width: 0 5px 6px 5px;
}

.select2-dropdown {
	background: #0d1f3c;
	border: 1px solid rgba(201,168,76,.35);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

.select2-container--default .select2-results__option {
	color: rgba(255,255,255,.8);
	padding: .65rem 1rem;
	font-size: .93rem;
	transition: background .15s, color .15s;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: rgba(201,168,76,.15);
	color: var(--gold);
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background: rgba(201,168,76,.25);
	color: var(--gold);
	font-weight: 600;
}

.select2-search--dropdown { padding: .5rem; background: #0d1f3c; }
.select2-search--dropdown .select2-search__field {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 6px;
	color: #fff;
	padding: .45rem .75rem;
	font-size: .88rem;
	width: 100%;
	outline: none;
}

.select2-search--dropdown .select2-search__field:focus {
	border-color: var(--gold);
}

/* ── UTILITIES ───────────────────────────────── */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }
@media (max-width: 767px) {
	section { padding: 3.5rem 0; }

	/* hero */
	.hero-slide { 
		min-height: calc(50vh - 66px); 
	}

	.hero-slide .col-lg-7 { 
		padding: 0 40px; 
	}

	.hero-slide-content { 
		padding: 3rem 0; 
	}

	.hero-slide-icon { 
		display: none; 
	}

	.slide-eyebrow { 
		font-size: .72rem; 
		margin-bottom: .5rem; 
	}

	.slide-title { 
		font-size: 1.75rem; 
		margin-bottom: .9rem; 
	}

	.slide-desc { 
		display: none; 
	}

	.slide-stats { 
		display: none; 
	}

	.slide-btns { 
		gap: .65rem; 
	}

	.slide-btns .btn-primary-custom,
	.slide-btns .btn-outline-light-custom {
		padding: .7rem 1.4rem;
		font-size: .88rem;
	}

	/* carousel nav */
	.owl-prev, .owl-next { 
		display: none !important; 
	}

	.owl-dots { 
		bottom: 1rem; 
	}

	/* other */
	.contact-form-wrap { 
		padding: 1.5rem; 
	}
}