/* ==========================================================================
   1. CSS VARIABLES, RESETS & BASE STYLES
   ========================================================================== */
:root {
    --brand-orange: #E46A25;
    --brand-orange-hover: #c95a1c;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --light-gray: #f9fafb;
    --primary-orange: #F97316;
    --border-color: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    color: var(--text-dark);
    background-color: #f5f5f5; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-orange { color: var(--primary-orange); }

/* ==========================================================================
   2. HERO SECTION & HEADER (NAVIGATION)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.png') center/cover no-repeat;
    padding-bottom: 80px; 
}

header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    color: #1A5F3A; 
}
.logo span { color: var(--brand-orange); }

nav ul {
    display: flex;
    gap: 30px;
    font-weight: 600;
    font-size: 15px;
}

nav ul a {
    color: #fff;
    transition: color 0.3s;
}


nav ul a:hover {
    color: var(--brand-orange);
}

#navbar ul li a {
    font-size: 22px;   /* Increase text size */
    font-weight: 600;  /* Optional: make it bold */
    color: #fff;       /* Change color if needed */
    text-decoration: none;
    padding: 10px 15px;
}


/* Hide by default */
.menu-toggle{
    display: none !important;
}





/* ==========================================================================
   3. HERO CONTENT & BUTTONS
   ========================================================================== */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    max-width: 650px;
    position: relative;
    z-index: 10;
    margin-top: 20px;
}

.hero-badge {
    align-self: flex-start;
    background-color: white;
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}

.hero-content h1 span { color: var(--brand-orange); }

.hero-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange {
    background-color: var(--brand-orange) !important;
    color: white !important;
}

.btn-orange:hover {
    background-color: var(--brand-orange-hover) !important;
}

.btn-white, .btn-transparent {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff;
}

.btn-white:hover, .btn-transparent:hover {
    background-color: #f8f9fa !important;
    color: #ff6b00 !important;
}


/* Desktop */
.header-whatsapp-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile & Tablet */
@media (max-width: 991px){

    .header-whatsapp-btn{
        display: inline-flex !important;
        width: 100%;
        max-width: 320px;
        margin: 15px auto;
        text-align: center;
        justify-content: center;
    }

}

/* ==========================================================================
   4. FLOATING STATS BAR
   ========================================================================== */
.stats-wrapper {
    position: absolute;
    bottom: -40px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 100px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 20;
}

.stat-item { display: flex; align-items: center; gap: 16px; }
.stat-text h3 { font-size: 24px; font-weight: 800; margin-bottom: 2px; }
.stat-text p { font-size: 13px; color: var(--text-gray); font-weight: 500; }

/* ==========================================================================
   5. SECTIONS LAYOUT (TRIPS, WHY CHOOSE US, TRIBE)
   ========================================================================== */
