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

:root {
  --teal: #0e4d4a;
  --teal-light: #1a6b67;
  --teal-mid: #2a9d8f;
  --teal-pale: #e1f5f3;
  --gold: #c9a84c;
  --cream: #f8f4ee;
  --dark: #0c1a1a;
  --dark2: #142020;
  --text: #1a2e2e;
  --muted: #5a7070;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--teal-mid);
  border-radius: 3px;
}

/* NAV */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(12, 26, 26, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(12, 26, 26, 0.95);
  top: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  padding: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-logo-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo-main {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.25px;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #e0bc60;
  transform: scale(1.03);
}

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #062a28 0%,
    #0e4d4a 40%,
    #1a6b67 70%,
    #2a9d8f 100%
  );
  z-index: 0;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80")
    center/cover no-repeat;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(6, 42, 40, 0.3) 0%,
    rgba(6, 42, 40, 0.5) 60%,
    rgba(6, 42, 40, 0.85) 100%
  );
}

.hero-floating-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.fcard {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: floatCard 6s ease-in-out infinite;
}

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

.fcard:nth-child(1) {
  width: 200px;
  height: 140px;
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

.fcard:nth-child(2) {
  width: 180px;
  height: 130px;
  top: 10%;
  right: 5%;
  animation-delay: -2s;
}

.fcard:nth-child(3) {
  width: 190px;
  height: 145px;
  bottom: 15%;
  left: 4%;
  animation-delay: -4s;
}

.fcard:nth-child(4) {
  width: 185px;
  height: 135px;
  bottom: 14%;
  right: 4%;
  animation-delay: -1s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--teal);
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.btn-primary .btn-arrow {
  background: var(--teal);
  color: var(--white);
}

.hero-stats {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 48px;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.stat-icon {
  font-size: 18px;
  opacity: 0.7;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS COMMON */
section {
  padding: 100px 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-tag svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--teal);
  letter-spacing: -1px;
}

.section-title.white {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ABOUT */
#about {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-left {
}

.about-right {
  position: relative;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.about-img-main {
  grid-column: 1/-1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  position: relative;
}

.about-img-main img,
.about-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.about-img-main:hover img,
.about-img-sm:hover img {
  transform: scale(1.05);
}

.about-img-sm {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  transition: all 0.3s;
}

.about-img-sm.active-img {
  outline: 3px solid var(--teal-mid);
  outline-offset: 3px;
}

.about-imgs-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.about-thumb {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}

.about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thumb.active {
  border-color: var(--teal-mid);
}

.about-thumb:hover {
  transform: scale(1.05);
}

.about-know-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-top: 28px;
  transition: all 0.25s;
  text-decoration: none;
}

.about-know-more:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* EXPERIENCE / EXPLORE */
#experience {
  background: var(--cream);
  padding: 100px 60px;
}

.experience-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.experience-header {
  text-align: center;
  margin-bottom: 60px;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.exp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.exp-card:hover img {
  transform: scale(1.06);
}

.exp-card-info {
  padding: 14px 0 4px;
}

.exp-card-info h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}

.exp-card-info p {
  font-size: 14px;
  color: var(--muted);
}

.exp-card.tall {
  grid-row: span 2;
}

.exp-card.tall img {
  height: 100%;
  min-height: 400px;
}

.exp-card.wide {
  grid-column: span 2;
}

.exp-card.normal img {
  height: 220px;
}

.exp-card.wide img {
  height: 220px;
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.exp-card:hover .exp-card-overlay {
  opacity: 1;
}

.exp-card-overlay span {
  color: var(--white);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 28px;
}

.exp-footer p {
  font-size: 15px;
  color: var(--muted);
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* DESTINATIONS */
#destinations {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
  transition: background 0s;
}

.dest-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease;
}

.dest-bg-2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(6, 42, 40, 0.6) 0%,
    rgba(6, 42, 40, 0.4) 50%,
    rgba(6, 42, 40, 0.85) 100%
  );
}

