:root{
  /* Brand */
  --brand:#3A5B4B;         /* coral */
  --brand2:#7FA78B;        /* light coral */
  --dark:#0a1334;          /* deep navy */
  --ink:#0f172a;           /* body */
  --muted:#365486;         /* helper */
  --grad:linear-gradient(90deg,#3A5B4B,#7FA78B);

  /* Accents */
  --ring:#abc3ab;
  --border:#abc3ab;
  --soft:0 16px 48px rgba(2,6,23,.08);
  --med:0 22px 64px rgba(2,6,23,.14);

  /* Layout */
  --container:1200px;
  --r-xl:20px; --r-lg:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: 'Arial Narrow', Arial, sans-serif;
  color:var(--ink); background:#fff; line-height:1.6;
}

.container{max-width:var(--container); margin-inline:auto; padding:0 20px}
.section{padding:52px 0}

/* ===== Topbar + Navbar ===== */
.topbar{background:var(--brand-primary);color:#fff;font-size:.95rem;font-weight:700;letter-spacing:.2px}
  .topbar__inner{display:flex;gap:16px;align-items:center;justify-content:space-between;padding:10px 0}
  .topbar__welcome{margin:0;text-align:center}
  .topbar__social{display:flex;align-items:center;gap:10px}
  .topbar__social .social{display:inline-flex;align-items:center;justify-content:center;color:#fff;opacity:.9;transition:opacity .2s;border-radius:8px;padding:6px}
  .topbar__social .social:hover{opacity:1;background:rgba(255,255,255,.12)}
  /* Removed page-specific overrides to use global styles from styles.css
   for a single, uniform header across the site. */

/* Footer bottom styles */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: none !important;
}

.footer__copyright {
  text-align: left;
  margin: 0;
  white-space: nowrap;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer__legal {
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer__legal a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer__legal a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* ===== Page hero ===== */
.page-hero{
  padding:56px 0 28px;
  background:
    radial-gradient(1200px 600px at 10% -10%, #3A5B4B),
    radial-gradient(900px 500px at 90% 110%, rgba(10,19,52,.05) 0, transparent 60%);
}
.page-hero h1{
  margin:0 0 8px; font-size:clamp(28px,5vw,44px);
  text-align: center;
  background:#d9b81c;
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.page-hero p{margin:0 0 8px; color:#FCF9F2;font-size: 1.25rem;
align-items: center;
text-align: center; }

/* ===== Futuristic Search Bar ===== */
.search-section {
  padding: 16px 0 0;
  position: relative;
  z-index: 100;
  --search-accent: var(--brand, #3A5B4B);
  --search-text: #2D3748;
  --search-bg: #FFFFFF;
  --search-border: #E2E8F0;
  --search-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --search-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  
}

.search-box {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 70px;
  border-radius: 12px;
  transition: var(--search-transition);
 background-color:#FCF9F2;  
  overflow: hidden;
}

.search-input-wrapper {
  position: relative;
  padding: 4px 4px 4px 0;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, rgba(127, 167, 139, 0.1) 50%, transparent);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: var(--search-transition);
}

.search-box:focus-within .search-input-wrapper {
  background-position: 0 0;
  box-shadow: 0 0 0 2px rgba(127, 167, 139, 0.2);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--search-accent);
  font-size: 18px;
  z-index: 2;
  transition: var(--search-transition);
  opacity: 0.8;
}

.search-input {
  width: 100%;
  
  padding: 24px 24px 10px 52px;
  font-size: 16px;
  border: none;
  background: transparent;
  color: var(--search-text);
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 2;
  height: 40px;
  box-sizing: border-box;
  transition: var(--search-transition);
}

.search-input:focus {
  outline: none;
  padding-top: 24px;
  padding-bottom: 10px;
}

.search-label {
  position: absolute;
  top: 0;
  left: 52px;
  right: 24px;
  bottom: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  transform-origin: 0 0;
  transition: var(--search-transition);
  color: #94A3B8;
  font-size: 18px;
  line-height: 1.5;
}

.search-label-content {
  

  position: relative;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  
 
  
}

.search-input:focus + .search-label .search-label-content,
.search-input:not(:placeholder-shown) + .search-label .search-label-content {
  
  color: var(--search-accent);
  font-weight: 500;
}

.search-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--search-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input:focus ~ .search-underline {
  transform: scaleX(1);
}

/* Floating label animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.search-box:focus-within .search-label-content {
  animation: float 3s ease-in-out infinite;
}

/* ===== Futuristic Search Suggestions ===== */
.search-suggestions {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.98);
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.search-suggestions.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px) scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.suggestion-item {
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-left: 3px solid transparent;
}

.suggestion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(127, 167, 139, 0.05) 50%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.suggestion-item:hover::before,
.suggestion-item.highlighted::before {
  opacity: 1;
}

.suggestion-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(0, 0, 0, 0.03);
}

.suggestion-item:hover,
.suggestion-item.highlighted {
  background: rgba(127, 167, 139, 0.03);
  border-left-color: var(--search-accent);
  transform: translateX(2px);
}

.suggestion-item .icon {
  margin-right: 16px;
  color: var(--search-accent);
  font-size: 16px;
  opacity: 0.9;
  min-width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-item:hover .icon,
.suggestion-item.highlighted .icon {
  transform: scale(1.1);
  opacity: 1;
}

.suggestion-text {
  flex: 1;
  min-width: 0;
}

.suggestion-item .suggestion-title {
  font-weight: 500;
  color: var(--search-text);
  margin-bottom: 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-item .suggestion-location {
  font-size: 0.82em;
  color: #64748b;
  margin-top: 2px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-item .suggestion-location::before {
  content: '📍';
  margin-right: 6px;
  font-size: 0.9em;
  opacity: 0.7;
}

.suggestion-item:hover .suggestion-title,
.suggestion-item.highlighted .suggestion-title {
  color: var(--search-accent);
  transform: translateX(2px);
}

.suggestion-item:hover .suggestion-location,
.suggestion-item.highlighted .suggestion-location {
  color: var(--search-accent);
  transform: translateX(2px);
}

/* Loading state */
.search-loading {
  padding: 24px;
  color: #64748b;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.search-loading::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 3px solid rgba(127, 167, 139, 0.2);
  border-top-color: var(--search-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-top: 12px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* No results state */
.no-results {
  padding: 32px 24px;
  color: #64748b;
  text-align: center;
  background: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23E2E8F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.93 4.93L19.07 19.07' stroke='%23E2E8F0' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18 12H18.01' stroke='%23E2E8F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 18.01L12.01 17.9989' stroke='%23E2E8F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.51999 6.51999L6.52999 6.52999' stroke='%23E2E8F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center 32px;
  background-size: 64px;
  padding-top: 120px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.no-results-query {
  color: var(--search-text);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

/* Scrollbar styling */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0 12px 12px 0;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: rgba(127, 167, 139, 0.3);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
  background: rgba(127, 167, 139, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-box input[type="text"] {
    padding: 14px 20px 14px 48px;
    font-size: 15px;
  }
  
  .search-icon {
    font-size: 16px;
    left: 16px;
  }
  
  .search-suggestions {
    border-radius: 8px;
  }
  
  .suggestion-item {
    padding: 10px 16px;
  }
}

/* ===== Centres header ===== */
.centres .centres__head{text-align:center; max-width:900px; margin:0 auto 18px}
.centres .centres__head h2{
  margin:0 0 6px; font-size:clamp(26px,4.4vw,38px);
  background:linear-gradient(90deg,var(--dark),var(--brand) 60%,var(--dark));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.centres .centres__head p{color:var(--muted); margin:0 0 12px}
.centres__meta{display:flex; justify-content:center; gap:10px; flex-wrap:wrap}
.chip{
  padding:8px 12px; border-radius:999px; font-weight:900; font-size:12.5px;
  border:1px solid rgba(10,19,52,.1); color:var(--dark); background:#fff
}
.chip--brand{border-color:var(--border); background:color-mix(in srgb, var(--brand) 12%, #fff)}

/* ===== Centre card ===== */
/* Card with alternating background colors */
.c-card{
  display:grid; grid-template-columns:minmax(320px,520px) 1fr; gap:16px; align-items:stretch;
  border:1px solid rgba(255,255,255,0.2); border-radius:var(--r-xl); padding:16px;
  box-shadow:var(--soft); position:relative; overflow:hidden; margin-bottom:16px; will-change:transform;
  color: white;
}

/* Apply left borders with alternating colors */
.c-card {
  border-left: 4px solid transparent;
  border-top: none;
}

.c-card:nth-child(4n+1) { border-left-color: #52833c; }
.c-card:nth-child(4n+2) { border-left-color: #9e8e34; }
.c-card:nth-child(4n+3) { border-left-color: #f0b81c; }
.c-card:nth-child(4n+4) { border-left-color: #d98227; }
.c-card::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.28) 30%,transparent 60%);
  transform:translateX(-120%); transition:transform .9s ease;
}
.c-card:hover{border-color:var(--ring); box-shadow:var(--med); transform:translateY(-1px)}
.c-card:hover::after{transform:translateX(120%)}
@media (max-width:1100px){ .c-card{grid-template-columns:1fr} }

.c-card__map{border-radius:var(--r-lg); overflow:hidden; background:#f8fafc; position:relative; box-shadow:0 10px 30px rgba(2,6,23,.08); filter:saturate(1.05)}
.c-card__map iframe{width:100%; height:100%; min-height:320px; border:0; display:block}

.c-card__body{display:flex; flex-direction:column}
.c-card__top{display:flex; justify-content:space-between; align-items:center; gap:10px}
.city{margin:0; font-size:clamp(20px,2.8vw,26px); color:var(--dark)}
.badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{
  font-weight:900; font-size:11.5px; padding:6px 10px; border-radius:999px;
  border:1px solid var(--border); color:var(--dark); background:color-mix(in srgb, var(--brand) 10%, #fff)
}
.badge--soft{background:#fff}

.name{margin:6px 0 8px; color:var(--dark)}
.info{display:grid; gap:6px; color:var(--ink)}
.row{display:flex; gap:10px; align-items:flex-start; margin:0}
.ic{width:20px; display:inline-grid; place-items:center; opacity:.8}

.c-card__foot{margin-top:auto; display:flex; gap:8px; flex-wrap:wrap; padding-top:10px}
.pill{
  font-weight:900; font-size:11.5px; padding:6px 10px; border-radius:999px;
  color:var(--dark); border:1px dashed var(--border); background:#fff
}

/* Reveal animation */
.reveal{opacity:0; transform:translateY(10px); transition:opacity .5s ease, transform .5s ease}
.reveal.is-visible{opacity:1; transform:translateY(0)}

/* Header/nav styles are unified in global styles.css */



