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

html {
  scroll-behavior: smooth;
  font-family: system-ui, Arial, sans-serif;
}

body {
  background: #f0f7ff;
  color: #0d2d5e;
  line-height: 1.7;
  font-size: 1rem;
}

h1, h2, h3 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0f172a;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 50px 0 20px;
  position: relative;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
}

p {
  font-size: 1.05rem;
  color: #1e293b;
  margin-bottom: 18px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 25px;
}

ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #1e293b;
}

dt {
  color: #0f172a;
  font-weight: 600;
}

dd {
  color: #1e293b;
}

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

section {
  padding: 60px 20px;
}

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

section:not(.hero):not(.glass-section):not(.weather-section):not(.converter-section) {
  background: #ffffff;
}

section:nth-child(even):not(.hero):not(.glass-section):not(.weather-section):not(.converter-section) {
  background: #f8fafc;
}

.container-custom {
  width: min(1100px, 90%);
  margin: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  transition: width 0.1s ease-out;
}

.page-transition {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.page-transition.loaded {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
  background-color: #0a2540;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 30, 60, 0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroFadeIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 22px;
  text-align: left;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: unset;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 198, 255, 0.15);
}
.hero h1::after {
  display: none;
}
.hero h1 span {
  color: #00c6ff;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  max-width: 520px;
  line-height: 1.65;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.06) 0%, transparent 50%, rgba(0, 114, 255, 0.04) 100%);
  z-index: 1;
  pointer-events: none;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: linear-gradient(135deg, #e0f7ff, #f8fbff);
  position: relative;
  overflow: hidden;
}
.about-hero__content {
  max-width: 600px;
}
.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: left;
  width: auto;
  margin-bottom: 20px;
}
.about-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #21487a;
}
.about-hero::before, .about-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.about-hero::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.2), transparent 70%);
  top: -120px;
  right: -120px;
}
.about-hero::after {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.2), transparent 70%);
  bottom: -120px;
  left: -120px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  text-align: center;
  flex-wrap: wrap;
}
.stats .stat h2 {
  font-size: 3rem;
  color: #fff;
  margin: 0 0 8px;
}
.stats .stat h2::after {
  display: none;
}
.stats .stat p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.glass-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0072ff, #00c6ff, #0047ab) !important;
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.features-section {
  background: linear-gradient(180deg, #f4f9fc, #e6f4ff);
  padding: 80px 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  gap: 40px;
  margin: 40px 0;
}

.media-center {
  width: min(900px, 90%);
  margin: 40px auto;
  display: flex;
  justify-content: center;
}
.media-center video,
.media-center iframe {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 87, 204, 0.12);
  border: none;
}

.image-container {
  position: relative;
  margin: 20px 0;
}
.image-container .image-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
}

#info-flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px 0;
  flex: 1;
  min-width: 240px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #00c6ff;
}
#info-flex p {
  color: #334155;
}

.back-to-top {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #0057cc;
  font-weight: 600;
  transition: color 0.2s;
}
.back-to-top:hover {
  color: #00a8e8;
}

.section-card {
  padding: 40px 0;
}

.expense-container {
  overflow-x: auto;
}

.footer {
  background: linear-gradient(135deg, #071428, #0d2040);
  color: #fff;
  padding: 50px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.footer-container h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}
.footer-container p {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 15px;
}
.footer-links a {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.footer-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  transition: width 0.3s;
}
.footer-links a:hover {
  color: #00a8e8;
}
.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .media-center video,
  .media-center iframe {
    height: 260px;
  }
  .stats {
    gap: 30px;
  }
  #info-flex {
    flex-direction: column;
  }
}
.weather-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #0a2540, #0f3460);
}

.weather-widget {
  width: min(700px, 95%);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px 40px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.weather-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.weather-header h3 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -1px;
}
.weather-header h3::after {
  display: none;
}
.weather-header p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 1rem;
  text-transform: capitalize;
}

.weather-icon {
  font-size: 4rem;
  line-height: 1;
  animation: floatCard 4s ease-in-out infinite;
}

