/* ======================
   RESET & BASE
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f5f7fa;
  color: #0f172a;
  line-height: 1.6;
}

/* ======================
   HEADER / NAVBAR
====================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: #0b5cff;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-name {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  position: relative;
}

.nav-links a:hover {
  color: #0b5cff;
}

/* ======================
   HERO SECTION
====================== */
.hero {
  background: linear-gradient(135deg, #020617, #0b5cff);
  color: #ffffff;
  padding: 100px 24px;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
  margin: auto;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.call {
  background: #020617;
  color: #ffffff;
}

.btn.call:hover {
  transform: translateY(-2px);
}

.btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ======================
   BOOKING CARD
====================== */
.booking-card {
  max-width: 900px;
  margin: -60px auto 80px;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ======================
   PRICING SECTION
====================== */
.pricing {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.pricing h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.pricing p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #334155;
}

.pricing-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: #0b5cff;
}

.pricing-details {
  text-align: left;
}

.pricing-details ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.pricing-details ul li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
}

.pricing-details ul li strong {
  color: #0b5cff;
}

.pricing-actions {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-actions .btn.call {
  background: #020617;
  color: #ffffff;
}

.pricing-actions .btn.call:hover {
  transform: translateY(-2px);
}

.pricing-actions .btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.pricing-actions .btn.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ======================
   SERVICES SECTION
====================== */
section#services {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}

section#services h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #020617;
}

section#services ul {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}

section#services ul li {
  background: #ffffff;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-weight: 500;
}

/* ======================
   FOOTER
====================== */
footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* ======================
   FLOATING WHATSAPP
====================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ======================
   MOBILE RESPONSIVE
====================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-actions,
  .booking-actions,
  .pricing-actions {
    flex-direction: column;
    gap: 12px;
  }

  .pricing-card {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-price {
    font-size: 36px;
  }

  .pricing-details ul li {
    font-size: 15px;
  }
}