/* Upcoming Trips */
.trips-section { padding: 100px 0 60px 0; background-color: #ffffff; }

.trips-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

.trips-header h2 { font-size: 32px; font-weight: 700; color: #222; }
.view-all-link { color: #c25e25; font-weight: 700; font-size: 16px; margin-left: auto; }

.trips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.trip-card {
    position: relative;
    height: 340px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.trip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.85) 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trip-badge {
    align-self: flex-start;
    background-color: #c25e25;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
}

.trip-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.trip-meta-row { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: rgba(255, 255, 255, 0.9); margin-bottom: 16px; }
.trip-price { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.trip-btn { background-color: #c25e25; color: #ffffff; padding: 10px 16px; font-size: 14px; font-weight: 600; border-radius: 10px; text-align: center; }
.trip-btn.is-sold-out { background-color: rgba(255, 255, 255, 0.35); color: rgba(255, 255, 255, 0.9); cursor: not-allowed; }

.trips-header{
    position: relative;
    margin-bottom: 32px;
    text-align: center;
}

.trips-header .section-title{
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.view-all-link{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #c25e25;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.trip-price{
    font-size:20px;
    font-weight:800;
    color:#fff;
    margin-bottom:14px;
}

.price-separator{
    font-size:16px;
    margin:0 4px;
}

.price-small{
    font-size:15px;
    font-weight:600;
    opacity:0.9;
}


/* Why Choose Us */
.why-section { padding: 80px 0; background-color: #ffffff; }
.section-title { text-align: center; font-size: 36px; font-weight: 800; margin-bottom: 50px; }
.section-title span { color: #d96a2b; }
.section-title::after { content: ''; display: block; width: 50px; height: 4px; background: #ff6600; margin: 15px auto; border-radius: 2px; }

.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.feature-item {
    background-color: #fafbfc;
    padding: 32px 16px;
    border-radius: 24px 24px 12px 12px;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.feature-item.border-orange { border-top-color: #f96302; }
.feature-item.border-purple { border-top-color: #9254de; }
.feature-item.border-red    { border-top-color: #e04b39; }
.feature-item.border-dark   { border-top-color: #2d3748; }
.feature-item.border-green  { border-top-color: #27ae60; }
.feature-icon { color: #ff6b00; margin-bottom: 24px; }
.feature-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.feature-item p { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* ==========================================
   Why Choose Us Section - Soft Theme (1-Row)
============================================= */

.why-section {
  background-color: #fcf9f4; /* Matching soft, warm background */
  padding: 80px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #333333;
}

.container {
  max-width: 1400px; /* Widened container to fit all 5 cards comfortably */
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1a1a1a;
}

/* Accent highlight for the number (e.g., 500+) */
.section-title span {
  color: #ff6b6b; 
  font-weight: 700;
}

/* 5-Column Grid (All 5 boxes in 1 row) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; /* Tightened gap so they all fit nicely */
}

/* Card base styles */
.feature-item {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #cccccc; /* Border on top for horizontal layouts */
  text-align: center; /* Centers text inside the cards */
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Dynamic Border Accents matching your HTML classes */
.border-orange { border-top-color: #ff922b; }
.border-purple { border-top-color: #845ef7; }
.border-red    { border-top-color: #ff6b6b; }
.border-dark   { border-top-color: #343a40; }
.border-green  { border-top-color: #51cf66; }

/* Icon Wrapper Styles */
.feature-icon {
  margin-bottom: 15px;
  display: inline-block;
}

/* Matching icon colors to their corresponding borders */
.border-orange .feature-icon { color: #ff922b; }
.border-purple .feature-icon { color: #845ef7; }
.border-red    .feature-icon { color: #ff6b6b; }
.border-dark   .feature-icon { color: #343a40; }
.border-green  .feature-icon { color: #51cf66; }

.feature-item h3 {
  font-size: 1.15rem;
  margin: 0 0 10px 0;
  color: #1a1a1a;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Handling for Tablets and Mobile */
@media (max-width: 1024px) {
  /* On tablets, wrap them into 2-3 columns so they don't squash */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 480px) {
  /* On mobile, stack them vertically */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}



/* Meet Your Tribe */
.tribe-section { background-color: var(--light-gray); padding: 80px 0; border-top: 1px solid var(--border-color); }
.tribe-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.tribe-item { text-align: center; }
.tribe-avatar { width: 112px; height: 112px; border-radius: 50%; border: 4px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.05); margin: 0 auto 16px auto; overflow: hidden; transition: border-color 0.3s; }
.tribe-item:hover .tribe-avatar { border-color: var(--primary-orange); }
.tribe-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tribe-item h4 { font-size: 14px; font-weight: 700; }
.tribe-item p { font-size: 12px; color: #9CA3AF; margin-top: 2px; }
.tribe-callout { background-color: #FFF5F0; border: 1px solid #FFE4D6; border-radius: 16px; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.tribe-callout h4 { font-size: 14px; margin: 8px 0 4px 0; }
.callout-desc { font-size: 12px; color: #6B7280; }

/* ==========================================================================
   6. INSTAGRAM VIDEOS & TESTIMONIALS
   ========================================================================== */
.embed-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 40px 20px; }
.ig-card { width: 320px; background: #ffffff; border: 1px solid #dbdbdb; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 5px 15px rgba(0,0,0,.08); margin-bottom: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ig-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; }
.user-info { display: flex; align-items: center; color: #000; font-weight: 600; }
.profile-pic { width: 32px; height: 32px; border-radius: 50%; background: #ccc; margin-right: 10px; }
.view-profile-btn { background: none; border: none; color: #0095f6; font-weight: 600; cursor: pointer; }
.ig-media { width: 100%; display: flex; justify-content: center; background: #fff; }
.ig-footer { padding: 14px; text-align: center; }
.comment-box { border-top: 1px solid #efefef; padding-top: 14px; margin-top: 10px; }
.view-more { color: #8e8e8e; font-weight: 600; font-size: 14px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; padding: 20px; }
.testimonial-card { grid-column: span 4; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 30px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.user-badge span { background: linear-gradient(135deg, #6e8efb, #a777e3); color: #fff; padding: 10px; border-radius: 50%; display: inline-block; text-align: center; width: 40px; }

.ig-card:hover, .testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.12); }

/* Memories Grid */
.memories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px; max-width: 1200px; margin: 0 auto; }
.memory-card { border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.memory-card img { width: 100%; height: 300px; object-fit: cover; }
.memory-card:hover { transform: scale(1.02); }
/*.action-btn { text-align: center; margin-top: 30px; }*/
/*.action-btn button { background-color: #d35400; color: white; border: none; padding: 12px 30px; border-radius: 5px; font-weight: bold; cursor: pointer; }*/

.action-btn{
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.action-btn button{
    background: #c25e25;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn button:hover{
    background: #a74f1f;
}

/* ==========================================================================
   7. HOW IT WORKS & CTA BANNER
   ========================================================================== */
.how-it-works-section { padding: 80px 0; background-color: #ffffff; }
.section-header { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; }
.section-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.accent-line { width: 60px; height: 4px; background-color: #d96a2b; border-radius: 2px; }
.process-flow { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.step-item { position: relative; flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.step-icon { color: #000000; margin-bottom: 24px; }
.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.step-item p { font-size: 15px; color: #555555; line-height: 1.5; max-width: 200px; }
.step-arrow { position: absolute; top: 60px; right: -30px; font-size: 26px; color: #000000; font-weight: 300; pointer-events: none; }

/* ==========================================
   How It Works Section - Soft Theme
============================================= */

.how-it-works-section {
  background-color: #fcf9f4; /* Soft, warm background color */
  padding: 80px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  color: #333333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: #ff6b6b; /* Soft coral accent color */
  margin: 0 auto;
  border-radius: 2px;
}

/* Process Flow Layout */
.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

/* White card circles to pop against the soft background */
.step-icon {
  background-color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  color: #ff6b6b; 
}

.step-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.step-item p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Connecting Arrows */
.step-arrow {
  position: absolute;
  top: 40px;
  right: -20px;
  font-size: 20px;
  color: #cccccc;
  transform: translateY(-50%);
}

/* Hide the last arrow */
.step-item:last-child .step-arrow {
  display: none;
}

/* Responsive Grid for Tablets/Mobile */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-arrow {
    display: none; /* Hides horizontal arrows on mobile view */
  }
}



/* CTA Banner */
.cta-section-wrap { margin-top: 40px; }
.cta-banner { background: linear-gradient(90deg, #F97316 0%, var(--primary-orange) 100%); border-radius: 24px; padding: 48px; color: white; display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; }
.cta-text h3 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.cta-text p { color: #FFEDD5; font-size: 14px; }
.cta-btns { display: flex; gap: 16px; }

.btn-white {
    background-color: #ffffff;
    color: #25D366; /* WhatsApp Green color for the text/icon */
    border: 1px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background-color: #f7f7f7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ==========================================================================
   8. SITE FOOTER
   ========================================================================== */
.site-footer { background-color: #1a1a1a; color: #e0e0e0; padding: 60px 0 20px 0; font-size: 15px; line-height: 1.6; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.footer-col { flex: 1; min-width: 220px; }
.footer-col.about-col { flex: 1.5; }
.footer-logo { max-width: 150px; height: auto; margin-bottom: 20px; }
.footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 25px; position: relative; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background-color: #ff6600; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #b0b0b0; transition: color 0.3s; }
.footer-links a:hover { color: #ff6600; }
.footer-cta-btn { display: inline-flex; align-items: center; background-color: #ff6600; color: #fff; padding: 12px 20px; border-radius: 6px; font-weight: 600; gap: 10px; }
.footer-cta-btn:hover { background-color: #e05500; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #2d2d2d; color: #fff; border-radius: 50%; margin-right: 10px; transition: background 0.3s; }
.social-links a:hover { background: #ff6600; }
.footer-bottom { border-top: 1px solid #2d2d2d; padding-top: 20px; text-align: center; font-size: 14px; color: #8c8c8c; }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #484848; /* Matches your body text color */
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-icon {
    color: #ff5a5f; /* Your brand accent color */
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #ff5a5f; /* Subtle change on hover */
}

/* ==========================================================================
   9. PERFECT GLOBAL RESPONSIVE MEDIA QUERIES (MOBILE VIEW & NAV FIX)
   ========================================================================== */
@media (max-width: 991px) {
    header {
        padding: 15px 20px !important;
        width: 100%;
        background: rgba(0, 0, 0, 0.8) !important;
    }

    .menu-toggle {
        display: block !important;
    }

    #navbar {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 9999 !important;
        padding: 20px 0;
    }

    #navbar.mobile-active {
        display: block !important;
    }

    #navbar ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #navbar ul li {
        width: 100%;
        text-align: center;
    }

    #navbar ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        color: #333 !important;
        font-weight: 600;
    }

    .header-whatsapp-btn {
        display: none !important;
    }

    .hero-content h1 { font-size: 42px; }
    .trips-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .tribe-grid { grid-template-columns: repeat(3, 1fr); }
    .process-flow { gap: 20px; }
    .step-arrow { right: -20px; font-size: 20px; }

    .stats-wrapper { 
        flex-direction: column; 
        border-radius: 24px; 
        padding: 30px; 
        gap: 24px; 
        bottom: -120px;
        width: 95%;
    }
    .hero-section { padding-bottom: 140px; }
}

@media (max-width: 768px) {
    .hero-content { align-items: center; text-align: center; margin-top: 40px; }
    .hero-content h1 { font-size: 34px; }
    .hero-buttons { justify-content: center; }
    
    .trips-header { flex-direction: column; gap: 12px; text-align: center; }
    .trips-header h2 { position: static; transform: none; left: auto; }
    .view-all-link { margin: 0 auto; }

    .trips-grid, .memories-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonial-card { grid-column: span 12; }
    
    .process-flow { flex-direction: column; align-items: center; gap: 48px; }
    .step-arrow { display: none; }

    .cta-banner { flex-direction: column; text-align: center; gap: 24px; padding: 32px; }
    .footer-row { flex-direction: column; }
    .footer-col { width: 100%; }
}

@media (max-width: 480px) {
    .tribe-grid { grid-template-columns: 1fr; }
}

  Common Section Title
========================================== */

.section-title,
.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 50px;
    line-height: 1.2;
}

.section-title span,
.section-header h2 span {
    color: #E46A25;
}

/* Orange Underline */

.section-title::after,
.section-header h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #E46A25;
    margin: 15px auto 0;
    border-radius: 20px;
}

.section-title {
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
}


.trips-section,
.why-section,
.tribe-section,
.memories-section,
.content-section,
.how-it-works-section,
.cta-section-wrap {
    padding: 80px 0;
}