/* Reset + Font */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #1e1e1e;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a.active {
  border-bottom: 2px solid #00bcd4;
}

/* Packages Section */
.packages-section {
  padding: 60px 40px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 30px;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.package-card .price {
  font-size: 2rem;
  color: #00bcd4;
  margin-bottom: 20px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.package-card ul li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.package-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00bcd4;
}

.btn {
  display: inline-block;
  background-color: #00bcd4;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0097a7;
}

.featured {
  border: 2px solid #00bcd4;
}

/* Footer */
.site-footer {
  background-color: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  font-size: 0.9rem;
}


.estimate-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: left;
}

.estimate-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.estimate-table label {
  display: block;
  margin: 12px 0;
  font-size: 1rem;
  cursor: pointer;
}

.estimate-total {
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #00bcd4;
}

