:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #16a34a;
  --text: #0f172a;
  --muted: #6b7280;
  --light-bg: #f1f5f9;
  --surface: #ffffff;
  --border: #e2e8f0;
  --radius: 14px;
}

* {
  font-family: "Poppins", sans-serif;
}

body {
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 35%, #f8fafc 100%);
  line-height: 1.6;
}

.btn {
  border-radius: 10px;
  font-weight: 600;
}

.btn-modern {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.btn-hero-primary {
  background: linear-gradient(120deg, #2563eb, #0ea5e9);
  border: 0;
  color: #fff;
}

.btn-hero-primary:hover {
  color: #fff;
  background: linear-gradient(120deg, #1e40af, #0284c7);
}

.btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.section-space {
  padding: 70px 0;
}

.section-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-weight: 700;
  margin-bottom: 35px;
  letter-spacing: -0.2px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d6efd, #22c55e);
  color: #fff;
}

.navbar .nav-link {
  font-weight: 500;
  color: #334155;
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.navbar {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-section {
  min-height: 620px;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 32, 71, 0.8), rgba(10, 163, 96, 0.35));
}

.hero-content {
  padding-top: 60px;
}

.hero-kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-content h1 {
  text-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.hero-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  min-width: 128px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stat span {
  font-size: 0.85rem;
  opacity: 0.95;
}

.hero-search {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 45px;
  backdrop-filter: blur(8px);
}

.form-control-modern {
  border-radius: 10px;
  border-color: var(--border);
  min-height: 45px;
}

.form-control-modern:focus,
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.18);
}

.package-card,
.mini-package-card,
.detail-card {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--surface);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.package-card:hover,
.mini-package-card:hover,
.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
}

.img-wrap {
  overflow: hidden;
}

.img-wrap img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mini-package-card .img-wrap img {
  height: 180px;
}

.img-wrap:hover img {
  transform: scale(1.08);
}

.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
}

.feature-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.feature-box i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.testimonial-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 40px 20px;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.testimonial-avatar {
  width: 84px;
  height: 84px;
  object-fit: cover;
}

.banner-video {
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.55), rgba(13, 110, 253, 0.45)),
    url("https://images.unsplash.com/photo-1528127269322-539801943592?w=1500&q=80") center/cover no-repeat;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  font-size: 2rem;
  text-decoration: none;
}

.detail-card {
  background: #fff;
}

.offer-card {
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  min-height: 170px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
}

.offer-1 {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.offer-2 {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.offer-3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.gallery-grid {
  columns: 4 220px;
  column-gap: 12px;
}

.gallery-item {
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.newsletter {
  background: var(--light-bg);
}

.footer-section {
  background: #0f172a;
}

.footer-link {
  color: #b8c0ce;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #fff;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.inner-hero {
  background: linear-gradient(130deg, rgba(13, 110, 253, 0.78), rgba(22, 163, 74, 0.7)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80") center/cover no-repeat;
  padding: 90px 0;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  margin-bottom: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
}

.card {
  border-radius: var(--radius);
}

.card .card-title,
.card h5,
.card h6 {
  font-weight: 600;
}

.card-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
}

.lightbox-backdrop img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 540px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-search {
    margin-top: 28px;
  }

  .hero-stat {
    min-width: 105px;
    padding: 10px;
  }

  .inner-hero {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
}
