:root {
  --bg: #f7fbff;
  --card: #ffffff;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --teal: #0ea5e9;
  --navy: #0f172a;
  --text: #0b1c34;
  --muted: #4b5563;
  --border: #e5e7eb;
  --accent: #0d9488;
  --shadow: 0 30px 100px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

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

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    linear-gradient(145deg, rgba(247, 251, 255, 0.92), rgba(235, 245, 255, 0.9)),
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.12) 0, transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(14, 165, 233, 0.12) 0, transparent 24%),
    url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad?auto=format&fit=crop&w=1600&q=80');
  background-size: cover, auto, auto, cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--navy);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-weight: 800;
}

.brand__logo {
  width: auto;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.brand__name {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary-strong);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.primary.ghost {
  color: var(--primary-strong);
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.08);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  display: block;
}

.hero {
  padding: 72px 0 48px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('images.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__copy {
  color: #ffffff;
}

.hero__copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero__copy .lede {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.hero__copy .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: none;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.hero__badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  border: 1px solid #bfdbfe;
  font-size: 14px;
  color: #0f172a;
}

.search-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.search-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 8px 16px;
  color: var(--primary-strong);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.badge-icon {
  font-size: 16px;
  line-height: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
}

.field span {
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text);
}

.field--inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hint {
  font-size: 14px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #075985;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.pill--soft {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.pill--outline {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--navy);
}

.trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.trust__label {
  color: #4338ca;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust__stats {
  display: flex;
  gap: 18px;
}

.trust__stats strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
}

