:root{
  --navy:#0b2545;
  --navy-2:#13315c;
  --navy-light:#1b4079;
  --gold:#c9962c;
  --gold-light:#e3b85f;
  --cream:#f7f4ee;
  --text-dark:#1c2530;
  --text-muted:#5b6573;
  --radius:14px;
  --shadow-sm:0 2px 10px rgba(11,37,69,.08);
  --shadow-md:0 10px 30px rgba(11,37,69,.12);
  --shadow-lg:0 20px 50px rgba(11,37,69,.18);
}

*{box-sizing:border-box;}

body{
  font-family:'Inter','Poppins',-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text-dark);
  background:#ffffff;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,h5,.font-heading{
  font-family:'Poppins','Inter',sans-serif;
  font-weight:700;
  letter-spacing:-0.01em;
}

a{ text-decoration:none; color:inherit; }
a.link-gold{ color:var(--gold); font-weight:600; }
a.link-gold:hover{ color:var(--navy); }

.bg-navy{ background:var(--navy) !important; }
.bg-cream{ background:var(--cream) !important; }
.text-gold{ color:var(--gold) !important; }
.text-navy{ color:var(--navy) !important; }

.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border:none;
  color:#fff;
  font-weight:600;
  padding:.75rem 1.6rem;
  border-radius:50px;
  box-shadow:0 8px 20px rgba(201,150,44,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(201,150,44,.45);
  color:#fff;
}
.btn-outline-navy{
  border:2px solid var(--navy);
  color:var(--navy);
  border-radius:50px;
  font-weight:600;
  padding:.7rem 1.5rem;
  background:transparent;
  transition:.2s ease;
}
.btn-outline-navy:hover{ background:var(--navy); color:#fff; }

.btn-whatsapp{
  background:#25D366;
  color:#fff;
  border-radius:50px;
  font-weight:600;
  padding:.7rem 1.4rem;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}
.btn-whatsapp:hover{ background:#1ebd58; color:#fff; }

/* ---------- TOPBAR ---------- */
.topbar{
  background:var(--navy);
  color:#cfd8e6;
  font-size:.85rem;
  padding:.4rem 0;
}
.topbar a{ color:#cfd8e6; }
.topbar a:hover{ color:var(--gold-light); }

/* ---------- NAVBAR ---------- */
.main-navbar{
  background:#ffffff;
  box-shadow:var(--shadow-sm);
  padding:.6rem 0;
  position:sticky;
  top:0;
  z-index:1000;
}
.main-navbar .navbar-brand img{ height:52px; }
.main-navbar .nav-link{
  color:var(--navy);
  font-weight:600;
  margin:0 .6rem;
  position:relative;
}
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover{ color:var(--gold); }
.main-navbar .nav-link.active::after{
  content:"";
  position:absolute;
  left:0; bottom:-4px;
  width:100%; height:3px;
  background:var(--gold);
  border-radius:3px;
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy);
}
.hero video, .hero .hero-fallback-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:.55;
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(11,37,69,.92) 10%, rgba(11,37,69,.55) 60%, rgba(11,37,69,.85));
}
.hero-content{ position:relative; z-index:2; color:#fff; }
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:rgba(201,150,44,.18);
  border:1px solid var(--gold);
  color:var(--gold-light);
  padding:.4rem 1rem;
  border-radius:50px;
  font-size:.85rem;
  font-weight:600;
  margin-bottom:1.2rem;
}
.hero-content h1{
  font-size:clamp(2.1rem, 4.5vw, 3.6rem);
  line-height:1.15;
  margin-bottom:1.2rem;
}
.hero-content p.lead{ color:#d7deea; max-width:560px; }
.hero-stats{
  display:flex; gap:2.2rem; margin-top:2.5rem; flex-wrap:wrap;
}
.hero-stats .num{ font-size:2rem; font-weight:700; color:var(--gold-light); }
.hero-stats .label{ font-size:.85rem; color:#bcc7d6; }

/* ---------- SECTION ---------- */
.section{ padding:5rem 0; }
.section-sm{ padding:3rem 0; }
.section-title-wrap{ margin-bottom:2.6rem; }
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  font-weight:700;
  color:var(--gold);
}
.section-title{ color:var(--navy); margin-top:.4rem; }
.section-sub{ color:var(--text-muted); max-width:640px; }

/* ---------- SERVICE CARD ---------- */
.service-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  height:100%;
  transition:transform .25s ease, box-shadow .25s ease;
  border:1px solid #eef1f5;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}
.service-card .img-wrap{ height:200px; overflow:hidden; }
.service-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition:.4s ease;}
.service-card:hover .img-wrap img{ transform:scale(1.08); }
.service-card .icon-badge{
  width:54px; height:54px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light);
  font-size:1.4rem;
  margin-top:-27px;
  margin-left:1.4rem;
  box-shadow:var(--shadow-sm);
  position:relative;
}
.service-card .body{ padding:1rem 1.4rem 1.6rem; }
.service-card h3{ font-size:1.15rem; color:var(--navy); }
.service-card p{ color:var(--text-muted); font-size:.92rem; }

