@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&display=swap");

/* ========== VARIABLES — LUXURY DARK THEME ========== */
:root {
  --primary-color: #039799;
  --primary-color-dark: #027b7d;
  --primary-color-light: rgba(3, 151, 153, 0.12);
  --accent-color: #04c4c7;
  --accent-color-dark: #039799;
  --gold: #c8a55a;
  --gold-light: rgba(200, 165, 90, 0.12);
  --bg-primary: #08090d;
  --bg-secondary: #0c0e14;
  --bg-card: #11141c;
  --bg-elevated: #171b26;
  --text-primary: #edf0f5;
  --text-secondary: #98a3b5;
  --text-muted: #586274;
  --border-color: rgba(3, 151, 153, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-gold: rgba(200, 165, 90, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 4px 25px rgba(3, 151, 153, 0.25);
  --shadow-gold: 0 4px 25px rgba(200, 165, 90, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --max-width: 1200px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET & BASE ========== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ========== UTILITIES ========== */
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 6rem 1.5rem;
}

.section__header {
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section__header::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  margin: 1rem auto 0;
  border-radius: 3px;
}

.section__description {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  outline: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(3, 151, 153, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

.logo {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 99;
  background: rgba(8, 9, 13, 0.75);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--primary-color), var(--gold), var(--primary-color), transparent 95%);
  opacity: 0.35;
}

.nav__header {
  padding: 0.5rem 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo .logo {
  display: flex;
  align-items: center;
}

.nav__logo .logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 12px rgba(3, 151, 153, 0.25));
}

.nav__logo .logo:hover img {
  filter: drop-shadow(0 2px 20px rgba(3, 151, 153, 0.45));
  transform: scale(1.05);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__menu__btn:hover {
  background-color: var(--bg-elevated);
  color: var(--primary-color);
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(8, 9, 13, 0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav__links a:hover {
  color: var(--text-primary);
  background-color: transparent;
}

.nav__links a:hover::after {
  width: 50%;
}

.nav__btns {
  display: none;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 15px rgba(3, 151, 153, 0.3);
  position: relative;
  overflow: hidden;
}

.nav__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s ease;
}

.nav__cta:hover::before {
  left: 100%;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(3, 151, 153, 0.45);
}

/* ========== HEADER / HERO ========== */
header {
  margin-top: 5.5rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

header::before {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/assets/Uzbekistan7.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  z-index: -2;
}

header::after {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(8,9,13,0.97) 0%, rgba(8,9,13,0.8) 35%, rgba(8,9,13,0.3) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.header__container {
  display: grid;
}

.header__content {
  padding: 5rem 1.5rem;
}

.header__content p {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
}

.header__content h1 {
  margin-bottom: 2.5rem;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero__book {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 60px;
  box-shadow: 0 6px 30px rgba(3, 151, 153, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.hero__book i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.hero__book::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s ease;
}

.hero__book:hover::before {
  left: 100%;
}

.hero__book:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(3, 151, 153, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero__book:hover i {
  transform: translateX(3px);
}

.hero__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}

.hero__play::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(3, 151, 153, 0.3);
  transition: var(--transition);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

.hero__play:hover {
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(3, 151, 153, 0.4);
}

.hero__play:hover::after {
  border-color: transparent;
}

.header__image {
  display: none;
}

/* ========== BACKGROUND (removed heavy blur) ========== */
.background {
  display: none;
}

/* ========== TOUR CARDS ========== */
.tour-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.tour-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  border: 1px solid var(--border-subtle);
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8, 9, 13, 0.85) 100%);
  z-index: 1;
  transition: var(--transition-slow);
}

.tour-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(3, 151, 153, 0.2), 0 0 0 1px var(--primary-color);
  border-color: transparent;
}

.tour-card:hover::before {
  background: linear-gradient(180deg, transparent 10%, rgba(3, 151, 153, 0.65) 100%);
}

.tour-title {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 1.35rem;
  z-index: 2;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Tour card background images */
.tour-card:nth-child(1) { background: url('/assets/madaniy_tur.jpg') center/cover no-repeat; }
.tour-card:nth-child(2) { background: url('/assets/ziyorat.jpg') center/cover no-repeat; }
.tour-card:nth-child(3) { background: url('/assets/eko_tur.jpg') center/cover no-repeat; }
.tour-card:nth-child(4) { background: url('/assets/tibbiy_tur.png') center/cover no-repeat; }
.tour-card:nth-child(5) { background: url('/assets/ichki turizm.jpg') center/cover no-repeat; }
.tour-card:nth-child(6) { background: url('/assets/visa_pass.png') center/cover no-repeat; }

/* ========== TOUR DETAILS ========== */
.tour-details {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 1.5rem;
  overflow: hidden;
  display: none;
  gap: 1.5rem;
  padding: 2rem;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
}

.tour-details.show {
  display: flex;
  animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-details img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.tour-details .details-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 400px;
  overflow-y: auto;
}

.details-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.details-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  white-space: pre-line;
}

/* ========== SHOWCASE ========== */
.showcase__container {
  display: grid;
  gap: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 40%, rgba(3, 151, 153, 0.06) 70%, rgba(200, 165, 90, 0.04) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.showcase__container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3, 151, 153, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.showcase__image img {
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(3, 151, 153, 0.1);
}

.showcase__content h4 {
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.showcase__content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.showcase__content .btn {
  width: fit-content;
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
}

.showcase__content .btn:hover {
  box-shadow: 0 8px 35px rgba(3, 151, 153, 0.4);
}

.showcase__btn {
  display: flex;
}

/* ========== JOURNEY / FACTS ========== */
.journey__grid {
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg {
  padding: 2rem;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border-top-right-radius: var(--radius-md);
  border-top-left-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-top-right-radius: var(--radius-md);
  border-top-left-radius: var(--radius-md);
  transition: var(--transition);
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 7px 9px;
  font-size: 1rem;
  color: var(--bg-primary);
  border: 2px solid var(--bg-primary);
  border-radius: 100%;
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-primary);
}

.journey__card__content p {
  color: rgba(8, 9, 13, 0.8);
}

/* ========== MAP ========== */
.map {
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width);
  padding-inline: 1.5rem;
}

.map #map {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

/* ========== TESTIMONIALS / CLIENTS ========== */
.client__container {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-radius: var(--radius-xl);
  max-width: 100%;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.client__container::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 151, 153, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.client__container .section__header {
  background: none;
  color: var(--text-primary);
}

.client__container .section__description {
  background: none;
  color: var(--text-secondary);
  padding: 0;
}

.swiper {
  margin-top: 3rem;
  width: 100%;
}

.swiper-slide {
  min-width: 280px;
  max-width: 100%;
}

.client__card {
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), rgba(200, 165, 90, 0.3), rgba(3, 151, 153, 0.3));
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.client__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(3, 151, 153, 0.2);
}

.client__content {
  padding: 1.75rem;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border-radius: calc(var(--radius-lg) - 2px);
}

.client__rating {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.client__rating span {
  margin-right: 2px;
}

.client__content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
}

.client__details {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client__details img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 165, 90, 0.4);
}

.client__details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.client__details h5 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(8,9,13,1) 100%);
  color: var(--text-primary);
  margin-top: 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--gold), var(--primary-color), transparent);
  opacity: 0.3;
}

