body {
  font-family: Arial;
  margin: 0;
  background: #f4f6f8;
}

header {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 30px;
}

.section-title {
  text-align: center;
  margin: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.tour-card {
  background: white;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

button {
  background: #008000;
  color: white;
  border: none;
  padding: 12px;
  width: 90%;
  margin: 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 15px;
}

button:hover {
  background: #006400;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);

  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 25px;
  width: 350px;
  border-radius: 12px;
  position: relative;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 22px;
}

.selected-tour {
  font-weight: bold;
  color: #0a3d62;
  margin-bottom: 10px;
}

/* FORM */
label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

/* CONTACT */
.contact-section {
  background: white;
  padding: 30px;
  text-align: center;
}

footer {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 15px;
}