.weather-details {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.weather-stat {
  flex: 1;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}
.weather-stat:hover {
  background: rgba(255, 255, 255, 0.18);
}
.weather-stat span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
.weather-stat p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.weather-stat small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.weather-location {
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .weather-widget {
    padding: 24px 20px;
  }
  .weather-header h3 {
    font-size: 2.2rem;
  }
  .weather-icon {
    font-size: 3rem;
  }
  .weather-details {
    gap: 10px;
  }
}
.navbar {
  background: linear-gradient(135deg, #1e1e1e, #111827) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
}
.navbar:hover {
  box-shadow: 0 12px 30px rgba(0, 114, 255, 0.25);
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  transition: width 0.3s ease;
}
.navbar .nav-link:hover {
  color: #00a8e8 !important;
}
.navbar .nav-link:hover::after {
  width: 100%;
}
.navbar .nav-link.active {
  color: #00a8e8 !important;
}
.navbar .nav-link.active::after {
  width: 100%;
}

.about-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.about-nav .logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f172a;
  letter-spacing: 0.5px;
}
.about-nav .nav-links {
  display: flex;
  gap: 10px;
}
.about-nav .nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.3s ease;
}
.about-nav .nav-links a:hover {
  color: #0057cc;
  background: rgba(0, 114, 255, 0.07);
}
.about-nav .nav-links a.active {
  color: #0057cc;
  background: rgba(0, 114, 255, 0.1);
}
.about-nav .nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 8%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  display: none;
  font-size: 22px;
  border: none;
  background: transparent;
  color: #1e293b;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.menu-toggle:hover {
  transform: rotate(90deg);
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 16px;
  color: #fff;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .about-nav .nav-links:not(.open) {
    display: none;
  }
}
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.lang-btn.active {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.4);
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  color: #fff !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 114, 255, 0.45);
}
.btn:active {
  transform: scale(0.96);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}
.btn-outline:hover {
  background: #fff;
  color: #0057cc !important;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 114, 255, 0.4);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  max-width: 700px;
  margin: auto;
}
.glass-card h2 {
  color: #fff;
}
.glass-card p {
  color: rgba(255, 255, 255, 0.9);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.feature-box {
  animation: floatCard 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.feature-box span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}
.feature-box p {
  color: #1e293b;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.feature-box:nth-child(2) {
  animation-delay: 1s;
}
.feature-box:nth-child(3) {
  animation-delay: 2s;
}
.feature-box:nth-child(4) {
  animation-delay: 3s;
}
.feature-box:hover {
  transform: translateY(-10px) scale(1.05);
  animation-play-state: paused;
}

.activity-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.activity-filter button {
  border: none;
  padding: 9px 22px;
  border-radius: 30px;
  background: #e2e8f0;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.activity-filter button:hover, .activity-filter button.active {
  background: #0057cc;
  color: #fff;
}

.activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 20px 0;
}
.activities .card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 87, 204, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: none;
}
.activities .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.activities .card h4 {
  padding: 15px;
  text-align: center;
  font-size: 1rem;
  color: #1e293b;
}
.activities .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 87, 204, 0.18);
}
.activities .card:hover img {
  transform: scale(1.08);
}

.booking-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.booking-container {
  width: min(900px, 95%);
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.booking-container h1 {
  text-align: center;
  margin-bottom: 50px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dde1e7;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}
.form-group input:focus {
  border-color: #0057cc;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.15);
  outline: none;
  background: #fff;
}
.form-group input:disabled {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}

.full-width {
  grid-column: span 2;
}

.option-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding: 4px 0;
}
.option-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.price-display {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid #0057cc;
}
.price-display p {
  margin: 0;
  font-size: 1.1rem;
  color: #1e293b;
}
.price-display small {
  color: #64748b;
  font-size: 0.85rem;
}
.price-display strong {
  color: #0057cc;
  font-size: 1.3rem;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup.show {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 87, 204, 0.18);
}
.popup-content h3 {
  color: #0f172a;
  margin-bottom: 12px;
}
.popup-content p {
  color: #64748b;
  margin-bottom: 24px;
}

.expense-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 87, 204, 0.12);
}
.expense-table thead th {
  background: linear-gradient(135deg, #00a8e8, #0057cc);
  color: #fff;
  padding: 18px;
  text-align: left;
  font-weight: 600;
}
.expense-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid #f0f4f8;
  color: #334155;
}
.expense-table tbody tr:last-child td {
  border-bottom: none;
}
.expense-table tbody tr:hover td {
  background: #f5fbff;
  transition: background 0.2s ease;
}

