:root {
  --bg: #060a0f;
  --panel: #111823;
  --panel-soft: #151f2b;
  --text: #f4f8fc;
  --muted: #98a8b9;
  --line: #2b3948;
  --yellow: #f5c62c;
  --green: #2fba5b;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 550px at 15% -10%, #223f5b40, transparent 48%),
    radial-gradient(900px 500px at 95% 20%, #5d522135, transparent 50%),
    var(--bg);
  line-height: 1.45;
  font-size: 0.95rem;
  overflow-x: hidden;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.narrow {
  max-width: 700px;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
}

.offer-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  text-align: center;
  background: var(--yellow);
  color: #1f2732;
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.offer-bar span {
  margin: 0 0.35rem;
}

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 14, 20, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}

.logo span {
  color: var(--yellow);
  font-size: 2.2rem;
  line-height: 0;
  margin-left: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.9)),
    url("https://images.unsplash.com/photo-1477346611705-65d1883cee1e?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 900px;
}

.hero-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
}

.hero-btn {
  background: #fff;
  color: #080e14;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn:hover {
  background: #eee;
  transform: translateY(-4px) scale(1.02);
}

.btn-icon {
  width: 28px;
  height: 28px;
  background: #080e14;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.package-sub span {
  margin: 0 0.3rem;
}

#packages {
  background: #000;
}

.package-grid {
  margin-top: 3rem;
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
  cursor: grab;
}

.package-grid::-webkit-scrollbar {
  display: none;
}

.pack {
  flex: 0 0 calc(33.333% - 1.35rem);
  scroll-snap-align: start;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.pack:active {
  cursor: grabbing;
}

.pack img {
  height: 240px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.pack p {
  margin-top: 0;
  color: #6a6a6a;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
}

.pack h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #fff;
  letter-spacing: -0.01em;
}

.pack small {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #6a6a6a;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.pack small b {
  background: #28ca5c;
  color: #000;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.pack strong {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.pack strong span {
  color: #6a6a6a;
  font-size: 0.9rem;
  font-weight: 400;
}

.pack a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #333;
  background: #000;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s ease;
}

.pack a span {
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
}

.pack a:hover {
  border-color: #eee;
  background: #111;
}

.dots {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #333;
  transition: background 0.3s ease;
}

.dots .active {
  background: #fff;
}

.spotlight {
  background: #000;
  padding-bottom: 0;
  color: #fff;
  overflow: hidden;
}

.spotlight .pill-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #111;
  border: 1px solid #333;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.spotlight .pill {
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 600;
}

.spotlight .logos {
  display: flex;
  gap: 0.8rem;
  border-left: 1px solid #333;
  padding-left: 0.8rem;
}

.spotlight .logos img {
  height: 14px;
  width: auto;
  opacity: 0.7;
}



.team-row {
  display: flex;
  gap: 4rem;
  padding: 2rem;
  margin-bottom: 4rem;
  margin-top: 3rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.team-row::-webkit-scrollbar {
  display: none;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.team-img-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #222;
}

.team-badge {
  position: absolute;
  top: -15px;
  left: -10px;
  background: transparent;
  color: #f5c62c;
  font-family: 'Brush Script MT', cursive, sans-serif;
  /* Placeholder for a handwritten font */
  font-size: 1.2rem;
  transform: rotate(-10deg);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.team-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.team-info small {
  display: block;
  color: #6a6a6a;
  font-size: 0.85rem;
}

.stats {
  background: #f5c62c;
  color: #000;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  margin-top: 2rem;
  border: none;
  border-radius: 0;
}

.stats div {
  padding: 0;
  border: none;
  gap: 0.8rem;
  align-items: center;
}

.stats b {
  font-size: 2.2rem;
  font-weight: 800;
}

.stats span {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
}

.stats b::after {
  content: "/";
  margin-left: 0.8rem;
  font-weight: 400;
  opacity: 0.3;
}

#stays {
  position: relative;
  background: 
    linear-gradient(rgba(8, 14, 21, 0.8), rgba(8, 14, 21, 0.95)),
    url("image/section-1.jpg") center/cover no-repeat fixed;
  overflow: hidden;
}

.stays-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.stay {
  background: #000;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 1rem;
  text-align: left;
  transition: all 0.3s ease;
}

.stay:hover {
  border-color: #333;
  transform: translateY(-5px);
}

.stay img {
  height: 200px;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.stay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.stay p {
  font-size: 0.9rem;
  color: #6a6a6a;
  margin-bottom: 1.5rem;
}

.stay p span {
  opacity: 0.3;
  margin: 0 0.3rem;
}

.stay-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.stay-price {
  display: flex;
  flex-direction: column;
}

.stay-price strong {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}

.stay-price small {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.4rem;
}

.stay-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stay-btn:hover {
  background: #222;
  border-color: #555;
}

.stay-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.see-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid #333;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  background: #000;
  transition: all 0.3s ease;
}

.see-all:hover {
  background: #111;
  border-color: #666;
  transform: translateY(-2px);
}

#reviews {
  background: #000;
}

