@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #0d6efd;
  --secondary: #16a34a;
  --dark: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
}

a {
  text-decoration: none;
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
}

.navbar-brand {
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  border: none;
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.28);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-success {
  background: linear-gradient(135deg, var(--secondary), #0ea371);
  border: none;
}

.hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.75), rgba(16, 163, 74, 0.75)),
    url("https://images.unsplash.com/photo-1505764706515-aa95265c5abc?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
  display: grid;
  align-items: center;
  padding: 6rem 0;
}

.hero .lead {
  color: #e2e8f0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-padding {
  padding: 4.5rem 0;
}

.section-title {
  font-weight: 700;
  color: var(--dark);
}

.section-subtitle {
  color: var(--muted);
  max-width: 650px;
}

.card-glass {
  background: var(--card);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.package-img {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  height: 200px;
  object-fit: cover;
}

.badge-soft {
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-size: 1.2rem;
}

.testimonial-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(13, 110, 253, 0.25);
}

.cta .btn {
  box-shadow: none;
}

.footer {
  background: #0b1222;
  color: #cbd5e1;
  padding: 3rem 0;
}

.footer a {
  color: #e2e8f0;
}

.footer a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 1080;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.sub-hero {
  min-height: 320px;
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(16, 163, 74, 0.75)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
}

.filter-btn {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--dark);
  background: #fff;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.contact-info {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.floating-input {
  border-radius: var(--radius);
  border: 1px solid rgba(100, 116, 139, 0.35);
  padding: 0.8rem 1rem;
}

.floating-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero {
    padding: 4.5rem 0;
    text-align: center;
  }

  .hero-stats {
    justify-items: center;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 70vh;
  }

  .package-img {
    height: 180px;
  }

  .cta {
    padding: 1.75rem;
  }
}