.section {
  padding: 64px 0;
  background: #ffffff;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.lede {
  margin-top: 8px;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards--grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards--row {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.card__body {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

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

.rating {
  color: #f59e0b;
  font-weight: 700;
}

.card--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section--dark {
  background: #eef2ff;
  border-block: 1px solid var(--border);
}

.section--tint {
  background: #f1f5f9;
}

/* Enhanced Value Proposition Section */
.section--value-prop {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 25%, #fff0f5 50%, #f0f9ff 75%, #f0fdf4 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section--value-prop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(67, 233, 123, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.value-prop__header {
  text-align: center;
  margin-bottom: 60px;
  justify-content: center !important;
  align-items: center;
}

.value-prop__header > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-prop__header h2 {
  color: #000000;
  font-size: clamp(32px, 5vw, 48px);
  text-shadow: none;
  margin-bottom: 16px;
  font-weight: 700;
}

.value-prop__header .lede {
  color: #1a1a1a;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.value-prop__header .eyebrow--animated {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1d4ed8;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  text-align: center;
}

.value-cards {
  position: relative;
  z-index: 1;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--card-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
}

.value-card:hover::before {
  opacity: 0.05;
}

.value-card__icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  z-index: 1;
}

.value-card__icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-gradient);
  border-radius: 20px;
  transform: rotate(-5deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card:hover .value-card__icon-bg {
  transform: rotate(5deg) scale(1.1);
}

.value-card__icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover .value-card__icon {
  transform: scale(1.15) rotate(5deg);
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--navy);
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.value-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.value-card__shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.value-card:hover .value-card__shine {
  left: 100%;
}

/* Fade-in animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.4s;
}

.delay-4 {
  animation-delay: 0.5s;
}

.delay-5 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-card {
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.destination-card__image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.destination-card__img {
  width: 100%;
  height: 240px;
  min-height: 240px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
  display: block;
  background: #f0f0f0;
}

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

.destination-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.destination-card__rating {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.destination-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.destination-card h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.destination-card__location {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.destination-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.destination-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.destination-card__price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destination-card__price strong {
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
}

/* Carousel Styles */
.carousel-wrapper {
  position: relative;
  margin: 40px 0;
  padding: 0 60px;
  width: 100%;
}

.carousel-container {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  position: relative;
  max-width: 100%;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.carousel-cards {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  padding: 0;
  width: 100%;
  grid-auto-rows: 1fr;
  align-items: stretch;
  grid-auto-flow: row;
}

.carousel-cards .destination-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .carousel-wrapper {
    padding: 0 50px;
  }
  .carousel-cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 960px) {
  .carousel-wrapper {
    padding: 0 50px;
  }
  .carousel-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .carousel-wrapper {
    padding: 0 10px;
  }
  .carousel-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 10px;
  }
  .carousel-btn {
    display: none;
  }
  .carousel-container {
    touch-action: pan-x;
    margin: 0 -10px;
  }
  .carousel-track {
    touch-action: pan-x;
  }
  .carousel-slide {
    padding: 0 10px;
  }
  .destination-card {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .carousel-btn--prev {
    left: 5px;
  }
  .carousel-btn--next {
    right: 5px;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 24px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  font-weight: bold;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
}

.carousel-btn--prev {
  left: 10px;
}

.carousel-btn--next {
  right: 10px;
}

@media (max-width: 960px) {
  .carousel-wrapper {
    padding: 0 50px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-btn--prev {
    left: 5px;
  }
  
  .carousel-btn--next {
    right: 5px;
  }
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator:hover {
  background: var(--primary);
  transform: scale(1.2);
}

.carousel-indicator--active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

.trust-panel {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.06));
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-panel h2 {
  margin-bottom: 8px;
}

.slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.testimonial {
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.testimonial__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
}

.testimonial__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__meta strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.testimonial__meta .muted {
  color: var(--muted);
  font-size: 14px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.star {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1;
}

.star--full {
  color: #fbbf24;
}

.star--half {
  position: relative;
  display: inline-block;
  color: #e5e7eb;
  width: 20px;
  text-align: left;
}

.star--half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbf24;
  display: block;
}

.star--empty {
  color: #e5e7eb;
}

.rating-value {
  margin-left: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
}

.dots button.active {
  background: var(--primary);
}

.section--panel {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(37, 99, 235, 0.15);
}

.panel h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--navy);
}

.panel .eyebrow {
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 8px;
}

.checklist li::before {
  content: "✓";
  color: #10b981;
  margin-right: 12px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.panel__cta {
  background: #ffffff;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel__cta p {
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.panel__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.panel__actions .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0 24px;
  background: var(--navy);
  color: #ffffff;
}

.footer .brand__name {
  color: #ffffff;
}

.footer .lede {
  color: rgba(255, 255, 255, 0.8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.footer__links h4 {
  margin-bottom: 8px;
  color: #ffffff;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__bar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.gallery__item img {
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.listings {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.listings__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.filters {
  position: sticky;
  top: 90px;
  background: #ffffff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  min-width: 0;
}

.filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

@media (max-width: 768px) {
  .chips {
    gap: 6px;
  }
}

.chip {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .chip {
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
    max-width: calc(50% - 3px);
    text-align: center;
    padding: 10px 6px;
    font-size: 11px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.chip--active {
  border-color: var(--primary);
  color: var(--primary-strong);
  background: rgba(37, 99, 235, 0.08);
}

.filter-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .filter-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-section__title {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

.quick-filter:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.quick-filter--active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-strong);
  font-weight: 600;
}

.quick-filter__icon {
  font-size: 18px;
}

.rating-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .rating-badges {
    gap: 6px;
    width: 100%;
  }
  
  .rating-badge {
    flex: 1 1 calc(50% - 3px);
    min-width: 0;
    max-width: calc(50% - 3px);
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
  }
}

.rating-badge {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.rating-badge:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.rating-badge--active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-strong);
  font-weight: 600;
}

.property-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .property-chips {
    flex-direction: column;
    gap: 8px;
  }
  
  .property-chip {
    width: 100%;
    justify-content: center;
  }
}

.property-chip {
  padding: 10px 16px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.property-chip:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}

.property-chip--active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary-strong);
  font-weight: 600;
}

.popular-amenities {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popular-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  width: 100%;
}

.popular-amenity:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.popular-amenity--active {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-strong);
  font-weight: 600;
}

.popular-amenity__icon {
  font-size: 16px;
}

.filter-section--highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  margin-top: 8px;
}

.special-offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.special-offer {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.special-offer:hover {
  background: rgba(37, 99, 235, 0.05);
}

.special-offer input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.filter-section--stats {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  padding: 16px;
  border-radius: 12px;
  margin-top: 8px;
}

.filter-section--stats .filter-section__title {
  color: white;
  margin-bottom: 12px;
}

.filter-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.filter-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.filter-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.filter-stat span {
  font-size: 12px;
  opacity: 0.9;
  color: white;
}

.hotel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  min-height: 200px;
}

.hotel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.hotel__image-wrapper {
  position: relative;
  height: 100%;
  min-height: 200px;
}

.hotel__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.hotel__image-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel__image-badge-icon {
  font-size: 14px;
}

.hotel__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
}

