/* RESET & GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base size, use rem units for consistent scaling */
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: #111827; /* Dark gray text */
  background-color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  color: #1f2937;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* CONTAINER (optional, for layout) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BUTTONS (basic) */
button,
.button {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s;
}

button:hover,
.button:hover {
  background-color: #1d4ed8;
}

/* MOBILE FIRST / RESPONSIVE */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.35rem; }
  h4 { font-size: 1.15rem; }

  .container {
    padding: 0 1.25rem;
  }
}

/* UTILITY CLASSES (helpful) */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* IMPORTANT: Add this to your existing styles.css */
/* These are the UNIQUE styles from your homepage that aren't in the base CSS */

/* Safari Climb Theme Colors & Specifics */
.top-bar {
    background: #1e3a2f;
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contact a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact a:hover {
    color: #f4c542;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: white;
    font-size: 1.1rem;
    transition: 0.3s;
}

.top-bar-social a:hover {
    color: #f4c542;
    transform: translateY(-2px);
}

.main-header {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.main-nav a {
    color: #1e3a2f;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #f4c542;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e3a2f;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    background: #f4c542;
    color: #1e3a2f;
    padding: 14px 32px;
    border-radius: 40px;
    margin: 0 8px;
}

.btn-primary {
    background: #f4c542;
    color: #1e3a2f;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f4c542;
    color: #f4c542;
}

.btn-secondary:hover {
    background: #f4c542;
    color: #1e3a2f;
}

.btn-small {
    background: #1e3a2f;
    color: #f4c542;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-top: 12px;
}

.btn-small:hover {
    background: #f4c542;
    color: #1e3a2f;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.trust-item {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.trust-item span {
    font-size: 1.5rem;
    margin-right: 8px;
}

.stats-section {
    background: #1e3a2f;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #f4c542;
}

.stat-note {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 5px;
}

.reviews-section {
    background: #f5ede4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #f4c542;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1e3a2f;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}

.review-author {
    font-weight: bold;
    color: #1e3a2f;
}

.review-date {
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
}

.tripadvisor-link {
    text-align: center;
    margin-top: 40px;
}

.tripadvisor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00aa6c;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}

.tripadvisor-btn:hover {
    background: #008a56;
    transform: scale(1.02);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px 25px 25px;
}

.card h3 {
    color: #1e3a2f;
    margin-bottom: 10px;
}

.price {
    color: #f4c542;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 12px 0;
}

.about-section {
    background: #f5ede4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 1.8rem;
    color: #1e3a2f;
    margin-bottom: 15px;
}

.signature {
    margin-top: 20px;
    font-style: italic;
    color: #f4c542;
    font-weight: bold;
}

.badge {
    display: inline-block;
    background: #1e3a2f;
    color: #f4c542;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.faq-section {
    background: white;
}

.faq-item {
    background: #f5ede4;
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 20px 25px;
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1e3a2f;
    margin-bottom: 10px;
}

.guarantee-box {
    background: #1e3a2f;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.site-footer {
    background: #0e2a22;
    color: #ddd;
    padding-top: 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #2e5a48;
    padding-bottom: 2rem;
}

.footer-col h4 {
    color: #f4c542;
    margin-bottom: 1.2rem;
}

.footer-col a {
    color: #cfe6dd;
    text-decoration: none;
}

.footer-col a i {
    width: 1.2rem;
    font-size: 0.85rem;
    color: #f4c542;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .main-nav a {
        margin-left: 15px;
        font-size: 0.85rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        margin: 5px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .top-bar-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav a {
        margin-left: 0;
        padding: 8px 0;
    }
}

/* RESET & GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: #111827;
  background-color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  color: #1f2937;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BUTTONS */
button,
.button {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s;
}

button:hover,
.button:hover {
  background-color: #1d4ed8;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* ==================== SAFARI CLIMB CUSTOM STYLES ==================== */

/* Section padding */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #1e3a2f;
}

.section-header p {
  max-width: 700px;
  margin: 10px auto 0;
  color: #555;
}

/* Hero Section */

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
}

.trust-item {
  text-align: center;
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.trust-item span {
  font-size: 1.5rem;
  margin-right: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #f4c542;
  color: #1e3a2f;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 40px;
  transition: 0.3s;
  margin: 0 8px;
}

.btn-primary {
  background: #f4c542;
  color: #1e3a2f;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #f4c542;
  color: #f4c542;
}

.btn-secondary:hover {
  background: #f4c542;
  color: #1e3a2f;
}

.btn-small {
  display: inline-block;
  background: #1e3a2f;
  color: #f4c542;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-top: 12px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-small:hover {
  background: #f4c542;
  color: #1e3a2f;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

/* Routes Grid - Kilimanjaro Specific */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.route-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-content {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.route-title {
  font-size: 1.7rem;
  color: #1e3a2f;
  margin-bottom: 8px;
  font-weight: 700;
}

.route-duration {
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.route-desc {
  color: #3a5a4a;
  margin-bottom: 16px;
  line-height: 1.5;
}

.route-features {
  list-style: none;
  margin: 15px 0;
}

.route-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.route-features i {
  color: #f4c542;
  width: 20px;
}

.price-badge {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e3a2f;
  margin: 12px 0 5px;
}

/* Info Card (Gradient) */
.info-card {
  background: linear-gradient(135deg, #1e3a2f 0%, #2a5a48 100%);
  color: white;
}

.info-card .route-title,
.info-card .route-duration,
.info-card .route-features i {
  color: #f4c542;
}

.info-card .route-desc,
.info-card .route-features li {
  color: #f0f5f2;
}

.info-card .price-badge {
  color: #f4c542;
}

.info-btn {
  background: #f4c542;
  color: #1e3a2f;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: 0.2s;
  text-align: center;
}

.info-btn:hover {
  background: #e0b03b;
  transform: translateY(-2px);
}

/* Badge */
.badge {
  display: inline-block;
  background: #1e3a2f;
  color: #f4c542;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  margin-bottom: 15px;
}

/* Signature */
.signature {
  margin-top: 20px;
  font-style: italic;
  color: #f4c542;
  font-weight: bold;
}

/* FAQ Section */
#faq-section {
  scroll-margin-top: 90px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.02);
  text-decoration: none;
  color: white;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.35rem; }
  h4 { font-size: 1.15rem; }

  .container {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero {
    min-height: 65vh;
  }

  .btn {
    padding: 10px 20px;
    margin: 5px;
  }

  .trust-badges {
    gap: 15px;
  }

  .routes-grid {
    gap: 25px;
  }

  .route-title {
    font-size: 1.4rem;
  }

  .card-content {
    padding: 18px 20px 22px;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-item {
    width: fit-content;
  }
}

/* ==================== MARANGU ROUTE PAGE STYLES ==================== */

/* Itinerary specific styles */
.itinerary {
    max-width: 900px;
    margin: 0 auto;
}

.day-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border-left: 5px solid #f4c542;
}

.day-card:hover {
    transform: translateX(5px);
}

.day-number {
    font-size: 1.3rem;
    color: #f4c542;
    font-weight: bold;
    margin-bottom: 8px;
}

.day-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a2f;
    margin-bottom: 15px;
}

.day-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.stat {
    background: #f5ede4;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a2f;
}

.stat i {
    margin-right: 8px;
    color: #f4c542;
}

.day-description {
    color: #2c4e3c;
    margin-bottom: 15px;
    line-height: 1.7;
}

.day-features {
    list-style: none;
    margin-top: 15px;
}

.day-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-features i {
    color: #f4c542;
    width: 22px;
}

/* Info grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-item h3 {
    color: #1e3a2f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-item i {
    color: #f4c542;
    margin-right: 8px;
}

/* Price table */
.price-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: bold;
    color: #1e3a2f;
}

.price-value {
    color: #e67e22;
    font-weight: bold;
}

/* FAQ grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #1e3a2f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .day-title {
        font-size: 1.4rem;
    }
    
    .day-stats {
        gap: 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-marangu h1 {
        font-size: 1.8rem;
    }
}

/* ==================== 5-DAY SAFARI UNIQUE STYLES ==================== */
/* Reuses .day-card, .day-number, .day-title, .day-stats, .stat, 
   .day-description, .day-features, .faq-grid, .faq-item, 
   .info-grid, .info-item from Marangu Route CSS */

/* Safari Price Grid (3 columns - Budget, Mid-range, Luxury) */
.safari-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-header {
    padding: 25px 20px;
    text-align: center;
    color: white;
}

.price-header.budget {
    background: #2c5a44;
}

.price-header.midrange {
    background: #e67e22;
}

.price-header.luxury {
    background: #c0392b;
}

.price-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
}

.price-note {
    font-size: 0.8rem;
    opacity: 0.9;
}

.price-body {
    padding: 20px;
}

.price-body ul {
    list-style: none;
}

.price-body li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.price-body i.fa-check {
    color: #27ae60;
    width: 20px;
}

.price-body i.fa-times {
    color: #e74c3c;
    width: 20px;
}

.price-body i.fa-star {
    color: #f4c542;
    width: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .safari-price-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .hero-safari-5days h1 {
        font-size: 1.8rem;
    }
}

/* ==================== TARANGIRE DAY TRIP UNIQUE STYLES ==================== */
/* Reuses .day-card, .day-number, .day-title, .day-stats, .stat, 
   .day-description, .day-features, .faq-grid, .faq-item, 
   .info-grid, .info-item from Marangu Route CSS */
/* Reuses .safari-price-grid, .price-card, .price-header, .price-body from 5-Day Safari CSS */

/* Responsive */
@media (max-width: 768px) {
    .hero-tarangire h1 {
        font-size: 1.8rem;
    }
}

/* ============================================
   FOUNDER STORY SECTION
============================================ */

.founder-story-section {
    background: #ffffff;
    padding: 100px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3a2f;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Grid Layout */
.about-founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

/* Image Column */
.about-founder-image {
    position: sticky;
    top: 100px;
}

/* Founder Image */
.about-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Caption */
.about-img-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #2c4e3c;
    font-size: 0.95rem;
}

/* Text Content */
.about-founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c4e3c;
    margin-bottom: 25px;
}