.footer__container {
  display: grid;
  gap: 3rem 2rem;
}

.footer__col .footer__logo .logo {
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer__col p {
  max-width: 320px;
  margin-block: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.15rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  transition: var(--transition);
}

.footer__socials a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer__links {
  display: grid;
  gap: 0.85rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

.footer__links a span {
  font-size: 1.1rem;
}

.footer__col form {
  display: grid;
  gap: 0.75rem;
}

.footer__col input {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer__col input::placeholder {
  color: var(--text-muted);
}

.footer__col input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(3, 151, 153, 0.06);
  box-shadow: 0 0 0 3px rgba(3, 151, 153, 0.1);
}

.footer__col .btn {
  border-radius: var(--radius-sm);
}

.footer__bar {
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

/* ========== LANGUAGE SWITCHER ========== */
#langSwitcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(12, 14, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  user-select: none;
}

#langSwitcher button {
  width: 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--text-secondary);
}

#langSwitcher button:hover {
  background: var(--primary-color-light);
  color: var(--primary-color);
}

/* ========== DESTINATION CARDS (tour.html) ========== */
.destination__container :is(.section__header, .section__description) {
  text-align: center;
}

.destination__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.destination__card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.destination__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(3, 151, 153, 0.15), 0 0 0 1px rgba(3, 151, 153, 0.3);
  border-color: transparent;
}

.destination__card img {
  border-radius: var(--radius-md);
}

.hotelFilter_card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.hotelFilter_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(3, 151, 153, 0.15), 0 0 0 1px rgba(3, 151, 153, 0.3);
  border-color: transparent;
}

.hotelFilter_card img {
  border-radius: var(--radius-md);
}

.destination__card__details {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destination__card__details h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.destination__card__details div p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.destination__rating {
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.destination__card:hover .destination__rating {
  box-shadow: 0 4px 20px rgba(3, 151, 153, 0.35);
}

.destination__card p {
  color: var(--text-muted);
}

/* ========== ABOUT PAGE ========== */
.text_about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  line-height: 1.85;
}

.text_about span {
  font-weight: 800;
  color: var(--primary-color);
}

.yt_video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.yt_video iframe {
  width: 100%;
  max-width: 1088px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

/* ========== CONTACT PAGE ========== */
.st_contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 1.5rem;
}

.container {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 640px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold), var(--primary-color));
}

