/* Hover Zoom Effect on Package Images */
#packages .card img {
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
  width: 100%;
  border-radius: 6px;
}

#packages .card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
  cursor: pointer;
}

/* Optional: Add smooth card lift effect */
#packages .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#packages .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Why Us Section */
.why-us {
  text-align: center;
  padding: 60px 0;
}

.why-us h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 25px;
}

.benefit-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.benefit-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.benefit-card strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: #f8fbff;
}

.contact h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

/* Layout */
.contact-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Form Styling */
.contact-form {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #e6eef8;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d4ddec;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  margin-top: 6px;
}

/* Contact Details Box */
.contact-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #e6eef8;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.contact-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-area {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-box {
    width: 100%;
  }
}
