:root {
  --bg: #07111f;
  --dark: #0c1830;
  --text: #f5f7fb;
  --muted: #b8c5d8;
  --primary: #2ed3c6;
  --secondary: #63a4ff;
  --accent: #ffd166;
  --border: rgba(255,255,255,0.14);
  --card: rgba(255,255,255,0.08);
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body.day-theme {
  --bg: #f6fbff;
  --dark: #ffffff;
  --text: #07111f;
  --muted: #41546b;
  --primary: #007f8f;
  --secondary: #3b82f6;
  --accent: #f59e0b;
  --border: rgba(7,17,31,0.14);
  --card: rgba(255,255,255,0.75);
  --shadow: 0 24px 70px rgba(7,17,31,0.16);

  background:
    radial-gradient(circle at top left, rgba(255,209,102,0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(59,130,246,0.18), transparent 30%),
    linear-gradient(180deg, #f7fbff, #eaf7ff);
}

body.day-theme .site-header {
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(7,17,31,0.10);
}

body.day-theme .nav-menu a {
  color: #26384f;
}

body.day-theme .btn.secondary,
body.day-theme .business-tab,
body.day-theme .news-card,
body.day-theme .info-card,
body.day-theme .animated-info-card,
body.day-theme .quote-box {
  background: rgba(255,255,255,0.7);
  border-color: rgba(7,17,31,0.12);
}

body.day-theme .video-overlay {
  background: linear-gradient(180deg, transparent 45%, rgba(255,255,255,0.28));
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(46,211,198,0.13), transparent 25%),
    radial-gradient(circle at bottom right, rgba(99,164,255,0.15), transparent 28%),
    linear-gradient(180deg, #06101d, #081525);
  color: var(--text);
  overflow-x: hidden;
}

img,
video {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button { font-family: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
}

/* HEADER */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px; /* kënde të rrumbullakosura */
  border: 1px solid var(--border);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 12, 22, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 22px;
}

.nav-menu a {
  font-weight: 600;
  color: #dce8f8;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
}

.logo-vlora {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px; /* kënde të rrumbullakosura */
  border: 1px solid var(--border);	
}

/* GENERAL */
.section {
  padding: 105px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.section-title p,
.hero-content p,
.info-card p,
.news-card p,
.business-card p,
.animated-info-card p,
.quote-content p {
  color: var(--muted);
  line-height: 1.7;
}

/* HERO */
.hero {
  padding: 95px 0 85px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.96;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), #32f0c5);
  color: #031015;
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}

.hero-video-card {
  position: relative;
  height: 640px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-video-card video {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,8,15,0.72));
}

.hero-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(5, 15, 25, 0.82);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
}

/* BIZNESET */
.business-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.business-tab {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.business-tab.active,
.business-tab:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.business-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 14px;
  min-height: 220px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  overflow: hidden;
}

.business-card:hover {
  transform: translateY(-8px);
}

.business-img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.business-card h3 {
  margin: 8px 0 8px;
  font-size: 1rem;
}

.business-card p {
  font-size: 0.9rem;
}

/* GRIDS */
.map-grid,
.travel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

/* HARTA QARKU VLORE */

.info-card {
  max-height: 640px;
  overflow: hidden;
}

.info-card-scroll {
  max-height: 465px;
  overflow-y: auto;
  padding-right: 8px;
}

.info-card-scroll::-webkit-scrollbar {
  width: 6px;
}

.info-card-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

.map-labels {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.map-label-item {
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.map-label-btn {
  width: 100%;
  padding: 15px 16px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-label-btn span {
  color: var(--primary);
  font-size: 1.3rem;
  transition: 0.3s;
}

.map-label-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.map-label-content p {
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.6;
}

.map-label-item.active .map-label-content {
  max-height: 180px;
}

.map-label-item.active .map-label-btn span {
  transform: rotate(180deg);
}
.vlore-real-map {
  position: relative;
  background: #eef4f7;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  min-height: 640px;
}

.vlore-real-map img {
  width: 100%;
  height: 640px;
  object-fit: contain;
  background: #eef4f7;
}

.map-click-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 640px;
  pointer-events: none;
}

.click-zone {
  fill: rgba(46, 211, 198, 0.04);
  stroke: rgba(46, 211, 198, 0.35);
  stroke-width: 4;
  cursor: pointer;
  transition: 0.3s ease;
  pointer-events: all;
}

.click-zone:hover,
.click-zone.active {
  fill: rgba(46, 211, 198, 0.28);
  stroke: #07111f;
  stroke-width: 5;
}

/* INFO CARD */
.info-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 600px;
  max-height: 650px;
}

.info-card span {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
}

.info-card h3 {
  font-size: 2rem;
  margin: 12px 0 14px;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-card li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}

.destinations-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.destinations-table {
  max-width: 600px;
  width: 100%;
}

.destination-photo-box {
  width: 360px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  display: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.destination-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SLIDER */
.slider {
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}

.news-card {
  min-width: calc(33.333% - 14px);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.news-card img {
  height: 230px;
  object-fit: cover;
}

.news-card div {
  padding: 22px;
}

.news-card span {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.news-card h3 {
  margin: 10px 0;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
  font-size: 0.85rem;
  font-weight: 800;
  transition: 0.3s;
}

.read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(46, 211, 198, 0.25);
}

.slider-arrow {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
}

/* HARTA SHQIPERISE */
.albania-map-box {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #eaf1f5);
  border-radius: 34px;
  overflow: hidden;
  min-height: 760px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.albania-map-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  pointer-events: none;
}

.albania-map-box img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  filter: none;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.travel-result {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #031015;
  font-weight: 900;
}

/* SHPREHJE */
.quote-section {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5,12,22,0.65), rgba(5,12,22,0.8)),
    url("Vlore.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.quote-content {
  max-width: 760px;
}

.quote-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 20px;
}

.quote-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* ANIMACIONE */
.info-animation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
  padding: 70px 40px;
  background: #9edfe3;
}

.animated-info-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.animated-info-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -50px;
  right: -50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.3;
  transition: 0.4s;
}

