/* =========================
iOS APP STYLE (MOBILE ONLY)
========================= */

body {
    background: #f2f2f7;
    padding-bottom: 80px;
      
  }
  
  /* =========================
  HEADER (iOS NAV BAR)
  ========================= */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
  }
 
  .menu {
    display: none; /* hide desktop nav */
  }
  
  /* =========================
  HERO (APP HEADER CARD)
  ========================= */
  .hero {
    border-radius: 0 0 25px 25px;
    padding: 35px 15px;
  }
  
  .hero h1 {
    font-size: 20px;
  }
  
  /* =========================
  SEARCH (iOS STYLE)
  ========================= */
  .search-box {
    background: white;
    border-radius: 25px;
    overflow: hidden;
  }
  
  .search-box input {
    padding: 12px;
  }
  
  .search-box button {
    background: #00b67a;
  }
  
  /* =========================
  STATS (SCROLL CARDS)
  ========================= */
  .stats-section {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 15px;
  }
  
  .stat-card {
    min-width: 140px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  
  /* =========================
  FILTER PILLS
  ========================= */
  #filters {
    display: flex;
    overflow-x: auto;
    gap: 8px;
  }
  
  #filters button {
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
  }
  
  /* =========================
  COMPLAINTS (APP FEED)
  ========================= */
  #complaintsList {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  
  .card {
    min-width: 85%;
    border-radius: 20px;
    padding: 16px;
    scroll-snap-align: start;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  }
  
  /* =========================
  TESTIMONIALS (SWIPE)
  ========================= */
  .testimonial-grid {
    overflow-x: auto;
  }
  
  .testimonial {
    min-width: 85%;
    border-radius: 18px;
  }
  
  /* =========================
  BOTTOM NAV (iOS STYLE)
  ========================= */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
  }
  
  .bottom-nav a {
    text-decoration: none;
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  
  .bottom-nav a.active {
    color: #00b67a;
    font-weight: bold;
  }
  
  /* =========================
  FLOATING ACTION BUTTON (FAB)
  ========================= */
  .fab {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #00b67a;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  
  /* =========================
  IOS TOUCH FEEDBACK
  ========================= */
  button:active {
    transform: scale(0.95);
  }
  
  /* =========================
  FOOTER SPACE FIX
  ========================= */
  body {
    padding-bottom: 90px;
  }
  
  .bottom-nav {
    display: flex;
  }
  
  /* HIDE FOOTER ON MOBILE */
.footer {
    display: none;
  }

  .mobile-top-nav {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .mobile-top-nav a {
    text-decoration: none;
    font-size: 20px;
    color: #333;
  }
/* =========================
MOBILE HEADER FIX
========================= */
.header {
    padding: 10px 15px;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* FIX LOGO IMAGE */
  .logo img {
    height: 40px !important;
    width: auto;
    display: block;
  }
  
  /* HIDE DESKTOP MENU */
  .menu {
    display: none;
  }
  
  /* =========================
  MOBILE TOP NAV
  ========================= */
  .mobile-top-nav {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .mobile-top-nav a {
    text-decoration: none;
    font-size: 20px;
    color: #333;
  }
  
  /* =========================
  HERO FIX
  ========================= */
  .hero {
    padding: 40px 15px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  /* SEARCH FIX */
  .search-box {
    flex-direction: column;
    gap: 10px;
  }
  
  .search-box input,
  .search-box button {
    width: 100%;
    border-radius: 8px;
  }
  
  /* =========================
  COMPLAINTS SCROLL
  ========================= */
  #complaintsList {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 5px;
  }
  
  .card {
    min-width: 85%;
    border-radius: 12px;
    padding: 15px;
  }
  
  /* =========================
  TESTIMONIALS MOBILE
  ========================= */
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
  }
  
  .testimonial {
    min-width: 85%;
  }
  
  /* =========================
  SPACING FOR BOTTOM NAV
  ========================= */
  body {
    padding-bottom: 90px;
  }
  
  /* =========================
  ANDROID + IOS FIXES
  ========================= */
  body {
    -webkit-tap-highlight-color: transparent;
  }
  
  button, a {
    touch-action: manipulation;
  }

 /* FORCE LOGO TO SHOW */
.logo img {
    display: block !important;
    height: 45px !important;
    width: auto !important;
    object-fit: contain;
  }

  .mobile-top-nav {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 12px 5px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .mobile-top-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .hero {
    padding: 30px 15px;
  }
  
  .hero h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  /* SMALLER SEARCH */
  .search-box input {
    padding: 10px;
    font-size: 14px;
  }
  
  .search-box button {
    padding: 10px;
    font-size: 14px;
  }
  
  /* TOP AIRLINE BADGE SMALLER */
  .top-airline {
    font-size: 12px;
    padding: 8px 12px;
  }

  .bottom-nav {
    display: none !important;
  }

  .footer {
    display: block !important;
    padding: 20px;
    text-align: center;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 15px;
  }
  .header {
    padding: 6px 12px;
  }
  
  .logo img {
    height: 35px !important;
  }

  @media (max-width: 768px) {
    .hero::before,
    .hero::after {
      width: 220px;
      height: 220px;
      opacity: 0.18;
    }
  
    .hero::before {
      left: -100px;
      top: 40px;
    }
  
    .hero::after {
      right: -100px;
      top: 60px;
    }
  }
  
     
  