* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background: #fff;
}

.header {
  background: #004080;
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.header nav a {
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header nav a:hover {
  color: #ffcc00;
}

.hero {
  background: url('https://travelsmart24.org/images/chikmagalur-coorg.jpg') no-repeat center center/cover;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-blend-mode: overlay;
  background-color: rgba(0,0,0,0.5);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 600px;
  margin: auto;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ffd633;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  color: #004080;
  margin-bottom: 20px;
  text-align: center;
}

.itinerary .day {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.highlights ul, .contact p {
  text-align: center;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

input, textarea {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

textarea {
  resize: none;
  height: 100px;
}

.footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}