/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
h1, h2, h3 {
  font-weight: 700;
}
a {
  text-decoration: none;
}

/* Header */
header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 700;
  font-size: 22px;
  color: #003B95;
}
.logo span {
  color: #FFD700;
}
nav a {
  margin-left: 20px;
  color: #003B95;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  background: #f0f4ff;
  padding: 60px 20px;
}
.hero h1 span {
  color: #FFD700;
}
.hero .btn-primary {
  margin-top: 20px;
  background: #003B95;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/* Image Grid */
.hero-images, .image img {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.hero-images img {
  width: 200px;
  border-radius: 12px;
}

/* Experience Section */
.experience {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.experience .text h2 {
  margin: 20px 0;
}
.btn-secondary {
  background: #FFD700;
  color: #000;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* Experience Options */
.experience-options {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}
.experience-options ul {
  list-style: none;
  margin: 20px 0;
}
.experience-options li {
  margin: 10px 0;
}

/* Testimonials */
.testimonials {
  background: #eef2f5;
  padding: 40px 20px;
}
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #003B95;
  border-radius: 4px;
}

/* Form Section */
.vacation-form {
  background: #f4f4f4;
  padding: 40px 20px;
}
.vacation-form h2 {
  text-align: center;
  margin-bottom: 20px;
}
.vacation-form form {
  max-width: 800px;
  margin: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}
input[type="text"], input[type="email"], input[type="tel"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
button[type="submit"] {
  padding: 10px 25px;
  background: #003B95;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Featured Trip */
.featured-trip {
  padding: 40px 20px;
  background: #fff;
}
.featured-trip .container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.featured-trip .card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
}
.featured-trip img {
  width: 100%;
  border-radius: 6px;
}
.featured-trip .btn-secondary {
  display: block;
  margin-top: 15px;
}

/* Footer */
footer {
  background: #003B95;
  color: #fff;
  padding: 20px 40px;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer a {
  color: #FFD700;
  margin-left: 10px;
}
