:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;
  --primary: 210 100% 40%;
  --primary-foreground: 0 0% 100%;
  --secondary: 24 100% 50%;
  --secondary-foreground: 0 0% 100%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 210 100% 40%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 210 100% 40%;
  --chart-1: 12 76% 61%;
  --chart-2: 173 58% 39%;
  --chart-3: 197 37% 24%;
  --chart-4: 43 74% 66%;
  --chart-5: 27 87% 67%;
  --radius: 0.75rem;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prose h1,
.prose h2,
.prose h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.prose p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0D9488;
  outline-offset: 2px;
}

a,
button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #0066CC;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0052A3;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: #0066CC;
  color: white;
}

.dropdown-panel {
  min-width: 14rem;
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.9) 0%, rgba(17, 94, 89, 0.95) 100%);
}

.card-shadow-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-shadow-hover:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

body .header-nav {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
}

body .header-nav-links {
  flex: 1 !important;
  justify-content: center !important;
}

body .header-actions {
  margin-left: auto !important;
}

body .hero-search {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2) !important;
}

body .hero-search-row {
  display: flex !important;
  align-items: stretch !important;
  gap: 12px !important;
}

@media (max-width: 768px) {
  body .hero-search-row {
    flex-direction: column !important;
  }
}

body .hero-search-field select,
body .hero-search-field input {
  height: 56px !important;
  border-radius: 14px !important;
  border: 1px solid #e2e8f0 !important;
  background-color: #ffffff !important;
}

body .hero-search-button {
  min-width: 150px !important;
}

body .hero-quick-filters {
  margin-top: 20px !important;
}

body .hero-quick-filter {
  padding: 6px 16px !important;
  font-weight: 600 !important;
}

body .site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid #e5e7eb !important;
}

body .site-topbar {
  background: #003d7a !important;
  color: #ffffff !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

body .site-main-nav {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

body .site-logo-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
}

body .site-logo-title {
  color: #0066CC !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

body .site-logo-subtitle {
  color: #64748b !important;
  font-size: 11px !important;
  margin-top: -2px !important;
}

body .site-header-cta {
  background: #0066CC !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 8px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

body .hero-section {
  min-height: 85vh !important;
}

body .hero-content {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

body .hero-badge {
  border-radius: 9999px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 6px 16px !important;
}

body .hero-title {
  font-size: clamp(56px, 9vw, 76px) !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
  font-weight: 700 !important;
}

body .hero-title-accent {
  color: #7dd3fc !important;
}

body .hero-description {
  font-size: 20px !important;
  line-height: 1.5 !important;
  max-width: 680px !important;
  margin-bottom: 40px !important;
  opacity: 0.95 !important;
}

body .hero-search {
  border-radius: 24px !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, 0.97) !important;
}

body .hero-search-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
}

body .hero-search-field {
  flex: 1 !important;
  min-width: 0 !important;
}

body .hero-search-field select,
body .hero-search-field input {
  height: 56px !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  background-color: #ffffff !important;
  padding-left: 44px !important;
  font-size: 15px !important;
}

body .hero-search-button {
  min-width: 140px !important;
  height: 56px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  background: #0066CC !important;
  flex-shrink: 0 !important;
}

body .hero-quick-filters {
  gap: 8px !important;
  margin-top: 20px !important;
}

body .hero-quick-filter {
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  padding: 6px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

body .hero-quick-filter:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 768px) {
  body .hero-search-row {
    flex-direction: column !important;
  }

  body .hero-search-field {
    width: 100% !important;
  }

  body .hero-search-button {
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  body .site-logo-title {
    font-size: 22px !important;
  }

  body .hero-title {
    font-size: clamp(42px, 7vw, 60px) !important;
  }

  body .hero-description {
    font-size: 18px !important;
  }

  body .hero-search-button {
    font-size: 15px !important;
  }
}

/* Hero icon blue color override */
body .hero-icon {
  color: #0066CC !important;
}

body .hero-icon svg {
  color: #0066CC !important;
  stroke: #0066CC !important;
}

/* Trust badges section styling */
body .trust-badges-section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

body .trust-badge-icon {
  width: 48px !important;
  height: 48px !important;
  background: #eff6ff !important;
  border-radius: 12px !important;
}

body .trust-badge-icon svg {
  color: #0066CC !important;
  stroke: #0066CC !important;
  width: 24px !important;
  height: 24px !important;
}

body .trust-badge-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.3 !important;
}

body .trust-badge-subtitle {
  font-size: 13px !important;
  color: #64748b !important;
  margin-top: 2px !important;
}

body .trust-badge-item {
  gap: 12px !important;
}

/* Newsletter section styling */
body .newsletter-section {
  background: #0052a3 !important;
}

body .newsletter-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

body .newsletter-subtitle {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

body .newsletter-input {
  height: 48px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

body .newsletter-button {
  height: 48px !important;
  border-radius: 9999px !important;
  background: #FF6B00 !important;
  font-weight: 600 !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

body .newsletter-button:hover {
  background: #e55f00 !important;
}

/* Footer styling */
body .site-footer {
  background: #0f172a !important;
}

body .footer-main {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

body .footer-logo-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  background: #0066CC !important;
}

body .footer-logo-text {
  font-size: 22px !important;
  color: #ffffff !important;
}

body .footer-description {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #94a3b8 !important;
}

body .footer-heading {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

body .footer-links ul li a,
body .footer-destinations ul li a {
  font-size: 14px !important;
  color: #94a3b8 !important;
}

body .footer-links ul li a:hover,
body .footer-destinations ul li a:hover {
  color: #0066CC !important;
}

body .footer-contact-list li {
  font-size: 14px !important;
  color: #94a3b8 !important;
}

body .footer-contact-list svg {
  color: #0066CC !important;
  stroke: #0066CC !important;
}

body .footer-hours {
  background: #1e293b !important;
  border-radius: 12px !important;
  padding: 16px !important;
}

body .footer-social a {
  width: 40px !important;
  height: 40px !important;
  background: #1e293b !important;
  border-radius: 50% !important;
}

body .footer-social a:hover {
  background: #0066CC !important;
}

body .footer-bottom {
  border-top: 1px solid #1e293b !important;
}

body .footer-copyright {
  font-size: 13px !important;
  color: #64748b !important;
}

body .footer-legal a {
  font-size: 13px !important;
  color: #64748b !important;
}

body .footer-legal a:hover {
  color: #94a3b8 !important;
}
