/* ============================================================
   GlobeSoulful — Explore The World, Fill Your Soul.
   Brand palette drawn from the logo:
   Navy #16336b | Teal #178f8f | Gold #d0942f
   ============================================================ */

:root {
  --navy: #16336b;
  --navy-dark: #0e2450;
  --navy-light: #1d4e89;
  --teal: #178f8f;
  --teal-dark: #0f6b6b;
  --gold: #d0942f;
  --gold-light: #e8b45a;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #2b3445;
  --text-light: #6b7385;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(22, 51, 107, 0.12);
  --shadow-lg: 0 16px 48px rgba(22, 51, 107, 0.18);
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; }

.container { width: min(1180px, 92%); margin: 0 auto; }

section { padding: 72px 0; }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

.section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 14px; }

.section-sub { color: var(--text-light); max-width: 640px; margin: 0 auto 44px; }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #cfd8ea;
  font-size: .85rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a { color: #cfd8ea; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-item { margin-right: 22px; white-space: nowrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(22, 51, 107, .08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}

.logo img { height: 62px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }

.nav-links a {
  font-weight: 600;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--teal); border-bottom-color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  border-bottom: none !important;
  transition: background .2s, transform .2s;
}

.nav-cta:hover { background: var(--teal); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(14, 36, 80, .62), rgba(14, 36, 80, .62)),
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  padding: 90px 0;
}

.hero-inner { max-width: 720px; }

.hero .kicker {
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .85rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  margin: 14px 0 18px;
}

.hero p { font-size: 1.1rem; color: #e8edf6; margin-bottom: 30px; }

/* page heroes (inner pages) */
.page-hero {
  min-height: 42vh;
  text-align: center;
  justify-content: center;
}
.page-hero .hero-inner { max-width: 800px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ---------- Feature strip (from logo icons) ---------- */
.feature-strip { background: var(--cream); padding: 36px 0; }

.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

.feature-item .fi-icon { font-size: 2rem; margin-bottom: 6px; }
.feature-item h4 { font-size: .95rem; letter-spacing: 2px; text-transform: uppercase; }
.feature-item:nth-child(odd) .fi-icon { color: var(--teal); }
.feature-item:nth-child(even) .fi-icon { color: var(--gold); }

/* ---------- Welcome split ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }

.split .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split .img-wrap img { height: 100%; object-fit: cover; }

.check-list { list-style: none; margin: 22px 0 30px; }
.check-list li { padding: 7px 0 7px 34px; position: relative; font-weight: 500; }
.check-list li::before {
  content: '✔';
  position: absolute; left: 0; top: 7px;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 28px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.card .card-img { position: relative; height: 220px; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.07); }

.card .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.card .badge.teal { background: var(--teal); }

.card-body { padding: 22px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card-body p { color: var(--text-light); font-size: .95rem; }
.card-body .card-meta { display: flex; justify-content: space-between; margin-top: 14px; font-size: .9rem; color: var(--teal); font-weight: 600; }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--gold);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--teal); }

.service-card .sc-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text-light); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(rgba(23, 143, 143, .88), rgba(22, 51, 107, .9)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-band p { color: #e4f2f2; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 4.5rem;
  color: var(--gold-light);
  position: absolute;
  top: 6px; right: 22px;
  line-height: 1;
}

.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testi-card p { color: var(--text-light); font-style: italic; margin-bottom: 18px; }
.testi-card .t-name { font-weight: 700; color: var(--navy); }
.testi-card .t-loc { font-size: .85rem; color: var(--teal); }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: var(--white); padding: 56px 0; }

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  text-align: center;
}

.stat h3 { color: var(--gold-light); font-size: 2.6rem; }
.stat p { color: #c6d2e6; letter-spacing: 1px; text-transform: uppercase; font-size: .85rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }

.info-block {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.info-block .ib-icon {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.info-block h4 { margin-bottom: 4px; }
.info-block p, .info-block a { color: var(--text-light); font-size: .95rem; }
.info-block a:hover { color: var(--teal); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: 8px 4px; border-bottom: 1px solid #eef1f6; }
.hours-table td:last-child { text-align: right; color: var(--text-light); }
.hours-table .closed td:last-child { color: #c0392b; font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form label { font-weight: 600; color: var(--navy); font-size: .9rem; display: block; margin: 14px 0 6px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dfe4ee;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s;
  background: var(--cream);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--teal); }

.contact-form button { margin-top: 22px; width: 100%; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 48px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Values / About ---------- */
.value-card {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px;
}

.value-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.value-card p { color: var(--text-light); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #b9c5da; padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}

.site-footer h4 { color: var(--white); margin-bottom: 18px; font-size: 1.05rem; letter-spacing: 1px; }

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9c5da; transition: color .2s; }
.site-footer a:hover { color: var(--gold-light); }

.footer-logo {
  background: var(--white);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 52px; }

.footer-about p { font-size: .92rem; }

.social-row { display: flex; gap: 12px; margin-top: 18px; }

.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .2s, transform .2s;
}

.social-row a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.footer-contact .fc-ico { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  text-align: center;
  font-size: .85rem;
  color: #8fa0bd;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  z-index: 99;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar .tb-social { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 5%;
    box-shadow: 0 12px 24px rgba(22, 51, 107, .12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 4px; border-bottom: 1px solid #eef1f6; }
  .nav-cta { margin: 12px 0; text-align: center; border-radius: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
}