.dest-marquee-bg {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.dest-marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.dest-marquee-item {
  font-family: "Fraunces", serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  letter-spacing: -2px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.dest-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.dest-header {
  margin-bottom: 48px;
}

.dest-cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dest-card {
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.dest-card:hover,
.dest-card.active {
  border-color: var(--gold);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.dest-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.dest-card-info {
  padding: 14px 16px;
  background: rgba(12, 26, 26, 0.85);
  backdrop-filter: blur(10px);
}

.dest-card-info h3 {
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
}

.dest-card-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.dest-detail-panel {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 40px auto 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.dest-detail-panel.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dest-detail-imgs {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.dest-detail-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.dest-detail-img:hover {
  transform: scale(1.08);
}

.dest-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-detail-img:nth-child(2) {
  transform: rotate(6deg);
  margin-top: 8px;
}

.dest-detail-img:nth-child(2):hover {
  transform: rotate(6deg) scale(1.08);
}

.dest-detail-text {
  text-align: left;
}

.dest-detail-text h2 {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.dest-detail-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.dest-detail-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dest-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* PACKAGES */
#packages {
  background: var(--white);
  padding: 100px 60px;
}

.packages-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.packages-header {
  margin-bottom: 56px;
  text-align: center;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pkg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--teal-mid);
}

.pkg-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 26, 26, 0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pkg-body {
  padding: 18px;
}

.pkg-body h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

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

.pkg-price strong {
  color: var(--teal);
  font-size: 18px;
  font-weight: 600;
}

.packages-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 28px;
}

.packages-footer p {
  font-size: 15px;
  color: var(--muted);
}

/* WHY */
#why {
  position: relative;
  background: var(--dark);
  padding: 100px 60px;
  overflow: hidden;
}

.why-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("https://images.unsplash.com/photo-1483347756197-71ef80e95f73?w=1920&q=80")
    center/cover no-repeat;
  opacity: 0.2;
}

.why-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(14, 77, 74, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(14, 77, 74, 0.3) 0%,
      transparent 60%
    );
}

.why-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.why-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.why-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(12, 26, 26, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-img-badge-icon {
  font-size: 28px;
}

.why-img-badge-text h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}

.why-img-badge-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-feature {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
  cursor: default;
}

.why-feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(42, 157, 143, 0.15);
  border: 1px solid rgba(42, 157, 143, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-feature h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.why-feature p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--white);
  padding: 100px 60px;
}

.test-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.test-header {
  text-align: center;
  margin-bottom: 56px;
}

.test-big {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all 0.3s;
}

.test-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=80")
    center/cover no-repeat;
  transition: transform 0.6s ease;
}

.test-big:hover .test-bg {
  transform: scale(1.03);
}

.test-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 26, 26, 0.92) 0%,
    rgba(6, 26, 26, 0.3) 60%,
    transparent 100%
  );
}

.test-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.test-star {
  color: var(--gold);
  font-size: 20px;
}

.test-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.test-avatars {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  display: flex;
  gap: -8px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  cursor: pointer;
  margin-left: -10px;
  transition: all 0.2s;
}

.test-avatar:first-child {
  margin-left: 0;
}

