/* ===== MOBILE RESPONSIVE ADDITIONS ===== */
/* Add all of this to your style.css file */

/* Base responsive adjustments */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, .hero-card h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 24px !important;
  }
  
  h3 {
    font-size: 20px !important;
  }
  
  /* Container padding */
  .about-section, .founder-section, .camp-section, .treks-section, 
  .gallery, .trust-section, .stories-section, .faq-section,
  .legal-content, .td-main-layout {
    padding: 40px 5% !important;
  }
  
  /* Hero sections */
  .hero, .about-hero, .legal-hero, .camp-hero-slider, .all-treks-hero {
    height: 50vh !important;
    min-height: 400px !important;
  }
  
  .hero-card {
    width: 90% !important;
    padding: 20px !important;
    margin: 0 auto !important;
  }
  
  .hero-card h3 {
    font-size: 16px !important;
  }
  
  .hero-card p {
    font-size: 13px !important;
  }
  
  /* Navigation - Mobile Menu */
  .nav-links {
    display: none !important;
  }
  
  .menu {
    display: block !important;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--navy);
  }
  
  .nav-right {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 60px 20px 20px;
    overflow-y: auto;
  }
  
  .nav-right.active {
    right: 0;
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
  }
  
  .mobile-nav-links li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: block;
    padding: 10px 0;
  }
  
  .mobile-search-wrap {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 8px 15px;
    margin-bottom: 20px;
  }
  
  .mobile-search-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
  }
  
  /* Overlay for mobile menu */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  /* Grid layouts - stack on mobile */
  .about-grid, .founder-grid, .camp-info-grid, .camp-prog-grid,
  .gallery-grid, .reviews-row, .info-grid, .service-grid,
  .awards-grid, .stories-grid, .ct-grid, .sched-grid,
  .footer-grid, .td-main-layout, .form-row, .td-info-strip,
  .trust-tabs, .faq-tabs, .filter-row, .video-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
  
  /* Trek cards */
  .trek-card {
    width: 100% !important;
    margin-bottom: 20px;
  }
  
  .treks-slider {
    flex-direction: column !important;
    gap: 20px !important;
    overflow-x: visible !important;
  }
  
  .trek-card .tk-img img {
    height: 200px !important;
    object-fit: cover;
  }
  
  /* Gallery */
  .gallery-grid .g-item {
    grid-column: span 1 !important;
  }
  
  /* Stats bar */
  .stat-container {
    padding: 20px 5% !important;
  }
  
  .stats-bar {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .stat-item {
    width: 100% !important;
    text-align: center;
  }
  
  /* Trust section tabs */
  .trust-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tr-tab {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  
  /* FAQ section */
  .faq-tabs {
    gap: 10px;
  }
  
  .faq-tab {
    flex: 1;
    min-width: 80px;
    padding: 10px !important;
  }
  
  .ft-icon {
    font-size: 20px;
  }
  
  .ft-label {
    font-size: 10px;
  }
  
  .faq-q {
    font-size: 14px !important;
    padding: 15px !important;
  }
  
  .faq-a {
    padding: 0 15px 15px !important;
    font-size: 13px !important;
  }
  
  /* Camp page specific */
  .camp-big-title {
    font-size: 32px !important;
  }
  
  .camp-big-camp {
    font-size: 48px !important;
  }
  
  .camp-sub-title {
    font-size: 18px !important;
  }
  
  .camp-overlay-text {
    padding: 15px !important;
  }
  
  .camp-contact-bar {
    flex-direction: column !important;
    gap: 15px;
    text-align: center;
    padding: 15px !important;
  }
  
  .ccb-right {
    flex-direction: column;
    gap: 10px;
  }
  
  .ccb-contact {
    justify-content: center;
  }
  
  .camp-cta-section form {
    flex-direction: column !important;
  }
  
  .camp-cta-section input,
  .camp-cta-section select,
  .camp-cta-section button {
    width: 100% !important;
  }
  
  /* Store page */
  .store-bar-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px !important;
  }
  
  .s-ftab {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  
  .prod-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .promo-banner {
    flex-direction: column !important;
    text-align: center;
    padding: 20px !important;
  }
  
  .pb-code {
    margin-top: 15px;
  }
  
  /* B2B page */
  .b2b-form .form-row {
    grid-template-columns: 1fr !important;
  }
  
  /* View Trek page */
  .td-title-row {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center;
  }
  
  .td-info-strip {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 15px !important;
  }
  
  .td-info-item {
    width: 100% !important;
    text-align: center;
  }
  
  .td-tabs {
    flex-wrap: wrap;
  }
  
  .td-t {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
  
  .td-booking-card {
    position: static !important;
    margin-top: 30px;
  }
  
  .td-right-col {
    position: static !important;
    width: 100% !important;
  }
  
  /* Booking page */
  .booking-grid {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }
  
  .booking-sidebar {
    margin-top: 30px;
  }
  
  .p-form .form-row {
    grid-template-columns: 1fr !important;
  }
  
  /* Contact page */
  .contact-hero h1 {
    font-size: 32px !important;
  }
  
  .form-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .form-info {
    text-align: center;
  }
  
  /* Footer */
  .footer-social {
    flex-direction: column !important;
    text-align: center;
    gap: 15px;
    padding: 20px !important;
  }
  
  .fs-left {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-grid {
    gap: 30px !important;
  }
  
  .footer-col {
    text-align: center;
  }
  
  /* Cart sidebar */
  .cart-sidebar {
    width: 90% !important;
    right: -90% !important;
  }
  
  .cart-sidebar.open {
    right: 0 !important;
  }
  
  /* Buttons and interactive elements */
  .pill, .cp-enroll, .tk-btn, .td-book-btn, .submit-btn,
  .confirm-btn, .cart-checkout-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
    width: 100% !important;
    text-align: center;
  }
  
  /* Forms */
  input, select, textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 12px !important;
  }
  
  /* Legal pages */
  .legal-card {
    padding: 25px !important;
  }
  
  .legal-card h2 {
    font-size: 22px !important;
  }
  
  /* Breadcrumbs */
  .td-breadcrumbs {
    font-size: 12px !important;
    text-align: center;
  }
  
  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix for reveal animations */
  .reveal {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

/* Tablet screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-grid, .founder-grid, .camp-prog-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .hero-card {
    width: 70% !important;
  }
  
  .treks-slider {
    gap: 20px !important;
  }
  
  .trek-card {
    min-width: 280px !important;
  }
  
  .stats-bar {
    gap: 30px !important;
  }
  
  .td-main-layout {
    gap: 30px !important;
  }
}

/* Small phones (max 480px) */
@media (max-width: 480px) {
  .hero-card h1 {
    font-size: 24px !important;
  }
  
  .camp-big-title {
    font-size: 24px !important;
  }
  
  .camp-big-camp {
    font-size: 36px !important;
  }
  
  .td-price-now {
    font-size: 24px !important;
  }
  
  .trust-panel .video-grid {
    grid-template-columns: 1fr !important;
  }
  
  .faq-tabs {
    gap: 5px;
  }
  
  .faq-tab {
    padding: 6px !important;
  }
  
  .ft-icon {
    font-size: 16px;
  }
  
  .ft-label {
    font-size: 8px;
  }
}