/* ===== Emerald Voyage Custom Styles ===== */

:root {
  --ev-teal: #0D9488;
  --ev-teal-dark: #0A7A70;
  --ev-teal-light: #E6F7F5;
  --ev-teal-50: #F0FDFA;
  --ev-coral: #F97316;
  --ev-coral-light: #FFF7ED;
  --ev-coral-hover: #EA6C0E;
  --ev-gray-25: #FAFBFC;
  --ev-gray-50: #F5F7FA;
  --ev-gray-100: #EDF0F4;
  --ev-gray-200: #D8DEE6;
  --ev-gray-300: #B8C2CF;
  --ev-gray-500: #6B7A8D;
  --ev-gray-700: #3A4555;
  --ev-gray-900: #1A2332;
  --ev-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --ev-shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --ev-shadow-lg: 0 8px 28px rgba(0,0,0,0.08);
  --ev-shadow-xl: 0 16px 48px rgba(0,0,0,0.10);
  --ev-radius: 12px;
  --ev-radius-lg: 16px;
  --ev-radius-xl: 24px;
  --ev-transition: 0.25s ease;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ===== BUTTONS ===== */
.wp-block-button__link {
  transition: var(--ev-transition);
}
.wp-block-button__link:hover {
  transform: translateY(-1px);
  box-shadow: var(--ev-shadow-md);
}

/* Coral button style */
.is-style-ev-coral .wp-block-button__link {
  background: var(--ev-coral) !important;
  color: white !important;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.is-style-ev-coral .wp-block-button__link:hover {
  background: var(--ev-coral-hover) !important;
  box-shadow: 0 6px 20px rgba(249,115,22,0.25);
}

/* ===== SERVICE CARDS (Custom HTML sections) ===== */
.ev-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}
.ev-svc-card {
  background: white;
  border: 1px solid var(--ev-gray-100);
  border-radius: var(--ev-radius-lg);
  padding: 1.75rem;
  transition: var(--ev-transition);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}
.ev-svc-card:hover {
  border-color: var(--ev-teal);
  box-shadow: var(--ev-shadow-lg);
  transform: translateY(-3px);
}
.ev-svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.ev-svc-icon.teal { background: var(--ev-teal-light); color: var(--ev-teal); }
.ev-svc-icon.coral { background: var(--ev-coral-light); color: var(--ev-coral); }
.ev-svc-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ev-gray-900); }
.ev-svc-card p { font-size: 0.85rem; color: var(--ev-gray-500); line-height: 1.6; }
.ev-svc-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--ev-gray-200); font-size: 1rem; transition: var(--ev-transition);
}
.ev-svc-card:hover .ev-svc-arrow { color: var(--ev-teal); transform: translateX(3px); }

/* ===== FLEET CARDS ===== */
.ev-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}
.ev-fleet-card {
  background: white;
  border-radius: var(--ev-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ev-gray-100);
  transition: var(--ev-transition);
}
.ev-fleet-card:hover { box-shadow: var(--ev-shadow-lg); transform: translateY(-3px); }
.ev-fleet-img {
  height: 140px;
  background: linear-gradient(135deg, var(--ev-teal-50), #E8F4FD);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--ev-gray-200);
}
.ev-fleet-body { padding: 1.2rem; }
.ev-fleet-body h4 { font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 0.35rem; }
.ev-fleet-pax {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--ev-teal-light); color: var(--ev-teal);
  padding: 0.15rem 0.5rem; border-radius: 6px;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 0.3rem;
}
.ev-fleet-use { font-size: 0.78rem; color: var(--ev-gray-500); }

