:root {
  --brand: #0ea5e9; /* sky-500 */
  --brand-600: #0284c7; /* sky-600 */
  --accent: #f59e0b; /* amber-500 */
  --ink: #0f172a; /* slate-900 */
  --muted: #475569; /* slate-600 */
  --bg: #f8fafc; /* slate-50 */
  --card: #ffffff;
  --ring: 0 0 0 3px rgba(14, 165, 233, 0.25);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto;
  color: var(--ink);
  background: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
#logo{
    width: 50px;
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn:hover {
  background: var(--brand-600);
}
.btn.outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.badge {
  display: inline-block;
  background: #eaf7fe;
  color: var(--brand-600);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section {
  padding: 72px 0;
}
.title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffb3;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 800;
}
.logo .mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #22d3ee);
  display: grid;
  place-items: center;
  color: #fff;
}
.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover {
  background: #f1f5f9;
}
.mobile-toggle {
  display: none;
}
@media (max-width: 900px) {
  .nav ul {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 64px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2000&auto=format&fit=crop")
    center/cover no-repeat;
  filter: brightness(0.6);
}
.hero > .container {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin: 0;
}
.hero .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.search {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: 2fr 1.5fr 1fr auto;
  align-items: center;
}
.search input,
.search select {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  width: 100%;
}
@media (max-width: 900px) {
  .hero > .container {
    grid-template-columns: 1fr;
  }
  .search {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Destinations */
.destinations .item {
  overflow: hidden;
  position: relative;
}
.destinations .item img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.destinations .item .label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ffffffde;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

/* Packages */
.pkg {
  display: flex;
  flex-direction: column;
}
.pkg .media {
  height: 220px;
  overflow: hidden;
}
.pkg .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg .body {
  padding: 18px;
  display: grid;
  gap: 10px;
}
.price {
  font-weight: 800;
  font-size: 1.2rem;
}
.inc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Why Us */
.why .point {
  display: flex;
  gap: 14px;
}
.why .point i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eaf7fe;
  display: grid;
  place-items: center;
  color: var(--brand-600);
  font-weight: 800;
}

/* Testimonials */
.slider {
  position: relative;
}
.slide {
  display: none;
}
.slide.active {
  display: block;
}

/* Gallery */
.gallery {
  grid-template-columns: repeat(6, 1fr);
}
.gallery img {
  border-radius: 12px;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ */
details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}
details + details {
  margin-top: 12px;
}
summary {
  cursor: pointer;
  font-weight: 700;
}

/* Contact */
form .field {
  display: grid;
  gap: 6px;
}
form input,
form textarea,
form select {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
iframe.map {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
}

footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 30px 0;
  margin-top: 40px;
}
footer a {
  color: #e2e8f0;
}
.small {
  font-size: 0.85rem;
  color: #64748b;
}
