:root{ --sky-orange:#f47b20; --deep-night:#0f2e49; --cream-cloud:#f4f1ea; --stone-gray:#c2c2c2; --balloon-red:#d84236; }

/* Base font styles */
body {
  font-family: 'Open Sans', sans-serif;
}

.font-heading {
  font-family: 'Poppins', sans-serif;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem; /* rounded-2xl */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 600; /* font-semibold */
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--sky-orange);
  color: white;
}
.btn-primary:hover {
  background-color: #fb923c; /* orange-400 */
  box-shadow: 0 4px 14px 0 rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.btn-danger {
  background-color: var(--balloon-red);
  color: white;
}
.btn-danger:hover {
  background-color: #ef4444; /* red-500 */
  box-shadow: 0 4px 14px 0 rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--sky-orange);
  color: white;
}
.btn-success:hover {
  background-color: #fb923c; /* orange-400 */
  box-shadow: 0 4px 14px 0 rgb(0 0 0 / 10%);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--stone-gray);
  color: var(--deep-night);
}
.btn-outline:hover {
  border-color: var(--sky-orange);
  color: var(--sky-orange);
  background-color: rgba(244, 123, 32, 0.05);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}
.btn-outline-white:hover {
  background-color: white;
  color: var(--deep-night);
  border-color: white;
}

.btn-ghost {
  color: var(--deep-night);
}
.btn-ghost:hover {
  background-color: rgba(200, 200, 200, 0.2);
}

.btn-filter {
  border: 1px solid var(--stone-gray);
  color: var(--deep-night);
  background-color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}
.btn-filter:hover {
  border-color: var(--sky-orange);
  color: var(--sky-orange);
}

.btn-filter-active {
  border: 1px solid var(--sky-orange);
  color: white;
  background-color: var(--sky-orange);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

/* Forms */
.input {
  width: 100%;
  height: 2.75rem; /* h-11 */
  border-radius: 0.75rem; /* rounded-xl */
  border: 1px solid var(--stone-gray);
  padding: 0 0.75rem;
  background-color: white;
  transition: all 0.2s ease;
}
.input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--sky-orange);
  border-color: transparent;
}

.input-field {
  border-radius: 0.5rem;
  border: 1px solid var(--stone-gray);
  padding: 0.25rem 0.5rem;
  background-color: white;
  font-size: 0.875rem;
}
.input-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--sky-orange);
  border-color: transparent;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--deep-night);
  margin-bottom: 0.5rem;
}

.icon {
  position: absolute;
  color: rgba(15, 46, 73, 0.6);
  pointer-events: none;
}

/* Hero Form Specific */
.hero-form .input {
  background-color: white;
  border-color: #e5e7eb; /* gray-200 */
  color: var(--deep-night);
}
.hero-form .input::placeholder {
  color: #6b7280; /* gray-500 */
}
.hero-form .form-label {
  color: var(--deep-night);
  font-weight: 500;
}
.hero-form select.input {
  cursor: pointer;
}
.hero-form input[readonly] {
  background-color: #f9fafb; /* gray-50 */
  cursor: default;
}