.test-avatar:hover {
  transform: scale(1.1);
  z-index: 10;
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-avatar.active {
  border-color: var(--gold);
  transform: scale(1.1);
}

.test-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.test-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.test-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 60px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  object-fit: cover;
  background: var(--white);
  padding: 5px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.footer-logo-kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-logo-main {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* STAGGER */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

/* LOGO + EXPERIENCE RESPONSIVE FIXES */
.exp-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  align-items: stretch;
}

.exp-card,
.exp-card.tall,
.exp-card.normal,
.exp-card.wide {
  grid-row: auto !important;
  grid-column: auto !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(14, 77, 74, 0.08);
}

.exp-card img,
.exp-card.tall img,
.exp-card.normal img,
.exp-card.wide img {
  width: 100%;
  height: 260px !important;
  min-height: 260px !important;
  object-fit: cover;
  flex: 0 0 auto;
}

.exp-card-info {
  flex: 1;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-card-info h3 {
  line-height: 1.2;
}

.exp-card-info p {
  line-height: 1.55;
}

.exp-card-overlay {
  height: 260px;
  bottom: auto;
}

.btn-primary,
.btn-outline,
.btn-teal,
.about-know-more,
.nav-cta {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px) {
  nav {
    gap: 16px;
    padding: 10px 18px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 70px 24px;
  }

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

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

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

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

  .dest-cards-row {
    gap: 12px;
  }

  .dest-card {
    width: 160px;
  }
}

/* UI FIXES */
.nav-cta {
  flex-shrink: 0;
}

nav {
  max-width: calc(100vw - 32px);
}

.hero-stats {
  padding: 0 20px;
  flex-wrap: wrap;
  row-gap: 12px;
}

.dest-bg,
.dest-bg-2,
.test-bg {
  will-change: opacity;
}

.pkg-price strong {
  font-size: 18px;
  font-weight: 600;
}

.test-avatars {
  gap: 0;
}

@media (max-width: 640px) {
  nav {
    top: 10px;
    width: calc(100vw - 24px);
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
  }

  .nav-logo {
    font-size: 17px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 8px 12px;
  }

  #hero {
    min-height: 760px;
  }

  .hero-floating-cards {
    display: none;
  }

  .hero-h1 {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-stats {
    bottom: 24px;
    gap: 10px;
    align-items: center;
    flex-direction: column;
  }

  .exp-grid,
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .exp-card.tall img {
    min-height: 260px !important;
    height: 260px !important;
  }

  .exp-card.normal img,
  .exp-card.wide img {
    height: 240px;
  }

  .packages-footer,
  .exp-footer {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .dest-detail-panel {
    padding: 22px;
    flex-direction: column;
    gap: 18px;
    text-align: left;
  }

  .dest-detail-text {
    text-align: left;
  }

  .dest-marquee-item {
    font-size: 44px;
  }

  .test-content {
    padding: 28px 24px 112px;
  }

  .test-avatars {
    bottom: 30px;
    left: 28px;
  }

  .test-nav {
    right: 24px;
    bottom: 30px;
  }
}

@media (max-width: 900px) {
  nav {
    width: calc(100vw - 28px);
    gap: 14px;
    padding: 9px 14px;
    border-radius: 28px;
  }

  .nav-logo-img {
    width: 42px;
    height: 42px;
  }

  .nav-logo-main {
    font-size: 17px;
  }

  .nav-logo-kicker {
    font-size: 10px;
  }

  section {
    padding: 68px 22px;
  }

  .section-title {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.12;
  }

  .section-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .exp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .exp-card img,
  .exp-card.tall img,
  .exp-card.normal img,
  .exp-card.wide img {
    height: 230px !important;
    min-height: 230px !important;
  }

  .exp-card-overlay {
    height: 230px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  nav {
    top: 8px;
    width: calc(100vw - 20px);
    padding: 8px 10px;
    gap: 8px;
    border-radius: 24px;
  }

  .nav-logo {
    gap: 8px;
    min-width: 0;
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
    padding: 2px;
  }

  .nav-logo-text {
    gap: 2px;
  }

  .nav-logo-kicker {
    font-size: 9px;
    letter-spacing: 0.35px;
  }

  .nav-logo-main {
    font-size: 15px;
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    font-size: 12px;
    padding: 8px 10px;
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  section {
    padding: 56px 18px;
  }

  #hero {
    min-height: 680px;
    height: 100svh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }

  .hero-h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.04;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }

  .hero-stats {
    bottom: 18px;
    gap: 8px;
    align-items: stretch;
    flex-direction: column;
    padding: 0 18px;
  }

  .hero-stat {
    font-size: 12px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 7px 10px;
    backdrop-filter: blur(8px);
  }

  .about-grid {
    gap: 34px;
  }

  .about-img-main {
    height: 220px;
  }

  .about-imgs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .about-thumb {
    width: 100%;
    height: 58px;
    border-radius: 9px;
  }

  #experience {
    padding: 58px 16px;
  }

  .experience-header {
    margin-bottom: 34px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-card {
    border-radius: 20px;
  }

  .exp-card img,
  .exp-card.tall img,
  .exp-card.normal img,
  .exp-card.wide img {
    height: 205px !important;
    min-height: 205px !important;
  }

  .exp-card-overlay {
    height: 205px;
  }

  .exp-card-info {
    padding: 15px 16px 17px;
  }

  .exp-card-info h3 {
    font-size: 19px;
  }

  .exp-card-info p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .exp-footer,
  .packages-footer {
    margin-top: 28px;
    padding-top: 20px;
    gap: 14px;
  }

  .btn-teal,
  .about-know-more {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 14px;
  }

  #destinations {
    padding: 62px 16px;
    min-height: auto;
  }

  .dest-header {
    margin-bottom: 30px;
  }

  .dest-cards-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .dest-card {
    width: 72vw;
    max-width: 250px;
    scroll-snap-align: center;
  }

  .dest-card img {
    height: 142px;
  }

  .dest-detail-panel {
    width: 100%;
    margin-top: 24px;
    padding: 18px;
    border-radius: 20px;
  }

  .dest-detail-imgs {
    width: 100%;
    justify-content: center;
  }

  .dest-detail-img {
    width: 76px;
    height: 76px;
  }

  .dest-detail-text h2 {
    font-size: 26px;
  }

  .dest-detail-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pkg-img {
    height: 205px;
  }

  .why-img img {
    height: 300px;
  }

  .why-feature {
    padding: 17px 16px;
    gap: 14px;
  }

  .test-big {
    min-height: 500px;
  }

  .test-content {
    padding: 28px 22px 120px;
  }

  .test-quote {
    font-size: 20px;
    line-height: 1.35;
  }

  .test-avatars {
    left: 24px;
    bottom: 32px;
  }

  .test-avatar {
    width: 46px;
    height: 46px;
  }

  .test-nav {
    right: 22px;
    bottom: 32px;
  }

  footer {
    padding: 42px 18px;
  }

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

  .footer-logo img {
    width: 78px;
    height: 78px;
    border-radius: 24px;
  }

  .footer-logo-text {
    align-items: center;
  }

  .footer-logo-main {
    font-size: 28px;
  }
}

@media (max-width: 380px) {
  .nav-logo-main {
    max-width: 92px;
    font-size: 14px;
  }

  .nav-cta {
    max-width: 112px;
    font-size: 11px;
    padding: 7px 9px;
  }

  .hero-h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .dest-card {
    width: 78vw;
  }
}

/* ---- Chatbot launcher button ---- */
#sh-chat-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e4d4a 0%, #2a9d8f 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(14, 77, 74, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
  outline: none;
}

#sh-chat-launcher:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(14, 77, 74, 0.55);
}

