/* ===============================
   GLOBAL STYLES
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   HEADER
================================ */
.header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 48px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #003366;
}

.btn-nav {
  background: #003366;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
}

/* ===============================
   HERO
================================ */
.hero {
  height: 85vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.search-box {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
}

.search-box button {
  background: #003366;
  color: #fff;
  border: none;
  padding: 0 30px;
  cursor: pointer;
}

/* ===============================
   SERVICES
================================ */
.services {
  padding: 70px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s;
  color: inherit;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #003366;
}

/* ===============================
   DESTINATIONS
================================ */
.destinations {
  padding: 70px 0;
  background: #f7f9fc;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.destination-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  padding: 18px;
  text-align: center;
  color: #000;
}

.destination-card:hover h3 {
  color: #003366;
}

/* ===============================
   CTA
================================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #003366, #0055a5);
  color: #fff;
}

.cta-box {
  text-align: center;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  background: #1fa84f;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* ===============================
   CONTACT PAGE
================================ */
.contact-section {
  padding: 80px 0;
  background: #f4f6f8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.contact-form-box,
.contact-info-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-box h2,
.contact-info-box h2 {
  color: #1fa84f;
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1fa84f;
  outline: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.full-btn {
  width: 100%;
  margin-top: 10px;
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: #0b1d33;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 15px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.hotel-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.hotel-gallery img:hover {
  transform: scale(1.05);
}

.property-gallery {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