/* ---------- WHY US ---------- */
.feature-item{ display:flex; gap:1rem; align-items:flex-start; }
.feature-item .icon{
  flex:0 0 auto;
  width:48px; height:48px;
  border-radius:12px;
  background:rgba(201,150,44,.12);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
}
.feature-item h4{ color:var(--navy); font-size:1.05rem; margin-bottom:.3rem; }
.feature-item p{ color:var(--text-muted); font-size:.92rem; margin:0; }

/* ---------- GALLERY ---------- */
.gallery-item{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  height:230px;
  box-shadow:var(--shadow-sm);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:.4s ease; }
.gallery-item:hover img{ transform:scale(1.1); }
.gallery-item .caption{
  position:absolute; inset:auto 0 0 0;
  background:linear-gradient(180deg, transparent, rgba(11,37,69,.85));
  color:#fff; padding:1.4rem .9rem .7rem;
  font-size:.85rem; font-weight:600;
}

/* ---------- BLOG CARD ---------- */
.blog-card{
  background:#fff; border-radius:var(--radius);
  box-shadow:var(--shadow-sm); overflow:hidden; height:100%;
  transition:transform .25s ease, box-shadow .25s ease;
  border:1px solid #eef1f5;
}
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.blog-card .img-wrap{ height:190px; overflow:hidden; }
.blog-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition:.4s ease; }
.blog-card:hover .img-wrap img{ transform:scale(1.08); }
.blog-card .body{ padding:1.3rem 1.4rem; }
.blog-card .meta{ font-size:.78rem; color:var(--gold); font-weight:600; text-transform:uppercase; letter-spacing:.05em;}
.blog-card h3{ font-size:1.1rem; color:var(--navy); margin:.5rem 0; }
.blog-card p{ color:var(--text-muted); font-size:.9rem; }

/* ---------- FAQ ---------- */
.accordion-button{ font-weight:600; color:var(--navy); }
.accordion-button:not(.collapsed){ background:rgba(201,150,44,.08); color:var(--navy); box-shadow:none;}
.accordion-button:focus{ box-shadow:none; border-color:rgba(201,150,44,.3); }
.accordion-item{ border:1px solid #eef1f5; border-radius:10px !important; margin-bottom:.8rem; overflow:hidden; }

/* ---------- CTA ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--navy),var(--navy-2));
  border-radius:24px;
  color:#fff;
  padding:3.2rem;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:240px; height:240px;
  background:radial-gradient(circle, rgba(201,150,44,.35), transparent 70%);
}

/* ---------- CONTACT ---------- */
.contact-info-item{
  display:flex; gap:1rem; align-items:flex-start;
  background:#fff; border-radius:var(--radius);
  padding:1.2rem; box-shadow:var(--shadow-sm);
  border:1px solid #eef1f5;
  margin-bottom:1rem;
}
.contact-info-item .icon{
  width:46px;height:46px;border-radius:12px;
  background:var(--navy); color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex:0 0 auto;
}

.form-control, .form-select{
  border-radius:10px;
  border:1px solid #dde3ec;
  padding:.7rem 1rem;
}
.form-control:focus, .form-select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,150,44,.15);
}

/* ---------- FOOTER ---------- */
footer.site-footer{ background:var(--navy); color:#cfd8e6; }
footer.site-footer h5{ color:#fff; font-size:1.05rem; margin-bottom:1.1rem;}
footer.site-footer a{ color:#b8c4d6; }
footer.site-footer a:hover{ color:var(--gold-light); }
footer .social-icons a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:inline-flex;align-items:center;justify-content:center;
  margin-right:.5rem;
}
footer .social-icons a:hover{ background:var(--gold); color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); font-size:.85rem; padding:1rem 0; color:#9aa8bd;}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed; bottom:22px; right:22px; z-index:1100;
  background:#25D366; color:#fff;
  width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  box-shadow:0 10px 25px rgba(37,211,102,.5);
  animation:pulse 2.2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow:0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- BREADCRUMB / PAGE HEADER ---------- */
.page-header{
  background:linear-gradient(120deg,var(--navy),var(--navy-2));
  color:#fff;
  padding:4.2rem 0 3.4rem;
}
.page-header h1{ margin:0; }
.page-header .breadcrumb a{ color:#cfd8e6; }
.page-header .breadcrumb .active{ color:var(--gold-light); }

@media (max-width:991px){
  .hero{ min-height:auto; padding:5rem 0 3rem; }
  .section{ padding:3.2rem 0; }
}