.container h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  color: var(--text-primary);
  font-size: 1.75rem;
}

.container input,
.container textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.container input::placeholder,
.container textarea::placeholder {
  color: var(--text-muted);
}

.container input:focus,
.container textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(3, 151, 153, 0.12);
  background: rgba(3, 151, 153, 0.04);
}

.container button[type="submit"],
.container button.btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: var(--bg-primary);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.container button[type="submit"]::before,
.container button.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.6s ease;
}

.container button[type="submit"]:hover::before,
.container button.btn:hover::before {
  left: 100%;
}

.container button[type="submit"]:hover,
.container button.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.success {
  margin-top: 0.75rem;
  text-align: center;
  color: #22c55e;
  font-weight: 500;
}

.error {
  margin-top: 0.75rem;
  text-align: center;
  color: #ef4444;
  font-weight: 500;
}

/* ========== FILTER TABS (tour.html / hotel.html) ========== */
.filter-tabs {
  margin-bottom: 2rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border-radius: var(--radius-md);
  padding: 6px;
  overflow-x: auto;
  white-space: nowrap;
  border: 1px solid var(--border-subtle);
}

.filter-btn {
  background: transparent;
  margin: 0;
  border: none;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.filter-btn:hover {
  color: var(--primary-color);
  background: var(--bg-elevated);
}

.filter-btn.active {
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: var(--shadow-glow);
}

.tab-indicator {
  display: none;
}

.hotelFilter_tabs {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hotelFilter_tab {
  padding: 10px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--bg-card);
  color: var(--text-secondary);
}

.hotelFilter_tab:hover,
.hotelFilter_tab.hotelFilter_active {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* ========== BANNER / STATS ========== */
.banner__container {
  display: grid;
  gap: 1.5rem;
}

.banner__card {
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.banner__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold));
  border-radius: 0 0 3px 3px;
}

.banner__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(3, 151, 153, 0.15);
  border-color: rgba(3, 151, 153, 0.3);
}

.banner__card h4 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner__card p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ========== DISCOVER / SERVICES ========== */
.discover__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.discover__card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.discover__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(3, 151, 153, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.discover__card:hover {
  transform: translateY(-6px);
  border-color: rgba(3, 151, 153, 0.3);
  box-shadow: 0 12px 40px rgba(3, 151, 153, 0.12);
}

.discover__card:hover::before {
  opacity: 1;
}

.discover__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color-light), rgba(200, 165, 90, 0.08));
  border-radius: var(--radius-md);
  position: relative;
}