/* General Components */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  color: var(--deep-night);
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.card {
  border-radius: 1rem;
  border: 1px solid rgba(194, 194, 194, 0.5);
  background-color: white;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 16px -4px rgba(15, 46, 73, 0.1);
  transform: translateY(-4px);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--deep-night);
}
.card-body {
  padding-top: 0.5rem;
  color: rgba(15, 46, 73, 0.8);
  line-height: 1.6;
}
.icon-badge {
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(244, 123, 32, 0.1);
  color: var(--sky-orange);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tour-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(194, 194, 194, 0.5);
  background-color: white;
  transition: all 0.3s ease;
}
.tour-card:hover {
  box-shadow: 0 8px 24px -8px rgba(15, 46, 73, 0.15);
  transform: translateY(-4px);
}
.tour-media {
  position: relative;
  height: 14rem;
  width: 100%;
  overflow: hidden;
}
.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.75rem;
  font-weight: 500;
  text-align: center;
}
.badge-primary {
  background-color: var(--sky-orange);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-success {
  background-color: #ffd60a;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-info {
  background-color: #3b82f6;
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hiw-card {
  padding: 1.5rem;
  background-color: white;
  border-radius: 1rem;
  border: 1px solid rgba(194, 194, 194, 0.5);
  transition: all 0.3s ease;
}
.hiw-card:hover {
  box-shadow: 0 8px 16px -4px rgba(15, 46, 73, 0.1);
  transform: translateY(-4px);
}
.hiw-step {
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(244, 123, 32, 0.1);
  color: var(--sky-orange);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.hiw-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-night);
}
.hiw-text {
  margin-top: 0.5rem;
  color: rgba(15, 46, 73, 0.8);
  line-height: 1.6;
}

.review-card {
  border-radius: 1rem;
  border: 1px solid rgba(194, 194, 194, 0.5);
  background-color: white;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.review-card:hover {
  box-shadow: 0 8px 16px -4px rgba(15, 46, 73, 0.1);
  transform: translateY(-4px);
}
.review-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.review-text {
  color: rgba(15, 46, 73, 0.8);
  line-height: 1.6;
}

.similar-tour-card {
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(194, 194, 194, 0.5);
  background-color: white;
  transition: all 0.3s ease;
  align-items: center;
}
.similar-tour-card:hover {
  box-shadow: 0 8px 24px -8px rgba(15, 46, 73, 0.15);
  transform: translateY(-4px);
  border-color: var(--sky-orange);
}
.similar-tour-card img {
  width: 10rem; /* fixed width */
  height: 100%;
  object-fit: cover;
}

.post-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(194, 194, 194, 0.5);
  background-color: white;
  transition: all 0.3s ease;
}
.post-card:hover {
  box-shadow: 0 8px 24px -8px rgba(15, 46, 73, 0.15);
  transform: translateY(-4px);
}
.post-media {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.post-title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--deep-night);
}
.post-excerpt {
  padding-top: 0.5rem;
  color: rgba(15, 46, 73, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.125rem;
}
.footer-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}
.footer-list a {
  transition: color 0.2s ease;
}
.footer-list a:hover {
  color: white;
}
.social-btn {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}
.social-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1rem 0.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--deep-night);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 0.5rem 1rem;
  color: rgba(15, 46, 73, 0.85);
  line-height: 1.6;
  font-size: 0.9rem;
}

.faq-item {
  transition: all 0.2s ease;
}
.faq-q {
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: var(--deep-night);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-q:hover {
  background-color: rgba(244, 241, 234, 0.5);
}
.faq-a {
  padding: 0 1.5rem 1rem;
  color: rgba(15, 46, 73, 0.8);
  line-height: 1.6;
}

/* Prose styles for SEO content */
.prose h3 {
  color: var(--deep-night);
  font-weight: 700;
  margin: 5px 0px;
  font-size: 1.25rem;
}
.prose p {
  color: rgba(15, 46, 73, 0.85);
  line-height: 1.7;
}

/* Add arrow to how it works cards */
.hiw-card:not(:last-child)::after {
  content: '';
  position: absolute;
  display: none;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23c2c2c2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3' /%3E%3C/svg%3E");
  background-size: contain;
  top: 50%;
  right: -2.25rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .hiw-card:not(:last-child)::after {
    display: block;
  }
}

.logo{
  max-height: 50px;
}

/* Navigation Dropdown Styles */
.group:hover .group-hover\:opacity-100 {
  opacity: 1 !important;
}

.group:hover .group-hover\:visible {
  visibility: visible !important;
}

.group:hover .group-hover\:rotate-180 {
  transform: rotate(180deg) !important;
}

/* Dropdown positioning fix */
nav .relative .absolute {
  z-index: 9999;
}

/* Mobile menu improvements */
#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#mobileMenu:not(.hidden) {
  max-height: 500px;
}

/* Mobile Bottom Bar - Only visible on mobile */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--stone-gray);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: block;
}

/* Hide on larger screens */
@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/* Add padding to main content on mobile to prevent overlap */
@media (max-width: 1023px) {
  main {
    padding-bottom: 80px;
  }
  footer {
    padding-bottom: 120px !important;
  }
}

.menu-btn {
  font-size: 1.5rem;
  padding: 0;
}