.reviews {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews::-webkit-scrollbar {
  display: none;
}

.reviews article {
  flex: 0 0 calc(33.333% - 1.334rem);
  scroll-snap-align: start;
  background: #000;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.reviews article:hover {
  border-color: #333;
}

.review-img {
  position: relative;
  margin-bottom: 1.2rem;
}

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

.rating-badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: #27ae60;
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.reviews blockquote {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  min-height: 80px;
  border: none;
  padding: 0;
}

.user {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.user b {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.user small {
  display: block;
  color: #6a6a6a;
  font-size: 0.85rem;
}

.where {
  background: #000;
}

.countries {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.countries article {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 160px;
  text-align: left;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.countries article:hover {
  transform: translateY(-5px);
}

.countries img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.countries article:hover img {
  transform: scale(1.1);
}

.countries article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
}

.country-info {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  width: calc(100% - 2.4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.countries h4 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.countries small {
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}

.countries small.highlight {
  background: var(--yellow);
}

.country-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.faq {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 4.5rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.8rem 0;
  width: 100%;
}

.faq-question span {
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  background: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #666;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(90deg);
  background: #fff;
  color: #000;
  border-color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1rem 3.2rem;
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter {
  background: #000;
}

.news-card {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85)),
    url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  border: 1px solid #222;
  border-radius: 24px;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-integrated {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.integrated-logos {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.integrated-logos span {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.news-features {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  color: #ddd;
  font-size: 0.95rem;
}

.news-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.news-features li span {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #aaa;
}

.news-features {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  color: #ddd;
  font-size: 0.95rem;
}

.news-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.news-features li span {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #aaa;
}

.news-form {
  display: flex;
  width: 100%;
  max-width: 550px;
  gap: 1rem;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 0 1.5rem;
  font-size: 1rem;
  outline: none;
}

/* Experts Section */
#experts {
  background: #000;
}

#expertDots {
  display: none;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.staff-card {
  text-align: left;
}

.staff-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.staff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.staff-card:hover .staff-img img {
  transform: scale(1.1);
}

.staff-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.staff-card:hover .staff-socials {
  transform: translateY(0);
}

.staff-socials span {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.staff-socials span:hover {
  background: var(--yellow);
  color: #000;
}

.staff-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.staff-info p {
  color: #888;
  font-size: 0.95rem;
  font-weight: 500;
}

.staff-badge {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-form button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-form button:hover {
  background: #eee;
  transform: translateX(3px);
}

.btn-icon {
  width: 24px;
  height: 24px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

#formMessage {
  display: block;
  margin-top: 1rem;
}

#formMessage {
  display: block;
  margin-top: 0.55rem;
}

.footer {
  padding: 5rem 0 3rem;
  background: #000;
  border-top: 1px solid #1a1a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-contact {
  background: #000;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 2.5rem;
}

.brand-card {
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  background:
    linear-gradient(180deg, var(--yellow) 0%, var(--yellow) 56%, transparent 56%),
    url("https://images.unsplash.com/photo-1468078809804-4c7b3e60a478?auto=format&fit=crop&w=1200&q=80") center bottom/cover no-repeat;
  position: relative;
}

.brand-card > div {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.brand-kicker {
  color: #000;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-card h4 {
  color: #111;
  font-size: 2.2rem;
  max-width: 280px;
  line-height: 1.1;
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

.social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.social span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.05);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social span:hover {
  background: #000;
  color: #fff;
}

.legal {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.legal p {
  color: #9ba5b3;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.legal-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.legal-social span {
  width: 34px;
  height: 34px;
  border: 1px solid #5e6978;
  border-radius: 50%;
  color: #d7dee8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.mini h5 {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

.mini h5 span {
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  background: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  color: #888;
}

.mini p {
  color: #888;
  font-size: 0.9rem;
  padding-left: 1.8rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  background: #161f2b;
  border: 1px solid #3f4d61;
  border-radius: 10px;
  color: #fff;
  padding: 0.72rem 0.82rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8ea0b3;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 95px;
}

.contact-form button {
  grid-column: 1 / -1;
  background: #fff;
  border: 0;
  color: #1f2834;
  font-weight: 700;
  transition: transform 0.2s ease;
  padding: 0.76rem 0.9rem;
}

.contact-form button:hover {
  transform: translateY(-1px);
}

.contact-form button span {
  margin-left: 0.35rem;
  background: #25303d;
  color: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1080px) {

  .package-grid,
  .team-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1140px, 94vw);
  }

  .nav {
    padding: 1rem 0;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }

  .menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .phone {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 4vw;
    width: 200px;
    background: rgba(13, 19, 27, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transform: translateY(-10px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
  }

  .offer-bar {
    font-size: 0.8rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .logo {
    font-size: 0.86rem;
    max-width: calc(100vw - 86px);
    letter-spacing: -0.02em;
  }

  .logo span {
    font-size: 1.05rem;
  }

  .hero-btn {
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .package-grid {
    gap: 1.2rem;
  }

  .pack {
    flex: 0 0 100%;
  }

  .stays-grid,
  .countries,
  .faq,
  .footer-grid,
  .contact-form,
  .mini {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .staff-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-top: 2rem;
    scrollbar-width: none;
  }

  .staff-grid::-webkit-scrollbar {
    display: none;
  }

  .staff-card {
    flex: 0 0 calc(50% - 0.5rem);
    scroll-snap-align: start;
  }

  #expertDots {
    display: flex;
    margin-top: 2rem;
  }

  .staff-img {
    margin-bottom: 0.8rem;
    border-radius: 14px;
  }

  .staff-info h3 {
    font-size: 0.95rem;
  }

  .staff-info p {
    font-size: 0.78rem;
  }

  .staff-badge {
    padding: 0.15rem 0.5rem;
    font-size: 0.6rem;
    margin-bottom: 0.4rem;
  }

  .staff-socials {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
  }

  .news-card {
    padding: 3rem 1.2rem;
    border-radius: 16px;
  }

  .pill-integrated {
    flex-direction: column;
    border-radius: 20px;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
  }

  .integrated-logos {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-features {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .news-form {
    flex-direction: column;
    background: none;
    border: none;
    padding: 0;
    gap: 0.8rem;
  }

  .news-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    height: 50px;
    border-radius: 999px;
  }

  .news-form button {
    width: 100%;
    justify-content: center;
    height: 50px;
  }

  .reviews article {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .team-row {
    width: 100%;
    transform: none;
    gap: 3rem;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .team-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    justify-content: flex-start;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .stats div {
    justify-content: center;
    width: 100%;
    gap: 0.4rem;
    text-align: center;
  }

  .stats b {
    font-size: 1.5rem;
  }

  .stats b::after {
    display: none;
  }

  .stats span {
    font-size: 0.75rem;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 0.6rem 0;
    text-align: left;
  }

  .faq-answer p {
    font-size: 0.85rem;
    padding-left: 3.2rem;
  }

  .muted {
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 3rem 0 2rem;
  }

  .legal {
    margin-top: 1.5rem;
    text-align: center;
  }

  .footer-contact {
    padding: 1.5rem;
  }

  .brand-card {
    min-height: 280px;
  }

  .brand-card > div {
    padding: 1.2rem;
  }

  .brand-kicker {
    font-size: 2rem;
  }

  .brand-card h4 {
    font-size: 1.6rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .legal p {
    font-size: 0.88rem;
  }

  /* Card Reductions */
  .pack h3, .stay h3, .countries article h4, .team-info h4 {
    font-size: 1.25rem;
  }

  .pack strong, .stay-price strong {
    font-size: 1.4rem;
  }

  /* Promo Mobile */
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .promo-card {
    padding: 2rem 1.5rem;
  }

  .promo-title-lg {
    font-size: 2rem;
  }

  .promo-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-kicker {
    font-size: 0.72rem;
  }

  .nav-links {
    right: 3vw;
    width: 92vw;
    top: 68px;
    border-radius: 14px;
  }

  .promo-title,
  .promo-title-lg {
    font-size: 1.3rem !important;
  }

  .pack h3,
  .stay h3,
  .countries h4 {
    font-size: 1.1rem;
  }

  .pack strong,
  .stay-price strong {
    font-size: 1.15rem;
  }

  .staff-card {
    flex: 0 0 82%;
  }

  .faq-answer p {
    padding-left: 2.2rem;
  }

  .footer-contact {
    padding: 1.2rem;
  }

  .legal p {
    font-size: 0.8rem;
  }
}

/* ===== PROMOTIONAL BANNER SECTION ===== */
.promo-banner-section {
  background: #000;
  padding: 2rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.promo-card {
  position: relative;
  border-radius: 20px;
  padding: 1.6rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Blue card */
.promo-blue {
  background: linear-gradient(135deg, #3b4fd8 0%, #5f4be8 60%, #7b3fcf 100%);
}

/* Orange card */
.promo-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 55%, #ef4444 100%);
}

/* Decorative orbs */
.promo-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.promo-orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.07);
  bottom: -60px;
  right: -60px;
}

.promo-orb-2 {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.05);
  bottom: 40px;
  right: 100px;
}

.promo-orb-3 {
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.1);
  bottom: -80px;
  left: -60px;
}

.promo-orb-4 {
  width: 130px;
  height: 130px;
  background: rgba(255,255,255,0.06);
  top: -40px;
  right: 60px;
}

/* Top row: icon + pill */
.promo-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.promo-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  overflow: hidden;
}

.promo-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.promo-icon-flag {
  font-size: 1.6rem;
  line-height: 1;
}

.promo-pill {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Titles */
.promo-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.promo-title-lg {
  font-size: 2.2rem;
}

.promo-sub {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin: 0 0 0.4rem;
}

/* CTA Buttons */
.promo-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.promo-btn span {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.promo-btn:hover span {
  transform: translateX(5px);
}

/* White button (blue card) */
.promo-btn-white {
  background: #fff;
  color: #3b4fd8;
  border: none;
}

.promo-btn-white:hover {
  background: #f0f0ff;
  transform: scale(1.03);
}

/* Outline button (orange card) */
.promo-btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}

.promo-btn-outline:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  transform: scale(1.03);
}

/* Footer note */
.promo-note {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin: 0;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .promo-banner-section {
    padding: 1.5rem 0;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .promo-card {
    padding: 1.2rem 1.5rem;
    gap: 0.4rem;
    border-radius: 16px;
  }

  .promo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .promo-icon img {
    width: 20px;
    height: 20px;
  }
  
  .promo-icon-flag {
    font-size: 1.2rem;
  }

  .promo-pill {
    font-size: 0.6rem;
    padding: 0.2rem 0.7rem;
  }

  .promo-title {
    font-size: 1.5rem !important;
  }

  .promo-title-lg {
    font-size: 1.6rem !important;
  }

  .promo-sub {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .promo-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    width: fit-content;
    justify-content: center;
  }

  .promo-note {
    font-size: 0.7rem;
  }
  
  .promo-orb-1 { width: 140px; height: 140px; }
  .promo-orb-3 { width: 160px; height: 160px; }
}