.hotel__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.hotel__info {
  flex: 1;
  min-width: 0;
}

.hotel__top h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--navy);
}

.hotel__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 10px;
}

.hotel__highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 10px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 6px;
  font-size: 13px;
  color: var(--primary-strong);
  font-weight: 500;
  width: fit-content;
}

.hotel__highlight-icon {
  font-size: 14px;
}

.hotel__rating {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hotel__rating-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hotel__rating strong {
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
}

.hotel__rating-stars {
  display: flex;
  gap: 2px;
  font-size: 12px;
}

.hotel__rating-stars .star-filled {
  opacity: 1;
}

.hotel__rating-stars .star-empty {
  opacity: 0.3;
}

.hotel__reviews {
  font-size: 12px;
  color: var(--muted);
}

.hotel__features {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.hotel__features-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hotel__feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.hotel__feature-icon {
  font-size: 14px;
}

.hotel__amenities-section {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.hotel__amenities-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.hotel__amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hotel__amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.hotel__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.hotel__price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hotel__price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hotel__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hotel__price strong {
  font-size: 24px;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.hotel__price .muted {
  font-size: 14px;
  color: var(--muted);
}

.hotel__price-note {
  font-size: 11px;
  color: #10b981;
  font-weight: 500;
  margin-top: 2px;
}

.hotel__view-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hotel__view-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.detail-wrap {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.detail {
  display: grid;
  gap: 12px;
}

@media (max-width: 640px) {
  .detail {
    gap: 16px;
  }
}

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

@media (max-width: 640px) {
  .detail__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .detail__header h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}

.detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

@media (max-width: 640px) {
  .detail__gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .detail__gallery img {
    height: 200px;
    width: 100%;
  }
}

.detail__gallery img {
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.detail__rooms {
  display: grid;
  gap: 10px;
}

@media (max-width: 640px) {
  .detail__rooms {
    gap: 12px;
  }
}

.room {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .room {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  
  .room > div:first-child {
    order: 1;
  }
  
  .room > div:first-child strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
  }
  
  .room .hotel__price {
    order: 2;
    text-align: left;
    justify-content: flex-start;
    margin: 8px 0;
  }
  
  .room .hotel__price strong {
    font-size: 20px;
  }
  
  .room .btn {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }
}

.detail__form {
  margin-top: 24px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
}

@media (max-width: 640px) {
  .detail__form {
    padding: 20px 16px;
    margin-top: 20px;
  }
}

.detail__form h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--navy);
  text-align: center;
}

@media (max-width: 640px) {
  .detail__form h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.detail__form .btn.full {
  max-width: 280px;
  margin: 0 auto;
  padding: 12px 32px;
  font-size: 15px;
  display: block;
}

@media (max-width: 640px) {
  .detail__form .btn.full {
    max-width: 100%;
    width: 100%;
    padding: 14px 24px;
  }
}

.detail__form .field {
  margin-bottom: 0;
}

.detail__form .field input {
  background: #ffffff;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail__form .field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.map__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.map__frame img {
  width: 100%;
  border-radius: 20px;
  height: 450px;
  object-fit: cover;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.map__frame:hover img {
  transform: scale(1.02);
}

.map__overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill--map {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill--map:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.section.map {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  padding: 80px 0;
}

.section.map .section__header {
  margin-bottom: 40px;
}

.footer__bar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero__grid,
  .panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .listings {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .filters__header {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .filter-section {
    width: 100%;
    overflow-x: hidden;
  }
  
  .filter-section__title {
    font-size: 13px;
  }
  
  .quick-filter,
  .popular-amenity {
    width: 100%;
    min-width: 0;
  }
  
  .special-offer {
    width: 100%;
  }
  
  .filter-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hotel {
    grid-template-columns: 1fr;
  }

  .cards--row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .field--inline {
    grid-template-columns: 1fr;
  }

  .panel__actions {
    flex-direction: column;
  }

  .actions {
    display: none;
  }

  .footer__bar {
    flex-direction: column;
    gap: 8px;
  }

  .cards--row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .listings {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: 0;
  }
  
  .listings__grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .filters {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .filters__header h3 {
    font-size: 18px;
  }
  
  .filter-section__title {
    font-size: 12px;
  }
  
  .quick-filter,
  .popular-amenity {
    font-size: 12px;
    padding: 10px 12px;
    width: 100%;
    max-width: 100%;
  }
  
  .chip {
    flex: 1 1 calc(50% - 3px);
    max-width: calc(50% - 3px);
    font-size: 11px;
    padding: 8px 6px;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .rating-badge {
    flex: 1 1 calc(50% - 3px);
    max-width: calc(50% - 3px);
    font-size: 12px;
    padding: 8px 10px;
  }
  
  .property-chip {
    font-size: 12px;
    padding: 10px 12px;
    width: 100%;
    max-width: 100%;
  }
}
:root {
  --bg: #f7fafc;
  --card: #ffffff;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --text: #0f172a;
  --muted: #4b5563;
  --border: #e5e7eb;
  --accent: #059669;
  --shadow: 0 25px 80px rgba(15, 23, 42, 0.12);
  --radius: 16px;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.12) 0, transparent 26%), radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.12) 0, transparent 24%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #0f172a;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
}

.brand__name {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary-strong);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.primary.ghost {
  color: var(--primary-strong);
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  display: block;
}

.hero {
  padding: 64px 0 48px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url('images.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__copy {
  color: #ffffff;
}

.hero__copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero__copy .lede {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  font-size: 14px;
  color: #1d4ed8;
}

.hero__cta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #065f46;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.pill--soft {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero__panel {
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.search-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tabs {
  display: flex;
  gap: 8px;
}

.tab {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text);
}

.field span {
  font-weight: 600;
}

.field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text);
}

.field--inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hint {
  font-size: 14px;
  color: var(--muted);
}

.trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.trust__label {
  color: #4338ca;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust__stats {
  display: flex;
  gap: 18px;
}

.trust__stats strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
}

.section {
  padding: 64px 0;
  background: #ffffff;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.lede {
  margin-top: 8px;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards--grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards--row {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.card__body {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

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

.rating {
  color: #fde68a;
  font-weight: 700;
}

.card--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section--dark {
  background: #f1f5f9;
  border-block: 1px solid var(--border);
}

.section--tint {
  background: #eef2ff;
}

.slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.testimonial {
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
}

.testimonial__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
}

.testimonial__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__meta img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(37, 99, 235, 0.1);
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
}

.dots button.active {
  background: var(--primary);
}

.section--panel {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(37, 99, 235, 0.15);
}

.panel h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--navy);
}

.panel .eyebrow {
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 8px;
}

.checklist li::before {
  content: "✓";
  color: #10b981;
  margin-right: 12px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.panel__cta {
  background: #ffffff;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel__cta p {
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.panel__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.panel__actions .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 0 24px;
  background: var(--navy);
  color: #ffffff;
}

.footer .brand__name {
  color: #ffffff;
}

.footer .lede {
  color: rgba(255, 255, 255, 0.8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.footer__links h4 {
  margin-bottom: 8px;
  color: #ffffff;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__bar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.gallery__item img {
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .hero__grid,
  .panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .listings {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filters {
    position: relative;
    top: 0;
  }

  .hotel {
    grid-template-columns: 200px 1fr;
    gap: 12px;
  }

  .hotel__img {
    min-height: 160px;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .field--inline {
    grid-template-columns: 1fr;
  }

  .panel__actions {
    flex-direction: column;
  }

  .actions {
    display: none;
  }

  .footer__bar {
    flex-direction: column;
    gap: 8px;
  }

  .cards--row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section--value-prop {
    padding: 60px 0;
  }

  .value-card {
    padding: 32px 20px;
  }

  .value-card__icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .value-card__icon {
    font-size: 32px;
  }

  .value-prop__header {
    margin-bottom: 40px;
  }

  .value-prop__header h2 {
    font-size: 28px;
  }

  .value-prop__header .lede {
    font-size: 16px;
  }
}