/* ===== ROUTE CARDS ===== */
.ev-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
}
.ev-route-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: white;
  border: 1px solid var(--ev-gray-100);
  border-radius: var(--ev-radius);
  transition: var(--ev-transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.ev-route-card:hover { border-color: var(--ev-teal); box-shadow: var(--ev-shadow-md); transform: translateY(-2px); }
.ev-route-dot {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ev-teal-light); color: var(--ev-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ev-route-text h4 { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--ev-gray-900); margin-bottom: 0.1rem; }
.ev-route-text span { font-size: 0.75rem; color: var(--ev-gray-500); }
.ev-route-go { margin-left: auto; color: var(--ev-gray-200); transition: var(--ev-transition); }
.ev-route-card:hover .ev-route-go { color: var(--ev-coral); transform: translateX(3px); }

/* ===== STATS BAR ===== */
.ev-stats-bar {
  background: var(--ev-teal);
  padding: 3rem 5%;
  display: flex; justify-content: center; gap: 5rem;
  flex-wrap: wrap;
}
.ev-stat-item { text-align: center; }
.ev-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; font-weight: 800; color: white;
}
.ev-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ===== TESTIMONIAL CARDS ===== */
.ev-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1240px; margin: 0 auto; }
.ev-test-card {
  background: white; border-radius: var(--ev-radius-lg);
  padding: 1.75rem; border: 1px solid var(--ev-gray-100);
}
.ev-test-stars { color: var(--ev-coral); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.ev-test-text { font-size: 0.9rem; color: var(--ev-gray-700); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.ev-test-author { display: flex; align-items: center; gap: 0.6rem; }
.ev-test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ev-teal-light); color: var(--ev-teal);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem;
}
.ev-test-name { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--ev-gray-900); }
.ev-test-origin { font-size: 0.72rem; color: var(--ev-gray-500); }

/* ===== TRUST STRIP ===== */
.ev-trust-strip {
  padding: 1.5rem 5%;
  display: flex; justify-content: center; gap: 3rem;
  flex-wrap: wrap; border-bottom: 1px solid var(--ev-gray-100);
}
.ev-trust-chip {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--ev-gray-500); font-weight: 500;
}
.ev-trust-chip-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.ev-trust-chip-icon.teal { background: var(--ev-teal-light); color: var(--ev-teal); }
.ev-trust-chip-icon.coral { background: var(--ev-coral-light); color: var(--ev-coral); }

/* ===== SEARCH BOX ===== */
.ev-search-box {
  background: white;
  border-radius: var(--ev-radius-xl);
  padding: 1.75rem;
  box-shadow: var(--ev-shadow-xl);
  border: 1px solid var(--ev-gray-100);
}
.ev-search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.85rem; }
.ev-search-field label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--ev-gray-500); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 0.35rem;
}
.ev-search-field input, .ev-search-field select {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--ev-gray-200);
  border-radius: 10px; font-size: 0.9rem;
  color: var(--ev-gray-900); background: var(--ev-gray-25);
  transition: var(--ev-transition); outline: none;
  font-family: 'DM Sans', sans-serif;
}
.ev-search-field input:focus, .ev-search-field select:focus {
  border-color: var(--ev-teal); background: white;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.08);
}
.ev-search-submit {
  width: 100%; padding: 0.85rem;
  background: var(--ev-coral); color: white;
  border: none; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--ev-transition);
  font-family: 'Outfit', sans-serif;
}
.ev-search-submit:hover { background: var(--ev-coral-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.25); }
.ev-search-note { text-align: center; font-size: 0.75rem; color: var(--ev-gray-300); margin-top: 0.6rem; }

/* ===== HERO TAG ===== */
.ev-hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ev-teal-light); color: var(--ev-teal);
  padding: 0.35rem 0.85rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 1.25rem;
}
.ev-hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--ev-teal); border-radius: 50%; }

/* ===== SECTION TAGS ===== */
.ev-section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--ev-teal); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 0.6rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ev-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-routes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ev-svc-grid, .ev-fleet-grid, .ev-routes-grid, .ev-test-grid { grid-template-columns: 1fr; }
  .ev-stats-bar { gap: 2rem; padding: 2rem 5%; }
  .ev-stat-num { font-size: 1.8rem; }
  .ev-search-row { grid-template-columns: 1fr; }
  .ev-trust-strip { gap: 1.5rem; }
}
