* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary: #ff5e00;
  --secondary: #ff9900;
  --dark: #222;
  --light: #f8f8f8;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: white;
  z-index: 100;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
}
.logo span {
  color: var(--secondary);
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}
nav a:hover {
  color: var(--secondary);
}
nav .book-btn {
  background: var(--secondary);
  padding: 8px 18px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  color: white;
}

/* Hero */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e")
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.big-btn {
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  cursor: pointer;
}

/* Services */
.services {
  padding: 80px 20px;
  background: var(--light);
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}
.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* Rates */
.rates {
  padding: 60px 20px;
  text-align: center;
}
.rates h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.rate-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rate-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 25px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.rate-card:hover {
  transform: scale(1.05);
}

/* Tourism */
.tourism {
  background: var(--light);
  padding: 60px 20px;
  text-align: center;
}
.tourism h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.tourism p {
  margin-bottom: 25px;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}
.tour-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.3s;
}
.tour-card:hover img {
  transform: scale(1.05);
}
.tour-card h3 {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 8px;
  font-size: 1.1rem;
}

/* Form */
.form-popup {
  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: 200;
}
.form-container {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.form-container h2 {
  text-align: center;
  margin-bottom: 15px;
}
.form-container input,
.form-container select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.submit-btn {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px;
}
footer a {
  color: var(--secondary);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}