.discover__card h4 {
  max-width: 200px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.discover__card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ========== SLIDER ========== */
.slider {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 2rem;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.info {
  background: rgba(8, 9, 13, 0.8);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 80%;
  text-align: center;
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xl);
}

.info h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ========== RESPONSIVE: TABLET ========== */
@media (min-width: 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .text_about {
    padding: 2rem 4rem;
    font-size: 1rem;
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}

/* ========== RESPONSIVE: DESKTOP ========== */
@media (min-width: 768px) {
  nav {
    position: fixed;
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    gap: 1rem;
  }

  .nav__header {
    flex: 0 0 auto;
    padding: 0.35rem 0;
    background-color: transparent;
    width: auto;
  }

  .nav__logo .logo img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: auto;
    flex: 1;
    padding: 0;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
    transform: none !important;
    gap: 0;
  }

  .nav__links a {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0.5rem 0.7rem;
  }

  .nav__links a:hover {
    color: var(--text-primary);
    background-color: transparent;
  }

  .nav__links li:last-child {
    display: none;
  }

  .nav__btns {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  header {
    margin-top: 0;
    padding-top: 5.5rem;
  }

  .header__container {
    grid-template-columns:
      minmax(0, 1fr)
      repeat(5, minmax(0, calc(var(--max-width) / 5)))
      minmax(0, 1fr);
  }

  .header__content {
    grid-column: 2/4;
    padding-block: 7rem;
  }

  .header__content :is(p, h1) {
    text-align: left;
  }

  .header__content h1 {
    font-size: 3.75rem;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__image {
    display: block;
    grid-column: 4/8;
    position: relative;
    isolation: isolate;
    height: 100%;
  }

  .header__image img {
    position: absolute;
    top: 2rem;
    left: 0;
    height: 100%;
    width: unset;
  }

  .tour-container {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 4rem;
  }

  .tour-card {
    height: 320px;
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase__container {
    grid-template-columns: 1fr 2fr;
    padding: 4rem 3rem;
  }

  .banner__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }

  .info h1 {
    font-size: 2.5rem;
  }
}

/* ========== RESPONSIVE: LARGE DESKTOP ========== */
@media (min-width: 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .header__content h1 {
    font-size: 4.25rem;
    line-height: 1.08;
  }

  .destination__grid {
    gap: 2rem;
  }

  .tour-container {
    gap: 2rem;
  }

  .tour-card {
    height: 350px;
  }

  .nav__links a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ========== RESPONSIVE: TABLET / MID ========== */
@media (max-width: 1024px) {
  .filter-btn,
  .star-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .section__container {
    padding: 3.5rem 1rem;
  }

  .section__header {
    font-size: 1.85rem;
  }

  .section__description {
    font-size: 0.95rem;
  }

  .header__content {
    padding: 3rem 1rem;
  }

  .header__content h1 {
    font-size: 2.5rem;
  }

  .hero__book {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
  }

  .hero__play {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .tour-details {
    flex-direction: column;
    align-items: center;
  }

  .tour-details img {
    width: 100%;
    height: auto;
  }

  .tour-details .details-text {
    align-items: center;
    text-align: center;
  }

  .showcase__container {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .showcase__image {
    order: -1;
  }

  .showcase__image img {
    max-width: 300px;
  }

  .showcase__content h4 {
    font-size: 2rem;
  }

  .showcase__btn {
    justify-content: center;
  }

  .client__container {
    padding: 3rem 1rem;
  }

  .swiper-slide {
    min-width: 260px;
  }

  .st_contact {
    margin-top: 5rem;
    margin-bottom: 3rem;
  }

  .container {
    padding: 1.5rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__col:last-child {
    grid-area: unset;
  }

  .tab-buttons {
    gap: 4px;
    padding: 4px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner__card h4 {
    font-size: 2.5rem;
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info {
    max-width: 95%;
    padding: 1.5rem;
  }

  .info h1 {
    font-size: 1.75rem;
  }

  .text_about {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }

  .yt_video {
    padding: 1rem;
  }

  #langSwitcher {
    bottom: 16px;
    right: 16px;
  }
}

/* ========== RESPONSIVE: SMALL MOBILE ========== */
@media (max-width: 480px) {
  .section__container {
    padding: 2.5rem 0.75rem;
  }

  .section__header {
    font-size: 1.5rem;
  }

  .section__description {
    font-size: 0.88rem;
  }

  header {
    padding-inline: 0.5rem;
  }

  .header__content {
    padding: 2.5rem 1rem;
  }

  .header__content p {
    font-size: 0.7rem;
  }

  .header__content h1 {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .header__btns {
    flex-direction: row;
    gap: 1rem;
  }

  .hero__book {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
  }

  .hero__play {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .tour-container {
    grid-template-columns: 1fr !important;
    padding: 1.5rem 0.75rem;
  }

  .tour-card {
    height: 200px;
  }

  .tour-title {
    font-size: 1.1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .tour-details {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .tour-details img {
    width: 100%;
    height: auto;
  }

  .tour-details .details-text {
    align-items: center;
    text-align: center;
  }

  .details-title {
    font-size: 1.2rem;
  }

  .details-description {
    font-size: 0.88rem;
  }

  .showcase__container {
    padding: 2rem 1rem;
  }

  .showcase__content h4 {
    font-size: 1.6rem;
  }

  .showcase__content p {
    font-size: 0.88rem;
  }

  .swiper-slide {
    min-width: 240px;
  }

  .client__content {
    padding: 1.25rem;
  }

  .client__content p {
    font-size: 0.88rem;
  }

  .map {
    padding-inline: 0.75rem;
  }

  .st_contact {
    margin-top: 4.5rem;
    margin-bottom: 2rem;
    padding: 0 0.75rem;
  }

  .container {
    padding: 1.25rem;
  }

  .container h2 {
    font-size: 1.25rem;
  }

  .banner__container {
    grid-template-columns: 1fr;
  }

  .banner__card h4 {
    font-size: 2rem;
  }

  .discover__grid {
    grid-template-columns: 1fr;
  }

  .journey__grid {
    grid-template-columns: 1fr;
  }

  .destination__grid {
    grid-template-columns: 1fr !important;
  }

  .nav__logo .logo img {
    width: 44px;
    height: 44px;
  }

  .info h1 {
    font-size: 1.25rem;
  }

  .info p {
    font-size: 0.85rem;
  }

  .footer__col .footer__logo .logo {
    font-size: 1.2rem;
  }

  .footer__bar {
    font-size: 0.75rem;
    padding: 1rem;
  }

  #langSwitcher {
    bottom: 12px;
    right: 12px;
  }

  #langSwitcher button {
    width: 34px;
    height: 30px;
    font-size: 0.7rem;
  }
}

/* ========== ACCESSIBILITY ========== */
.filter-btn:focus-visible,
.star-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scrollbar - luxury dark */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--bg-elevated));
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Selection color */
::selection {
  background: rgba(3, 151, 153, 0.3);
  color: var(--text-primary);
}
