/* ============================================================
   WESTWAY SAFARIS — HOMEPAGE SECTION STYLES
   assets/css/home.css
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.ws-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ws-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,8,.3) 0%, rgba(10,10,8,.08) 40%, rgba(10,10,8,.88) 100%),
    url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.06);
  animation: wsHeroZoom 18s ease-in-out infinite alternate;
}
@keyframes wsHeroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.ws-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 100px;
  max-width: 920px;
  animation: wsFadeUp 1.4s ease both;
}
@keyframes wsFadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
.ws-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ws-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.ws-hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(52px, 7.5vw, 100px) !important;
  font-weight: 300 !important;
  line-height: 1.04 !important;
  color: var(--ivory) !important;
  margin-bottom: 28px !important;
}
.ws-hero h1 em { font-style: italic; color: var(--gold-light); }
.ws-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  opacity: .74;
  max-width: 520px;
  margin-bottom: 48px;
}
.ws-hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.ws-btn-primary {
  background: var(--gold);
  color: var(--black) !important;
  border: none !important;
  padding: 16px 44px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
  transition: all .35s;
  border-radius: 0 !important;
}
.ws-btn-primary:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
}
.ws-btn-ghost {
  color: var(--ivory) !important;
  border: 1px solid rgba(247,243,236,.35) !important;
  padding: 16px 36px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-decoration: none !important;
  display: inline-block;
  transition: all .35s;
  background: transparent !important;
  border-radius: 0 !important;
}
.ws-btn-ghost:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.ws-scroll-hint {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  z-index: 2;
  animation: wsScrollPulse 2.5s ease infinite;
}
@keyframes wsScrollPulse {
  0%,100% { opacity:.5; transform:translateY(0); }
  50%      { opacity:1;  transform:translateY(6px); }
}
.ws-scroll-hint::after {
  content:'';
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── SECTION COMMON ────────────────────────────────────────── */
.ws-section-eyebrow {
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ws-section-eyebrow::before {
  content:'';
  width: 28px; height:1px;
  background: var(--gold);
  display:block;
}
.ws-section-eyebrow.ws-centered { justify-content: center; }
.ws-section-eyebrow.ws-centered::before { display:none; }
.ws-section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  font-weight: 300 !important;
  line-height: 1.14 !important;
  color: var(--ivory) !important;
  margin-bottom: 18px !important;
}
.ws-section-title em { font-style: italic; color: var(--gold-light); }
.ws-section-title.ws-centered { text-align: center; }

/* ── INTRO ─────────────────────────────────────────────────── */
.ws-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
}
.ws-intro-text {
  padding: 100px 80px 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ws-intro-text p {
  font-size: 15px;
  line-height: 1.9;
  opacity: .74;
  margin-bottom: 18px;
  color: var(--ivory);
}
.ws-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 16px;
}
.ws-signature small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.ws-intro-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.ws-intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(1.1);
  transition: transform .8s ease;
}
.ws-intro-image:hover img { transform: scale(1.04); }
.ws-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,8,.35), transparent 60%);
}
.ws-intro-badge {
  position: absolute;
  bottom: 40px; left: -30px;
  background: var(--gold);
  color: var(--black);
  padding: 22px 28px;
  text-align: center;
}
.ws-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
}
.ws-badge-label {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
}

/* ── STATS ─────────────────────────────────────────────────── */
.ws-stats {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ws-stat {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(10,10,8,.15);
}
.ws-stat:last-child { border-right: none; }
.ws-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.ws-stat-label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(10,10,8,.65);
  font-weight: 500;
}

/* ── EXPERIENCES ───────────────────────────────────────────── */
.ws-experiences {
  background: var(--black);
  padding: 120px 60px;
  text-align: center;
}
.ws-exp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 56px;
}
.ws-exp-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}
.ws-exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(1.2);
  transition: transform .7s ease, filter .5s ease;
}
.ws-exp-card:hover img {
  transform: scale(1.08);
  filter: brightness(.75) saturate(1.3);
}
.ws-exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}
.ws-exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(201,168,76,.18);
  line-height: 1;
  margin-bottom: 6px;
}
.ws-exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  color: var(--ivory);
  margin-bottom: 8px;
}
.ws-exp-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ivory-dim);
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
  max-height: 0;
  overflow: hidden;
}
.ws-exp-card:hover .ws-exp-desc {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
}
.ws-exp-link {
  color: var(--gold) !important;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none !important;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .4s .1s;
}
.ws-exp-link::after { content: '→'; transition: transform .3s; }
.ws-exp-card:hover .ws-exp-link { opacity: 1; }
.ws-exp-card:hover .ws-exp-link:hover::after { transform: translateX(4px); }

