
:root {
  --primary: #6a0572;
  --secondary: #a9034f;
  --dark: #1d1128;
  --light: #ffffff;
  --font-main: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  scroll-behavior: smooth;
  color: var(--dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  background: var(--dark);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 55px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero .swiper-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--light);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-logo {
  width: 280px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--secondary);
  color: var(--light);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #c90d63;
}

.section {
  padding: 70px 0;
}

.section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.about p {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.stat h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--light);
  border: 2px solid var(--secondary);
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.dest-card {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.dest-card span {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: var(--light);
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

.dest-card:hover {
  transform: scale(1.05);
}

.booking-form {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.booking-form input,
.booking-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: var(--font-main);
}

.booking-form textarea {
  resize: vertical;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 250px;
  background: var(--light);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  border: 2px solid var(--primary);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .stats { flex-direction: column; gap: 20px; }
  .form-row { flex-direction: column; }
}