.animated-info-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.animated-info-card:hover::before {
  transform: scale(2.4);
  opacity: 0.18;
}

.icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.animated-info-card h3 {
  margin-bottom: 10px;
}

/* ===== SECTION LAST - VLORA INFO ANIMATION ===== */

.vlora-info-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 35px;
  align-items: end;
}

.vlora-info-card {
  text-align: center;
  cursor: pointer;
}

.vlora-info-icon {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 25px;
  animation: floatVlora 3s ease-in-out infinite;
}

.vlora-info-card:nth-child(2) .vlora-info-icon {
  animation-delay: 0.2s;
}

.vlora-info-card:nth-child(3) .vlora-info-icon {
  animation-delay: 0.4s;
}

.vlora-info-card:nth-child(4) .vlora-info-icon {
  animation-delay: 0.6s;
}

.vlora-info-card:nth-child(5) .vlora-info-icon {
  animation-delay: 0.8s;
}

.vlora-info-card:nth-child(6) .vlora-info-icon {
  animation-delay: 1s;
}

.vlora-info-card:nth-child(7) .vlora-info-icon {
  animation-delay: 1.2s;
}

.vlora-info-title {
  background: var(--primary);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vlora-info-card:hover .vlora-info-icon {
  transform: scale(1.08);
}

.vlora-info-card:hover .vlora-info-title {
  transform: translateY(-4px);
}

@keyframes floatVlora {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .vlora-info-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .vlora-info-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .vlora-info-icon {
    font-size: 70px;
  }
}

@media (max-width: 480px) {
  .vlora-info-container {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 105px 0;
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-arrow {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
}

.faq-item:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

@media (max-width: 560px) {
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 20px 30px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  transition: 0.3s;
}

.social-icon:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--muted);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .map-grid,
  .travel-grid {
    grid-template-columns: 1fr;
  }

  .business-grid,
  .info-animation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-video-card {
    height: 500px;
  }

  .news-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 78px;
    right: 16px;
    width: calc(100% - 32px);
    flex-direction: column;
    background: rgba(7,17,31,0.97);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
  }

  .nav-menu.open {
    display: flex;
  }

  .business-grid,
  .info-animation-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-width: 100%;
  }

  .vlore-real-map {
    min-height: 460px;
  }

  .vlore-real-map img,
  .map-click-layer {
    height: 460px;
  }

  .albania-map-box {
    min-height: 620px;
    padding: 14px;
  }

  .albania-map-box img {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .hero-video-card {
    height: 390px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .click-zone {
    stroke-width: 7;
  }

  .albania-map-box {
    min-height: 520px;
    padding: 10px;
  }

  .albania-map-box img {
    max-width: 100%;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px; /* distanca e vogël mes logos dhe tekstit */
}

.site-title {
  margin: 0;
  font-size: 20px; /* rregullo sipas dëshirës */
}

.destinations-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.destination-photo-box {
  width: 360px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  display: none;
}

.destination-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.distance-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.distance-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.city-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.city-btn:hover,
.city-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.city-result {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}

.city-result h3 {
  margin: 0 0 10px;
}

/* ========================= */
/* 🌅 DAY THEME COLOR FIXES */
/* ========================= */


/* 🔵 SHERBIMET (business-tab) */
body.day-theme .business-tab {
  background: #007f8f !important;
  color: #ffffff !important;
  border-color: #007f8f !important;
}

body.day-theme .business-tab:hover {
  background: #005f6b !important;
  color: #ffffff !important;
}


/* 🔵 LAJMET (slider-arrow) */
body.day-theme .slider-arrow {
  background: #007f8f !important;
  color: #ffffff !important;
  border-color: #007f8f !important;
}

body.day-theme .slider-arrow:hover {
  background: #005f6b !important;
  color: #ffffff !important;
}


/* 🔵 SHPREHJA (quote-section) */
body.day-theme .quote-section h2,
body.day-theme .quote-section p {
  color: #07111f !important;
}

body.day-theme .quote-section h2 {
  background: linear-gradient(90deg, #38bdf8, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.day-theme .quote-section p {
  color: #f0f9ff !important;
}

body.day-theme .quote-section h2,
body.day-theme .quote-section p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.business-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.business-tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  overflow-x: auto !important;
  scroll-behavior: smooth;
  white-space: nowrap;
  flex: 1;
  max-width: 100%;
  scrollbar-width: none;
}

.business-tabs::-webkit-scrollbar {
  display: none;
}

.business-tab {
  flex: 0 0 auto !important;
  white-space: nowrap;
}

.business-scroll-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dita */
body.day-theme .business-scroll-btn {
  background: #007f8f !important;
  color: #ffffff !important;
  border-color: #007f8f !important;
}

body.day-theme .business-scroll-btn:hover {
  background: #005f6b !important;
}

/* Nata */
body:not(.day-theme) .business-scroll-btn {
  background: var(--card) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

body:not(.day-theme) .business-scroll-btn:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
}

.business-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.business-btn {
  flex: 1;
  min-height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: 0.3s;
}

.business-btn:hover {
  transform: translateY(-3px);
}

.business-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
}

.business-btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text);
}

body.day-theme .business-btn-secondary {
  background: rgba(255,255,255,0.7);
  border-color: rgba(7,17,31,0.12);
  color: var(--text);
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-switcher button {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.language-switcher button:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
  transform: translateY(-2px);
}

body.day-theme .language-switcher button {
  background: rgba(255,255,255,0.7);
  border-color: rgba(7,17,31,0.12);
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 5000;
}

.lang-btn {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #031015;
}