/*
Theme Name: Explore Jawai
Theme URI: https://wordpress.org/themes/twentytwelve/
Author: the WordPress team
Author URI: https://wordpress.org/
*/



/* =Reset
-------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --orange: #E85D04;
  --orange-dark: #c44d00;
  --orange-light: #fff4ed;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --gray: #f7f6f4;
  --gray2: #e8e4df;
  --text: #1a1209;
  --text2: #5c5040;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }


/* ── TOP CONTACT BAR ─────────────────────────────── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  padding: 8px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  z-index: 1001;bottom: 0;width: 100%;
}
footer p{margin-bottom: 50px}
.top-bar-label {
  font-size: 12px;
  color: var(--text2);
  margin-right: 4px;
}
.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.top-bar-btn:hover { opacity: 0.88; transform: scale(1.02); }
.top-bar-btn.whatsapp {
  background: #25D366;
  color: white;
}
.top-bar-btn.call {
  background: #1a3c34;
  color: white;
}
.top-bar-btn.call img{filter: brightness(0) invert(1)}
.top-bar-btn svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo .logo-icon {
  max-width: 260px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.navbar-logo .logo-icon svg { width: 22px; height: 22px; fill: white; }
.navbar-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-logo .logo-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.35s;
}
.navbar-logo .logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  transition: color 0.35s;
}
.navbar.scrolled .logo-title { color: var(--text); }
.navbar.scrolled .logo-sub { color: var(--text2); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--orange); }
.navbar.scrolled .navbar-links a { color: var(--text2); }
.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active { color: var(--orange); }

.btn-booknow {
  background: var(--orange);
  color: white !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-booknow:hover { background: var(--orange-dark); transform: scale(1.03); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: background 0.35s;
}
.navbar.scrolled .hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 20px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray2);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: none;
}
.btn:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(232,93,4,0.30); }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange-light); }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.60) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-content p {
  font-size: clamp(15px, 2.2vw, 19px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ── PAGE HERO (short) ─────────────────────────── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.page-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}

.orange-hero {
  height: 38vh;
  min-height: 240px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ── SECTION ─────────────────────────────────────── */
section { padding: 80px 24px; }
.container { max-width: 1120px; margin: 0 auto; }

.section-heading {
  text-align: center;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ── ICON CIRCLE ─────────────────────────────────── */
.icon-circle {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; }

/* ── DISCOVER SECTION ─────────────────────────────── */
.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.discover-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
}
.discover-text p { color: var(--text2); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.discover-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
}
.chip svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 2; }
.discover-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.discover-img img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.discover-img:hover img { transform: scale(1.04); }

/* ── FEATURE CARDS ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray2);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .icon-circle { margin: 0 auto 18px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── DARK CTA ─────────────────────────────────────── */
.dark-cta {
  background: var(--dark2);
  padding: 80px 24px;
  text-align: center;
}
.dark-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}
.dark-cta p { font-size: 17px; color: rgba(255,255,255,0.70); margin-bottom: 36px; }
.dark-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── MISSION ─────────────────────────────────────── */
.mission-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text2);
  font-size: 16px;
  line-height: 1.8;
}
.mission-text p + p { margin-top: 18px; }

/* ── VALUES GRID ─────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.value-item h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── STORY ─────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.story-img img { width: 100%; height: 380px; object-fit: cover; }
.story-text h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 18px; color: var(--text); }
.story-text p { color: var(--text2); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }

/* ── SAFARI PACKAGES ─────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  border-radius: 14px;
  border: 1px solid var(--gray2);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card-img { height: 210px; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.package-card:hover .package-card-img img { transform: scale(1.06); }
.package-card-body { padding: 24px; }
.package-card-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.package-meta { display: flex; gap: 14px; margin-bottom: 14px; }
.package-meta span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--text2);
}
.package-meta svg { width: 14px; height: 14px; stroke: var(--text2); fill: none; stroke-width: 2; }
.package-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
}
.package-price span { font-size: 14px; font-weight: 500; color: var(--text2); }
.package-features { list-style: none; margin-bottom: 20px; }
.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text2);
  padding: 5px 0;
}
.package-features li svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ── EXPECT ─────────────────────────────────────── */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.expect-item .icon-circle { margin: 0 auto 14px; }
.expect-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.expect-item p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── TIPS ─────────────────────────────────────── */
.tips-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
}
.tip-item svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

/* ── GALLERY ─────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--gray2);
  background: white;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--orange); color: var(--orange); }
.filter-tab.active { background: var(--orange); border-color: var(--orange); color: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.3); }
.gallery-item.hidden { display: none; }

.orange-cta {
  background: var(--orange);
  padding: 64px 24px;
  text-align: center;
}
.orange-cta h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: white; margin-bottom: 12px; }
.orange-cta p { font-size: 16px; color: rgba(255,255,255,0.88); margin-bottom: 30px; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info h2 { font-size: 24px; font-weight: 800; margin-bottom: 28px; color: var(--text); }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item .icon-circle { flex-shrink: 0; }
.contact-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text2); line-height: 1.7; }

.quick-tips {
  background: var(--orange-light);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}
.quick-tips h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.quick-tips ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.quick-tips li {
  font-size: 13px; color: var(--text2);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.quick-tips li::before {
  content: "•";
  color: var(--orange);
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}

.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 36px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray2);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--orange-dark); transform: scale(1.02); }

/* ── ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }

/* ── BG SECTIONS ─────────────────────────────────── */
.bg-gray { background: var(--gray); }
.bg-white { background: var(--white); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid, .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar-label{display: none}
  .navbar { padding: 16px 20px; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 56px 20px; }
  .discover-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .discover-img { order: -1; }
  .discover-img img, .story-img img { height: 280px; }
  .features-grid, .expect-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid, .expect-grid, .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
