* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FEFAF5;
  color: #2C2A29;
  line-height: 1.5;
}

:root {
  --savanna-gold: #D4A373;
  --baobab-brown: #8B5A2B;
  --acacia-green: #2F6B3E;
  --sunset-orange: #E76F51;
  --dusty-cream: #FDF8F0;
  --charcoal: #2E2A28;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-logo-img {
  display: block;
  width: clamp(72px, 8vw, 110px);
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.site-logo-img--footer {
  width: clamp(72px, 8vw, 110px);
  margin-bottom: 0.35rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header {
  background: rgba(255, 252, 245, 0.98);
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--savanna-gold);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--acacia-green);
}
.logo span {
  color: var(--sunset-orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--charcoal);
  transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--sunset-orange);
  border-bottom: 2px solid var(--sunset-orange);
  padding-bottom: 4px;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--acacia-green);
}

/* Buttons */
.btn-primary {
  background: var(--sunset-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #c95a3e;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--savanna-gold);
  color: var(--baobab-brown);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(105deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url('../images/image1.jpg') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
}
.hero-content {
  max-width: 700px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* Section titles */
.section-title {
  font-size: 2.5rem;
  color: var(--acacia-green);
  text-align: center;
  margin-bottom: 2rem;
}
.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--sunset-orange);
  margin: 12px auto 0;
}
.section-padding {
  padding: 80px 0;
}

/* Features on homepage */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  text-align: center;
}
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 12px 20px -10px rgba(0,0,0,0.05);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}
.about-page-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(47, 107, 62, 0.12), transparent 25%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e7 100%);
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
  padding: 72px 0 52px;
}
.about-hero-copy {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.about-hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.02;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.about-hero-copy p {
  max-width: 44rem;
  margin: 0 auto;
  color: #5f564d;
  font-size: 1.08rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 107, 62, 0.08);
  color: var(--acacia-green);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: #554d45;
  line-height: 1.9;
  font-size: 1.1rem;
}
.about-section-subtitle {
  text-align: center;
  color: #776c60;
  margin-top: -0.45rem;
  margin-bottom: 1.25rem;
}
.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.mission-card,
.vision-card {
  background: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 16px 28px -18px rgba(0,0,0,.12);
  text-align: center;
  border: 1px solid rgba(139, 90, 43, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mission-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px -20px rgba(0,0,0,.16);
}
.mission-card i,
.vision-card i {
  font-size: 2.5rem;
  color: var(--sunset-orange);
  margin-bottom: 1rem;
}
.mission-card h3,
.vision-card h3 {
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  text-align: center;
}
.stat-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(139, 90, 43, 0.08);
  box-shadow: 0 14px 24px -18px rgba(0,0,0,.14);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--acacia-green);
  font-family: "Playfair Display", serif;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.team-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 16px 28px -18px rgba(0,0,0,.12);
  border: 1px solid rgba(139, 90, 43, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -22px rgba(0,0,0,.18);
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-info {
  padding: 1.2rem;
}
.team-info h3 {
  color: var(--acacia-green);
  margin-bottom: .2rem;
}
.team-role {
  color: var(--savanna-gold);
  font-weight: 600;
}
.team-bio {
  font-size: .95rem;
  color: #666;
  line-height: 1.65;
}
.conservation-banner {
  background: linear-gradient(135deg, var(--acacia-green), #1E4A2E);
  border-radius: 48px;
  padding: 3rem;
  color: white;
  text-align: center;
  box-shadow: 0 24px 42px -26px rgba(0,0,0,.25);
}
.conservation-banner i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.conservation-banner p {
  max-width: 600px;
  margin: 1rem auto;
  opacity: .9;
  line-height: 1.8;
}
.conservation-banner .btn-primary {
  display: inline-block;
  margin-top: 1rem;
  background: white;
  color: var(--acacia-green);
}

/* Tours grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.tour-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.tour-card:hover {
  transform: translateY(-8px);
}
.tour-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.tour-info {
  padding: 1.5rem;
}
.tour-price {
  color: var(--sunset-orange);
  font-weight: 800;
  font-size: 1.3rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1100;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
}
.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
}
.contact-info i {
  font-size: 1.5rem;
  color: var(--sunset-orange);
  margin-right: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
input, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd0be;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
}
.success-message {
  margin-top: 1rem;
  color: var(--acacia-green);
  font-weight: 600;
}

/* Destinations page */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.dest-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}
.dest-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.dest-card h3 {
  margin: 1rem 0 0.5rem;
}

.destination-page-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.16), transparent 30%),
    radial-gradient(circle at left center, rgba(47, 107, 62, 0.12), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e7 100%);
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
  padding: 72px 0 52px;
}
.destination-hero-copy {
  text-align: center;
}
.destination-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(47, 107, 62, 0.08);
  color: var(--acacia-green);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.destination-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.02;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.destination-hero-copy > p {
  max-width: 48rem;
  margin: 0 auto;
  color: #5f564d;
  font-size: 1.05rem;
}
.destination-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 760px;
}
.destination-stat {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(139, 90, 43, 0.08);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 24px -18px rgba(0, 0, 0, .14);
}
.destination-stat strong {
  display: block;
  color: var(--acacia-green);
  font-size: 1.25rem;
  margin-bottom: .2rem;
}
.destination-stat span {
  color: #6d6257;
  font-size: .93rem;
}
.dest-enhanced-grid {
  margin-top: .6rem;
}
.dest-card-enhanced {
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  border: 1px solid rgba(139, 90, 43, 0.1);
  border-radius: 28px;
  box-shadow: 0 16px 32px -24px rgba(44, 42, 41, 0.24);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.dest-card-enhanced:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 111, 81, 0.2);
  box-shadow: 0 22px 38px -22px rgba(44, 42, 41, 0.3);
}
.dest-media-wrap {
  overflow: hidden;
  border-radius: 22px;
  margin: .75rem .75rem 0;
}
.dest-card-enhanced img {
  height: 220px;
  transition: transform .35s ease;
}
.dest-card-enhanced:hover img {
  transform: scale(1.06);
}
.dest-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
}
.dest-card-body h3 {
  margin: 0 0 .45rem;
  color: var(--charcoal);
  font-size: 1.35rem;
}
.dest-country {
  color: var(--savanna-gold);
  font-size: .9rem;
  margin-bottom: .65rem;
  font-weight: 700;
}
.dest-excerpt {
  color: #605549;
  line-height: 1.75;
  margin-bottom: .95rem;
}
.dest-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Blog */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}
.blog-post {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  border-radius: 28px;
  border: 1px solid rgba(139, 90, 43, 0.1);
  overflow: hidden;
  padding: .9rem;
  box-shadow: 0 16px 32px -24px rgba(44, 42, 41, 0.24);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.blog-post:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 111, 81, 0.2);
  box-shadow: 0 22px 36px -22px rgba(44, 42, 41, 0.3);
}
.blog-post-media {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.blog-post img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform .35s ease;
}
.blog-post:hover .blog-post-media img {
  transform: scale(1.06);
}
.blog-post-content {
  padding: .35rem .35rem .35rem 0;
}
.blog-post-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  margin-bottom: .65rem;
}
.blog-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 163, 115, 0.18);
  color: var(--baobab-brown);
  padding: .34rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.blog-date {
  font-size: .82rem;
  color: #7a6f64;
}
.blog-post h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: .45rem;
}
.blog-post h3 a {
  color: var(--charcoal);
  text-decoration: none;
}
.blog-author {
  color: #7a6f64;
  font-size: .88rem;
  margin-bottom: .55rem;
}
.blog-excerpt {
  color: #5d5248;
  line-height: 1.7;
  margin-bottom: .85rem;
}
.read-more {
  color: var(--sunset-orange);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.blog-empty {
  color: #888;
  padding: 3rem;
  text-align: center;
  background: white;
  border-radius: 24px;
  border: 1px dashed rgba(139, 90, 43, 0.25);
  grid-column: 1 / -1;
}

.blog-page-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.15), transparent 30%),
    radial-gradient(circle at left center, rgba(47, 107, 62, 0.12), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e7 100%);
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
  padding: 72px 0 52px;
}
.blog-hero-copy {
  text-align: center;
}
.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(47, 107, 62, 0.08);
  color: var(--acacia-green);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.02;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.blog-hero-copy > p {
  max-width: 48rem;
  margin: 0 auto;
  color: #5f564d;
  font-size: 1.05rem;
}
.blog-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 760px;
}
.blog-stat {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(139, 90, 43, 0.08);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 24px -18px rgba(0, 0, 0, .14);
}
.blog-stat strong {
  display: block;
  color: var(--acacia-green);
  font-size: 1.25rem;
  margin-bottom: .2rem;
}
.blog-stat span {
  color: #6d6257;
  font-size: .93rem;
}
.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.blog-toolbar h2 {
  font-size: 1.4rem;
  color: var(--charcoal);
}
.blog-categories {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}
.blog-chip {
  padding: .45rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 163, 115, .5);
  text-decoration: none;
  color: var(--baobab-brown);
  font-weight: 700;
  font-size: .88rem;
  background: #fff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.blog-chip.active,