#sh-chat-launcher svg {
  pointer-events: none;
}

/* pulse ring */
#sh-chat-launcher::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(42, 157, 143, 0.45);
  animation: sh-pulse 2.4s ease-out infinite;
}

@keyframes sh-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* unread badge */
#sh-chat-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: #c9a84c;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 9px;
  color: #0c1a1a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sh-badge-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sh-badge-pop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

#sh-chat-badge.hidden {
  display: none;
}

/* ---- Chat window ---- */
#sh-chat-window {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 9998;
  width: 360px;
  max-height: 560px;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 4px 16px rgba(14, 77, 74, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.25s;
  font-family: "DM Sans", sans-serif;
}

#sh-chat-window.sh-hidden {
  transform: scale(0.85) translateY(12px);
  opacity: 0;
  pointer-events: none;
}

/* header */
.sh-header {
  background: linear-gradient(135deg, #0e4d4a 0%, #1a6b67 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sh-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a9d8f, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
}

.sh-avatar::after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #0e4d4a;
}

.sh-header-info {
  flex: 1;
}

.sh-header-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.sh-header-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.sh-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s;
  flex-shrink: 0;
}

.sh-close-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* messages area */
#sh-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8f4ee;
  scroll-behavior: smooth;
}

#sh-messages::-webkit-scrollbar {
  width: 4px;
}

#sh-messages::-webkit-scrollbar-thumb {
  background: #2a9d8f;
  border-radius: 2px;
}

/* message bubbles */
.sh-msg {
  display: flex;
  gap: 8px;
  max-width: 88%;
  animation: sh-msg-in 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@keyframes sh-msg-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.sh-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.sh-msg.bot {
  align-self: flex-start;
}

.sh-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e4d4a, #2a9d8f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sh-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}

.sh-msg.bot .sh-bubble {
  background: #fff;
  color: #1a2e2e;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sh-msg.user .sh-bubble {
  background: linear-gradient(135deg, #0e4d4a, #2a9d8f);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* typing indicator */
.sh-typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 2px;
}

.sh-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a9d8f;
  opacity: 0.5;
  animation: sh-dot 1.2s ease-in-out infinite;
}

.sh-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.sh-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes sh-dot {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.4;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* quick-reply chips */
#sh-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 16px 4px;
  background: #f8f4ee;
}

.sh-chip {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1.5px solid #2a9d8f;
  background: transparent;
  color: #0e4d4a;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.18s;
  white-space: nowrap;
}

.sh-chip:hover {
  background: #0e4d4a;
  color: #fff;
  border-color: #0e4d4a;
}

/* input area */
.sh-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #e8eded;
  background: #fff;
  flex-shrink: 0;
}

#sh-input {
  flex: 1;
  border: 1.5px solid #d0e0de;
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  color: #1a2e2e;
  background: #f8f4ee;
  transition: border-color 0.2s;
  resize: none;
  overflow: hidden;
}

#sh-input:focus {
  border-color: #2a9d8f;
  background: #fff;
}

#sh-input::placeholder {
  color: #8aa8a5;
}

#sh-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e4d4a, #2a9d8f);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(14, 77, 74, 0.3);
}

#sh-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 14px rgba(14, 77, 74, 0.4);
}

#sh-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* powered by */
.sh-powered {
  text-align: center;
  font-size: 10.5px;
  color: #a0b8b5;
  padding: 5px 0 8px;
  background: #fff;
  letter-spacing: 0.2px;
}

@media (max-width: 420px) {
  #sh-chat-window {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 96px;
  }

  #sh-chat-launcher {
    right: 16px;
    bottom: 20px;
  }
}