/* Signature Box */
.dorothy-signature {
    background: #f5ede4;
    padding: 25px;
    border-radius: 18px;
    margin-top: 40px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
    color: #1e3a2f;
}

.signature-name {
    font-weight: 700;
    color: #1e3a2f;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */

@media (max-width: 992px) {

    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-founder-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {

    .founder-story-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-founder-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .dorothy-signature {
        padding: 20px;
    }

}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-card i {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #1e3a2f;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: #f5ede4;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-img-placeholder {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1e3a2f;
}

.team-title {
    color: #f4c542;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Office Section */
.office-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.office-details {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.office-address, 
.office-hours, 
.office-contact, 
.office-invite {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0e6dc;
}

.office-details i {
    font-size: 28px;
    color: #1e3a2f;
    min-width: 45px;
}

.office-details h4 {
    margin-bottom: 8px;
    color: #1e3a2f;
}

.office-details p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.office-details a {
    color: #1e3a2f;
    text-decoration: none;
}

.office-details a:hover {
    color: #f4c542;
}

.office-map {
    background: #e8dfd4;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

/* Testimonials Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f5ede4;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.testimonial-card i.fa-star {
    margin-right: 3px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #2c4e3c;
    margin: 15px 0;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3a2f;
    margin-top: 15px;
}

/* Contact CTA */
#contact-cta .btn {
    display: inline-block;
    margin: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-founder-image {
        position: static;
    }
    
    .office-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-about {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .team-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .office-address, 
    .office-hours, 
    .office-contact, 
    .office-invite {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .office-details i {
        margin: 0 auto;
    }
    
    .hero-about h1 {
        font-size: 2rem;
    }
}