.blog-chip:hover {
  background: var(--savanna-gold);
  color: #fff;
  border-color: var(--savanna-gold);
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.blog-page-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--savanna-gold);
  color: var(--baobab-brown);
  text-decoration: none;
  font-weight: 700;
}
.blog-page-dot.active {
  background: var(--savanna-gold);
  color: #fff;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, #2F6B3E10, #E76F5110);
  padding: 60px 0 40px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  color: var(--acacia-green);
}

/* Tours page */
.tour-page-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(47, 107, 62, 0.12), transparent 25%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e7 100%);
  border-bottom: 1px solid rgba(139, 90, 43, 0.08);
  padding: 72px 0 52px;
}
.tour-hero-copy {
  max-width: 840px;
  margin: 0 auto;
}
.tour-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 107, 62, 0.08);
  color: var(--acacia-green);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tour-hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.02;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.tour-hero-copy p {
  max-width: 42rem;
  margin: 0 auto;
  color: #5f564d;
  font-size: 1.08rem;
}
.tour-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 720px;
}
.tour-stat {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 90, 43, 0.08);
  border-radius: 22px;
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 24px -18px rgba(0, 0, 0, 0.14);
}
.tour-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--acacia-green);
  margin-bottom: 0.25rem;
}
.tour-stat span {
  font-size: 0.95rem;
  color: #6d6257;
}
.tour-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.tour-toolbar h2 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-top: 0.25rem;
}
.tour-filter-note {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(212, 163, 115, 0.12);
  color: var(--baobab-brown);
  font-weight: 700;
  white-space: nowrap;
}
.tours-grid {
  margin-top: 1.5rem;
}
.tour-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  border: 1px solid rgba(139, 90, 43, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 36px -24px rgba(44, 42, 41, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.tour-card:hover {
  transform: translateY(-8px);
  border-color: rgba(231, 111, 81, 0.18);
  box-shadow: 0 28px 48px -26px rgba(44, 42, 41, 0.32);
}
.tour-img {
  position: relative;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.tour-card:hover .tour-img img {
  transform: scale(1.06);
}
.tour-info {
  padding: 1.5rem 1.5rem 1.4rem;
}
.tour-info h3 {
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.tour-info > p {
  color: #64594f;
  line-height: 1.7;
}
.tour-badge,
.tour-featured {
  position: absolute;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tour-badge {
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--baobab-brown);
}
.tour-featured {
  right: 16px;
  background: var(--sunset-orange);
  color: #fff;
}
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 0.8rem;
}
.tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(47, 107, 62, 0.08);
  color: #4a5a43;
  font-size: 0.92rem;
  font-weight: 600;
}
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 90, 43, 0.1);
}
.tour-price {
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.tour-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-small {
  background: rgba(212, 163, 115, 0.12);
  color: var(--baobab-brown);
  border: 1px solid rgba(212, 163, 115, 0.2);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-small:hover {
  background: rgba(212, 163, 115, 0.2);
  transform: translateY(-1px);
}

/* Footer */
footer {
  background: #2A241F;
  color: #e2d9d0;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 163, 115, 0.15), transparent 30%),
    radial-gradient(circle at bottom right, rgba(47, 107, 62, 0.16), transparent 32%);
  pointer-events: none;
}
.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 2rem;
  padding: 1rem 0 2rem;
}
.footer-brand-block,
.footer-column {
  min-width: 0;
}
.footer-logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff4e6;
  margin-bottom: 0.4rem;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  color: var(--savanna-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-description {
  max-width: 34rem;
  color: #d7cbc0;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 163, 115, 0.35);
}
.footer-column h4 {
  color: #fff6eb;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.footer-links,
.footer-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li,
.footer-details li + li {
  margin-top: 0.85rem;
}
.footer-links a {
  color: #d8cbc0;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-details li {
  display: flex;
  gap: 0.9rem;
  color: #d8cbc0;
  line-height: 1.6;
}
.footer-details i {
  color: var(--savanna-gold);
  margin-top: 0.25rem;
  width: 18px;
  flex-shrink: 0;
}
.footer-action-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 1.4rem;
}
.footer-action-card p {
  color: #d7cbc0;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.footer-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-action-btn {
  min-width: 140px;
  text-align: center;
  justify-content: center;
}
.footer-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  background: rgba(255,255,255,0.07);
  color: #f2e7db;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.footer-social-links a:hover {
  transform: translateY(-2px);
  background: var(--sunset-orange);
  color: #fff;
}
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(226, 217, 208, 0.16);
  padding-top: 1rem;
  color: #d8cbc0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.footer-bottom-note {
  color: rgba(216, 203, 192, 0.72);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fffaf5;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .about-grid, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-list {
    grid-template-columns: 1fr;
  }
  .blog-post {
    grid-template-columns: 1fr;
  }
  .blog-post-content {
    padding-right: .2rem;
  }
  .blog-post-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-hero-stats {
    grid-template-columns: 1fr;
  }
  .mission-vision,
  .detail-top,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .tour-hero-stats {
    grid-template-columns: 1fr;
  }
  .destination-hero-stats {
    grid-template-columns: 1fr;
  }
  .dest-card-enhanced {
    border-radius: 24px;
  }
  .dest-media-wrap {
    margin: .65rem .65rem 0;
  }
  .tour-toolbar,
  .tour-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .tour-actions {
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .footer-shell {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}