.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.6), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-glow.active {
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.5), transparent 70%);
}

@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .booking-container {
    padding: 32px 20px;
  }
}
#chatOpenBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00c6ff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.chat-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  margin: 1rem;
  overflow: hidden;
}

.chat-header {
  background: #00c6ff;
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  padding: 1.25rem;
}
.chat-body label {
  font-size: 13px;
  color: #666;
  display: block;
  margin-bottom: 6px;
}
.chat-body textarea {
  width: 100%;
  resize: none;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.chat-send {
  width: 100%;
  margin-top: 12px;
  background: #00c6ff;
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.chat-success {
  background: #e6f9f0;
  color: #1a7a4a;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.card-body {
  padding: 16px;
  text-align: center;
}
.card-body h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #1e293b;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}

.star {
  font-size: 1.4rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
}
.star.filled, .star:hover {
  color: #f59e0b;
}
.star:hover {
  transform: scale(1.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(6px);
}
.lightbox.show {
  display: flex;
  animation: lightboxIn 0.3s ease both;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: lightboxImgIn 0.3s ease both;
}

@keyframes lightboxImgIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
  font-size: 1rem;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 94vw);
  background: #1e293b;
  color: #e2e8f0;
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 9990;
  transition: bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-banner.show {
  bottom: 24px;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.cookie-content span {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cookie-content p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-actions .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

input[type=date] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde1e7;
  font-size: 1rem;
  background: #f8fafc;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.25s ease;
}
input[type=date]:focus {
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.12);
  outline: none;
  background: #fff;
}
input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
input[type=date][readonly] {
  background: #f1f5f9;
  color: #64748b;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
input[type=date] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde1e7;
  font-size: 1rem;
  background: #f8fafc;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.25s ease;
}
input[type=date]:focus {
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.12);
  outline: none;
  background: #fff;
}
input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
input[type=date][readonly] {
  background: #f1f5f9;
  color: #64748b;
  cursor: not-allowed;
}

.packages-section {
  padding: 80px 20px;
  text-align: center;
}

.packages-subtitle {
  color: #64748b;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}
.package-card.featured {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0, 114, 255, 0.2);
  border: 2px solid #0072ff;
}
.package-card.featured:hover {
  transform: scale(1.04) translateY(-10px);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-header {
  padding: 36px 28px 24px;
  text-align: center;
  color: #fff;
}
.package-header.budget {
  background: linear-gradient(135deg, #10b981, #059669);
}
.package-header.standard {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}
.package-header.luxury {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.package-header h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 12px 0 16px;
}
.package-header h3::after {
  display: none;
}

.package-icon {
  font-size: 2.8rem;
  display: block;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.price-per {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.package-features {
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  flex: 1;
  text-align: left;
}
.package-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.package-features li:last-child {
  border-bottom: none;
}

.package-btn {
  margin: 0 28px 28px;
  text-align: center;
  display: block;
}

.converter-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #f4f9fc, #e6f4ff);
}

.converter-widget {
  max-width: 680px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.converter-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.converter-group {
  flex: 1;
  min-width: 160px;
  text-align: left;
}
.converter-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
  margin-bottom: 8px;
}
.converter-group input,
.converter-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde1e7;
  font-size: 1rem;
  background: #f8fafc;
  color: #1e293b;
  transition: all 0.25s ease;
}
.converter-group input:focus,
.converter-group select:focus {
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.12);
  outline: none;
  background: #fff;
}

.converter-arrow {
  font-size: 1.6rem;
  color: #0072ff;
  padding-bottom: 14px;
  flex-shrink: 0;
}

.converter-result {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid #0072ff;
  margin-bottom: 16px;
}
.converter-result p {
  font-size: 2rem;
  font-weight: 800;
  color: #0072ff;
  margin: 0 0 6px;
}
.converter-result small {
  color: #64748b;
  font-size: 0.85rem;
}

.converter-note {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

.back-to-top-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
  pointer-events: none;
}
.back-to-top-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.6);
  transform: translateY(-4px);
}
.back-to-top-btn:active {
  transform: scale(0.95);
}

