/* ================= GLOBAL ================= */
html {
  scroll-behavior: smooth;
}

a {
  transition: color 0.3s ease;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: #FF6B00;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #e65f00;
}

.btn-secondary {
  background: white;
  color: #0A2540;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-dark {
  background: #0A2540;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
}

/* ================= NAVBAR ================= */
#menu-toggle {
  display: none;
}

#mobile-menu {
  display: none;
  background: white;
  padding: 16px;
}

#menu-toggle:checked + #mobile-menu {
  display: block;
}

#mobile-menu a {
  display: block;
  padding: 8px 0;
}

/* ================= HERO ================= */
.hero-section {
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,37,64,0.9), rgba(10,37,64,0.6));
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

/* ================= SECTIONS ================= */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 48px;
}

/* ================= SERVICES ================= */
.service-card {
  background: white;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 32px;
  color: #FF6B00;
  margin-bottom: 16px;
}

/* ================= PRICING ================= */
.pricing-card {
  border: 1px solid #ddd;
  padding: 32px;
  border-radius: 10px;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid #FF6B00;
  transform: scale(1.05);
}

.price {
  font-size: 24px;
  font-weight: 800;
  margin: 16px 0;
}

/* ================= FOOTER ================= */
footer {
  background: #0A2540;
  color: #ccc;
  text-align: center;
  padding: 24px;
}
