/* ==========================================================================
   Alabwa Travel and Tours — shared stylesheet
   Palette anchored to the gold + white/silver calligraphy logo
   ========================================================================== */

:root {
  --gold: #c09a3e;
  --gold-dark: #9a7a2c;
  --gold-light: #e3c878;
  --ink: #1f2430;
  --ink-soft: #3a4152;
  --grey: #6b7280;
  --grey-light: #e5e7eb;
  --ivory: #faf8f3;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(31, 36, 48, 0.08);
  --shadow-lg: 0 10px 40px rgba(31, 36, 48, 0.14);
  --font-head: "Raleway", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--gold-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

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

.section {
  padding: 72px 0;
}

.section--tint {
  background: var(--ivory);
}

.section__title {
  font-size: 2.1rem;
  text-align: center;
}

.section__lead {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--grey);
}

.eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: all 0.25s ease;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 36, 48, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.brand__name span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: #d4d7de;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-light);
}

.nav .btn {
  padding: 10px 22px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 120px 0 100px;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 24, 34, 0.62), rgba(20, 24, 34, 0.72));
}

.hero > .container {
  position: relative;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: #e8e6df;
}

.hero__logo {
  width: 110px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 84px 0 64px;
}

.page-hero p {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin: 0;
}

.card--photo {
  padding: 0;
  overflow: hidden;
}

.card--photo img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card--photo .card__body {
  padding: 22px 24px 26px;
}

/* Package cards */

.package {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.package--featured {
  border-top-color: var(--ink);
  background: var(--ink);
}

.package--featured h3,
.package--featured .package__tier {
  color: var(--white);
}

.package.package--featured li,
.package.package--featured p {
  color: var(--white);
}

.package__tier {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  text-align: left;
  flex: 1;
}

.package li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.93rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--grey-light);
}

.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold-light);
  border-color: var(--gold);
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status--ok {
  display: block;
  color: #15803d;
}

.form-status--error {
  display: block;
  color: #b91c1c;
}

/* --------------------------------------------------------------------------
   Trust badges
   -------------------------------------------------------------------------- */

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}

.badge span:first-child {
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonial {
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.testimonial blockquote {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
}

.testimonial__person strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial__person small {
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-family: var(--font-head);
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item div {
  padding: 0 22px 20px;
  color: var(--grey);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.post-meta {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article h2 {
  margin-top: 2em;
}

.article p,
.article li {
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, #2c3446 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  color: var(--white);
  font-size: 1.9rem;
}

.cta-band p {
  color: #c9cdd8;
  max-width: 560px;
  margin: 0 auto 28px;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-light);
  align-items: flex-start;
}

.contact-info-list li span:first-child {
  font-size: 1.3rem;
}

.contact-info-list a {
  text-decoration: none;
  font-weight: 600;
}

.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* WhatsApp floating button */

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: #b9bec9;
  padding: 56px 0 24px;
  font-size: 0.92rem;
}

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

.site-footer a {
  color: #b9bec9;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #343b4c;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-brand img {
  width: 56px;
  margin-bottom: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #454d61;
  border-radius: 50%;
}

.footer-social a:hover {
  border-color: var(--gold);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #8a91a1;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav .btn {
    margin-top: 12px;
    border-bottom: none;
  }

  .nav-toggle {
    display: block;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 84px 0 72px;
  }
}