body.dark-mode .back-to-top-btn {
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.3);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #dde1e7;
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 20px;
  max-width: 400px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.search-bar:focus-within {
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.12);
}

.search-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  flex: 1;
  background: transparent;
  color: #1e293b;
}
.search-bar input::placeholder {
  color: #94a3b8;
}

.search-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 0.85rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 0.2s;
}
.search-clear:hover {
  background: #f1f5f9;
  color: #334155;
}

.calendar-section {
  padding: 80px 20px;
  text-align: center;
}

.calendar-widget {
  max-width: 520px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.calendar-header h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin: 0;
}
.calendar-header h3::after {
  display: none;
}

.cal-nav {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #334155;
}
.cal-nav:hover {
  background: #0072ff;
  color: #fff;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.cal-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s ease;
}
.cal-day.empty {
  background: transparent;
}
.cal-day.past {
  color: #cbd5e1;
  cursor: not-allowed;
}
.cal-day.available {
  background: #dcfce7;
  color: #16a34a;
  cursor: pointer;
}
.cal-day.available:hover {
  background: #16a34a;
  color: #fff;
  transform: scale(1.1);
}
.cal-day.booked {
  background: #fee2e2;
  color: #dc2626;
  cursor: not-allowed;
}
.cal-day.selected {
  background: linear-gradient(135deg, #00c6ff, #0072ff) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.4);
  transform: scale(1.1);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #64748b;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.legend-dot.available {
  background: #16a34a;
}
.legend-dot.booked {
  background: #dc2626;
}
.legend-dot.selected {
  background: #0072ff;
}
.legend-dot.past {
  background: #cbd5e1;
}

.cal-selected-info {
  background: #f0f9ff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #0072ff;
  font-weight: 500;
  border-left: 4px solid #0072ff;
}

.spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 16px;
}
.spinner-wrapper p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #00c6ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.converter-widget .spinner-wrapper p {
  color: #64748b;
}

.converter-widget .spinner {
  border-color: rgba(0, 114, 255, 0.15);
  border-top-color: #0072ff;
}

.toast-container {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
  pointer-events: none;
  align-items: center;
}