/* ── DESTINATIONS ──────────────────────────────────────────── */
.ws-destinations {
  background: var(--deep);
  padding: 120px 60px;
}
.ws-dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.ws-dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.ws-dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ws-dest-large { grid-row: span 2; }
.ws-dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.65);
  transition: transform .6s ease, filter .4s;
}
.ws-dest-card:hover img {
  transform: scale(1.06);
  filter: brightness(.8);
}
.ws-dest-info {
  position: absolute;
  bottom: 0; left:0; right:0;
  padding: 28px 26px;
  background: linear-gradient(to top, rgba(10,10,8,.9), transparent);
}
.ws-dest-info h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--ivory) !important;
  margin: 0 0 4px !important;
}
.ws-dest-info span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── TESTIMONIAL ───────────────────────────────────────────── */
.ws-testimonial {
  background: var(--warm-gray);
  text-align: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.ws-testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 400px;
  color: rgba(201,168,76,.05);
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.ws-testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; margin-bottom: 28px; }
.ws-testimonial blockquote {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(22px, 3vw, 36px) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  color: var(--ivory) !important;
  max-width: 800px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  border: none !important;
  padding: 0 !important;
}
.ws-testimonial cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── WHY US ────────────────────────────────────────────────── */
.ws-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
}
.ws-why-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
.ws-why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7) saturate(1.1);
}
.ws-why-content {
  padding: 100px 80px;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ws-features { margin-top: 44px; display: flex; flex-direction: column; gap: 32px; }
.ws-feature {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.ws-feature:last-child { border-bottom: none; }
.ws-feature-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.ws-feature-body h4 {
  font-family: 'Cinzel', serif !important;
  font-size: 12px !important;
  letter-spacing: .15em !important;
  color: var(--ivory) !important;
  margin-bottom: 8px !important;
  font-weight: 500 !important;
}
.ws-feature-body p {
  font-size: 13px;
  line-height: 1.8;
  opacity: .64;
  color: var(--ivory);
  margin: 0;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.ws-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
}
.ws-contact-info {
  background: var(--gold);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ws-contact-info h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 48px !important;
  font-weight: 300 !important;
  color: var(--black) !important;
  margin-bottom: 14px !important;
}
.ws-contact-info h2 em { font-style: italic; }
.ws-contact-info p { font-size: 14px; line-height: 1.8; color: rgba(10,10,8,.7); margin-bottom: 36px; }
.ws-contact-detail {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 16px;
}
.ws-contact-detail strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(10,10,8,.55);
  margin-bottom: 2px;
}
.ws-contact-form {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── QUOTE FORM ────────────────────────────────────────────── */
.ws-quote-form { margin-top: 8px; }
.ws-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.ws-full { grid-column: span 2; }
.ws-form-field { display: flex; flex-direction: column; gap: 8px; }
.ws-form-field label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Cinzel', serif;
}
.ws-form-field input,
.ws-form-field select,
.ws-form-field textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(247,243,236,.2) !important;
  color: var(--ivory) !important;
  padding: 12px 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color .3s !important;
  width: 100%;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.ws-form-field input:focus,
.ws-form-field select:focus,
.ws-form-field textarea:focus {
  border-color: var(--gold) !important;
}
.ws-form-field textarea { resize: none; height: 80px; }
.ws-form-field select option { background: var(--deep); }
.ws-submit-btn {
  margin-top: 28px;
  width: 100%;
  background: var(--gold) !important;
  color: var(--black) !important;
  border: none !important;
  padding: 16px 44px !important;
  font-family: 'Cinzel', serif !important;
  font-size: 11px !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: all .35s !important;
  border-radius: 0 !important;
}
.ws-submit-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ws-hero-content { padding: 0 24px 80px; }
  .ws-intro, .ws-why, .ws-contact { grid-template-columns: 1fr; }
  .ws-exp-grid { grid-template-columns: 1fr; }
  .ws-dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ws-dest-large { grid-row: auto; }
  .ws-stats { grid-template-columns: 1fr 1fr; }
  .ws-intro-badge { left: 16px; }
  .ws-dest-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ws-experiences, .ws-destinations, .ws-why-content { padding: 80px 24px; }
  .ws-contact-info, .ws-contact-form { padding: 80px 24px; }
  .ws-intro-text { padding: 80px 24px; }
  .ws-form-grid { grid-template-columns: 1fr; }
  .ws-full { grid-column: span 1; }
}
