:root {
  --primary: #2bb8e8;
  --primary-dark: #168db7;
  --secondary: #f5a623;
  --dark: #0b1118;
  --dark-soft: #17212c;
  --light: #f7fbfd;
  --text: #314050;
  --muted: #6c7a89;
  --white: #ffffff;
  --border: #e5edf2;
  --shadow: 0 16px 45px rgba(10, 32, 52, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
}
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: var(--secondary); }

.navbar {
  background: rgba(7, 12, 18, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,.16);
}
.navbar-brand img {
  width: 150px;
  height: 72px;
  object-fit: contain;
}
.navbar .nav-link {
  color: rgba(255,255,255,.84);
  font-weight: 500;
  padding: .65rem .8rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--secondary); }
.navbar-toggler { border-color: rgba(255,255,255,.25); }
.navbar-toggler:focus { box-shadow: none; }

.btn-brand,
.btn-outline-brand {
  border-radius: 999px;
  padding: .78rem 1.35rem;
  font-weight: 600;
  transition: .25s ease;
}
.btn-brand {
  background: linear-gradient(135deg, var(--secondary), #ffbe49);
  border: 0;
  color: #121212;
  box-shadow: 0 10px 24px rgba(245,166,35,.28);
}
.btn-brand:hover { transform: translateY(-2px); color: #111; }
.btn-outline-brand { border: 1.5px solid var(--primary); color: var(--primary); }
.btn-outline-brand:hover { background: var(--primary); color: #fff; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,10,18,.88) 0%, rgba(3,10,18,.63) 47%, rgba(3,10,18,.18) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=85") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(to top, #fff, transparent);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .55rem .85rem;
  font-size: .9rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 900px;
}
.hero h1 span { color: var(--secondary); }
.hero p { max-width: 720px; font-size: 1.08rem; color: rgba(255,255,255,.85); }

.inquiry-card {
  background: rgba(255,255,255,.97);
  color: var(--text);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1px solid var(--border);
  min-height: 49px;
  border-radius: 12px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(43,184,232,.14);
}

.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: #fff; }
.section-title .eyebrow {
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}
.section-title h2 {
  color: var(--dark);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3rem);
}
.section-dark .section-title h2 { color: #fff; }
.section-title p { color: var(--muted); max-width: 720px; }

.service-card,
.package-card,
.testimonial-card,
.info-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(8, 36, 57, .07);
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover,
.package-card:hover,
.testimonial-card:hover,
.info-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-card { padding: 1.5rem; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43,184,232,.16), rgba(245,166,35,.17));
  color: var(--primary-dark);
  font-size: 1.55rem;
}
.service-card h5 { color: var(--dark); font-weight: 700; }
.service-card p { color: var(--muted); margin: 0; font-size: .94rem; }

.package-card { overflow: hidden; }
.package-card .package-image { position: relative; height: 240px; overflow: hidden; }
.package-card .package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.package-card:hover .package-image img { transform: scale(1.06); }
.package-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--secondary);
  color: #111;
  padding: .4rem .75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
}
.package-card .content { padding: 1.35rem; }
.package-card h5 { color: var(--dark); font-weight: 750; }
.package-meta { color: var(--muted); font-size: .9rem; }

.stats-strip {
  background: linear-gradient(120deg, var(--dark), #102b3b);
  color: #fff;
  border-radius: 28px;
  padding: 2.3rem 1.2rem;
  box-shadow: var(--shadow);
}
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--secondary); }
.stat-label { color: rgba(255,255,255,.72); }

.why-image {
  min-height: 520px;
  border-radius: 26px;
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=85") center/cover;
  box-shadow: var(--shadow);
  position: relative;
}
.why-image .experience-box {
  position: absolute;
  right: -18px;
  bottom: 35px;
  background: var(--secondary);
  color: #111;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: .8rem; margin-bottom: .85rem; }
.check-list i { color: var(--primary-dark); font-size: 1.15rem; }

.testimonial-card { padding: 1.5rem; }
.testimonial-card .quote { color: var(--secondary); font-size: 2rem; }
.testimonial-card p { color: var(--muted); }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-section {
  background:
    linear-gradient(100deg, rgba(5,15,24,.9), rgba(5,15,24,.68)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=85") center/cover;
  color: #fff;
  border-radius: 30px;
  padding: 3.3rem;
}

.page-header {
  background:
    linear-gradient(100deg, rgba(4,12,20,.86), rgba(4,12,20,.52)),
    url("https://images.unsplash.com/photo-1494783367193-149034c05e8f?auto=format&fit=crop&w=1800&q=85") center/cover;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
}
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.8); }
.breadcrumb-item.active { color: var(--secondary); }

.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(43,184,232,.25);
  margin-left: .6rem;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245,166,35,.18);
}
.timeline-item:last-child { padding-bottom: 0; }

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.gallery-item::after {
  content: "\F52A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  background: rgba(3,18,29,.42);
  opacity: 0;
  transition: .3s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

.contact-map {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 22px;
}

footer { background: #070c12; color: rgba(255,255,255,.72); }
footer h5 { color: #fff; font-weight: 700; }
footer .footer-logo { width: 190px; }
footer a { color: rgba(255,255,255,.72); }
footer a:hover { color: var(--secondary); }
.social-link {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  margin-right: .4rem;
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  font-size: 1.35rem;
}
.floating-btn.whatsapp { background: #25d366; }
.floating-btn.inquiry { background: var(--secondary); color: #111; }

.modal-content { border: 0; border-radius: 22px; overflow: hidden; }
.modal-header { background: linear-gradient(120deg, var(--dark), #153144); color: #fff; }
.modal-header .btn-close { filter: invert(1); }

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 120px 0 90px; background-position: 62% center; }
  .navbar-brand img { width: 130px; height: 64px; }
  .why-image { min-height: 420px; margin-bottom: 2rem; }
  .why-image .experience-box { right: 16px; }
}

@media (max-width: 767.98px) {
  .section { padding: 68px 0; }
  .hero h1 { font-size: 2.6rem; }
  .cta-section { padding: 2rem 1.25rem; border-radius: 20px; }
  .page-header { min-height: 300px; }
  .gallery-item { height: 230px; }
  .topbar .hide-mobile { display: none; }
}