.toast {
  background: #1e293b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  pointer-events: auto;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast.toast-success {
  background: linear-gradient(135deg, #059669, #10b981);
}
.toast.toast-error {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}
.toast.toast-info {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.ratings-section {
  padding: 80px 20px;
  text-align: center;
}
.ratings-section p {
  color: #475569;
  margin-bottom: 50px;
}

.ratings-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rating-item {
  text-align: left;
}

.rating-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.rating-label span {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.rating-score {
  color: #0072ff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 50px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin: -2px 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-up {
  transform: rotate(180deg);
}

body {
  background: #f0f7ff;
  color: #0d2d5e;
}

h1, h2, h3 {
  color: #0d2d5e;
}

p {
  color: #3a6090;
}

body.dark-mode {
  background: #071428;
  color: #c8e0ff;
}
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3 {
  color: #e2f0ff;
}
body.dark-mode p {
  color: #8ab4d8;
}
body.dark-mode .navbar {
  background: #040e1e !important;
}
body.dark-mode .about-nav {
  background: rgba(7, 20, 40, 0.95);
}
body.dark-mode .about-nav .logo, body.dark-mode .about-nav .nav-links a {
  color: #c8e0ff;
}
body.dark-mode .about-nav .nav-links a:hover {
  color: #00c8ff;
  background: rgba(0, 200, 255, 0.08);
}
body.dark-mode .about-nav .nav-links a.active {
  color: #00c8ff;
  background: rgba(0, 200, 255, 0.12);
}
body.dark-mode .booking-container,
body.dark-mode .activities .card,
body.dark-mode .popup-content,
body.dark-mode #info-flex > div {
  background: #0d2040;
  color: #c8e0ff;
  border: 1px solid #1a3a6e;
}
body.dark-mode .form-group input {
  background: #071428;
  border-color: #1a3a6e;
  color: #c8e0ff;
}
body.dark-mode .form-group input:focus {
  border-color: #00c8ff;
  background: #0d2040;
}
body.dark-mode .form-group input:disabled {
  background: #071428;
}
body.dark-mode .form-group label {
  color: #7eb8f7;
}
body.dark-mode .price-display {
  background: #0d2040;
  border-left-color: #00c8ff;
}
body.dark-mode .price-display p {
  color: #c8e0ff;
}
body.dark-mode .expense-table {
  background: #0d2040;
}
body.dark-mode .expense-table tbody td {
  color: #8ab4d8;
  border-bottom-color: #1a3a6e;
}
body.dark-mode .expense-table tbody tr:hover td {
  background: #0f2850;
}
body.dark-mode .feature-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #1a3a6e;
}
body.dark-mode .feature-box p {
  color: #c8e0ff;
}
body.dark-mode .activity-filter button {
  background: #0d2040;
  color: #c8e0ff;
  border: 1px solid #1a3a6e;
}
body.dark-mode .activity-filter button:hover, body.dark-mode .activity-filter button.active {
  background: #1a7fff;
  color: #fff;
  border-color: #1a7fff;
}
body.dark-mode .footer {
  background: #040e1e;
}
body.dark-mode .about-footer {
  background: #0d2040;
  color: #8ab4d8;
}
body.dark-mode .chat-box {
  background: #0d2040;
}
body.dark-mode .chat-body textarea {
  background: #071428;
  border-color: #1a3a6e;
  color: #c8e0ff;
}
body.dark-mode section {
  background: #071428;
}
body.dark-mode section:nth-child(even) {
  background: #0a1a34;
}

body.dark-mode .card-body h4 {
  color: #e2e8f0;
}
body.dark-mode .star {
  color: #4b5563;
}
body.dark-mode .star.filled {
  color: #f59e0b;
}
body.dark-mode input[type=date] {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
  color-scheme: dark;
}
body.dark-mode input[type=date]:focus {
  background: #1e293b;
  border-color: #00c6ff;
}
body.dark-mode .weather-section {
  background: linear-gradient(135deg, #020617, #0a1628);
}

body.dark-mode input[type=date] {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
  color-scheme: dark;
}
body.dark-mode input[type=date]:focus {
  background: #1e293b;
  border-color: #00c6ff;
}

body.dark-mode .package-card {
  background: #1e293b;
}
body.dark-mode .package-features li {
  color: #cbd5e1;
  border-bottom-color: #334155;
}
body.dark-mode .converter-section {
  background: linear-gradient(180deg, #0f172a, #1e293b);
}
body.dark-mode .converter-widget {
  background: #1e293b;
}
body.dark-mode .converter-group label {
  color: #cbd5e1;
}
body.dark-mode .converter-group input,
body.dark-mode .converter-group select {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
}
body.dark-mode .converter-group input:focus,
body.dark-mode .converter-group select:focus {
  background: #1e293b;
  border-color: #00c6ff;
}
body.dark-mode .converter-result {
  background: #0f172a;
}
body.dark-mode .converter-result p {
  color: #00c6ff;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3 {
  color: #f1f5f9;
}
body.dark-mode p {
  color: #cbd5e1;
}
body.dark-mode ul li,
body.dark-mode ol li {
  color: #cbd5e1;
}
body.dark-mode dt {
  color: #f1f5f9;
}
body.dark-mode dd {
  color: #cbd5e1;
}

body.dark-mode .search-bar {
  background: #1e293b;
  border-color: #334155;
}
body.dark-mode .search-bar input {
  color: #e2e8f0;
}
body.dark-mode .search-bar input::placeholder {
  color: #475569;
}
body.dark-mode .calendar-widget {
  background: #1e293b;
}
body.dark-mode .calendar-header h3 {
  color: #f1f5f9;
}
body.dark-mode .cal-nav {
  background: #334155;
  color: #e2e8f0;
}
body.dark-mode .cal-day-name {
  color: #94a3b8;
}
body.dark-mode .cal-day.past {
  color: #334155;
}
body.dark-mode .cal-selected-info {
  background: #0f172a;
  color: #00c6ff;
}

body.dark-mode .rating-label span {
  color: #cbd5e1;
}
body.dark-mode .progress-bar {
  background: #334155;
}
body.dark-mode .wave-divider svg path {
  fill: #0f172a !important;
}
body.dark-mode .ratings-section {
  background: #0f172a;
}

/*# sourceMappingURL=style.css.map */
