/* Target the home page once and nest everything inside */
body[data-ibepage="index_page"]
{

  /* Global Styles */
  *
  {
    box-sizing: border-box;
  }

  body
  {
    font-family: system-ui, -apple-system, sans-serif !important;
    margin: 0;
    padding: 0;
    font-size: 16px;
    text-align: left !important;
  }

  /* Uniform Container Structure */
  .nw-section
  {
    width: 100% !important;
    font-size: 16px !important;
    font-weight: normal !important;
    padding: 40px 0 !important;
    background: #fff !important;
  }

  .nw-container
  {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
  }

  /* Uniform Header Styles */
  .nw-section h1
  {
    font-size: 32px !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    color: #1e3366 !important;
    position: relative !important;
  }

  .nw-section h1:after
  {
    content: '' !important;
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(45deg, #FF0000, #FF0000) !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
  }

  /* Services Section Styles */
  .nw-services-card-row
  {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 20px 0 !important;
  }

  .nw-services-card
  {
    position: relative !important;
    border-radius: 9px !important;
    text-align: center !important;
    min-height: 390px !important;
    transition: transform 0.3s ease !important;
  }

  .nw-services-card:hover
  {
    transform: translateY(-5px) !important;
  }

  .nw-services-card img
  {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 320px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: box-shadow 0.3s ease !important;
  }

  .nw-services-card:hover img
  {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .nw-services-info
  {
    position: absolute !important;
    width: calc(100% - 40px) !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    background: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
  }

  .nw-services-info:hover
  {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2) !important;
  }

  .nw-services-info h4
  {
    margin: 0 0 2px 0 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #1e3366 !important;
    text-align: center !important;
  }

  .nw-services-info p
  {
    margin: 0 0 10px 0 !important;
    font-size: 14px !important;
    color: #000000 !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }

  .nw-services-info a
  {
    display: none !important;
    font-size: 14px !important;
    background: #1e3366 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    transform: translateY(10px) !important;
  }

  .nw-services-card:hover .nw-services-info a
  {
    display: inline-block !important;
    color: #fff !important;
    transform: translateY(0) !important;
  }

  .nw-services-info a:hover
  {
    background: #FF0000 !important;
    transform: translateY(-1px) !important;
  }

  /* Additional Flights Section */
  .nw-additional-flights
  {
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .nw-additional-flights img
  {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Destinations Section Styles */
  .nw-destinations-card-row
  {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 20px 0 !important;
  }

  .nw-destination-card
  {
    background-size: cover !important;
    background-position: center !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    height: 250px !important;
    transition: transform 0.3s ease-in-out !important;
  }

  .nw-destination-card:hover
  {
    transform: scale(1.05) !important;
  }

  .nw-destination-card::before
  {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(#00000000, #00000093) !important;
  }

  .nw-destination-card>*
  {
    position: relative !important;
    z-index: 2 !important;
  }

  .nw-destination-content
  {
    padding: 20px !important;
    border-radius: 8px !important;
    text-align: left !important;
    width: 100% !important;
  }

  .nw-destination-card h3
  {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #fff !important;
    margin: 0 5px !important;
    text-align: left !important;
  }

  .nw-destination-card p
  {
    display: none !important;
    margin: 5px 0 !important;
    font-size: 14px !important;
    color: #fff !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
  }

  .nw-destination-card:hover .nw-destination-content p
  {
    display: block !important;
  }

  .nw-destination-content a
  {
    margin: 10px 0 !important;
    font-size: 13px !important;
    color: #fff !important;
    padding-bottom: 10px !important;
    transition: all 0.3s ease !important;
  }

  .nw-destination-card:hover .nw-destination-content a
  {
    font-size: 13px !important;
    background: #FF0000 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 15px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
  }

  /* FAQ Section Styles */
  .nw-faq-section
  {
    display: flex !important;
    gap: 30px !important;
    align-items: flex-start !important;
    padding: 20px 0 !important;
  }

  .nw-faq-content
  {
    flex: 2 !important;
  }

  .nw-faq-container
  {
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(30, 51, 102, 0.1) !important;
    border: 1px solid rgba(30, 51, 102, 0.08) !important;
  }

  .nw-faq-item
  {
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .nw-faq-item:last-child
  {
    border-bottom: none !important;
  }

  .nw-faq-question
  {
    background-color: #fff !important;
    color: #1e3366 !important;
    cursor: pointer !important;
    padding: 15px 20px !important;
    width: 100% !important;
    text-align: left !important;
    border: none !important;
    outline: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .nw-faq-question:hover
  {
    background: #f1f5f9 !important;
    color: #FF0000 !important;
  }

  .nw-faq-question.active
  {
    background: #1e3366 !important;
    color: #ffffff !important;
  }

  .nw-faq-question:after
  {
    content: '+' !important;
    font-size: 16px !important;
    font-weight: bold !important;
    transition: transform 0.3s ease !important;
  }

  .nw-faq-question.active:after
  {
    content: '−' !important;
    transform: rotate(180deg) !important;
  }

  .nw-faq-answer
  {
    padding: 0 20px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    background-color: #f8fafc !important;
  }

  .nw-faq-answer.active
  {
    max-height: 200px !important;
    padding: 10px 30px !important;
  }

  .nw-faq-answer p
  {
    line-height: 1.8 !important;
    color: #000000 !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  /* Certifications Grid */
  .nw-certifications-grid
  {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .nw-img-card
  {
    background: white !important;
    padding: 25px !important;
    border: 1px solid rgba(30, 51, 102, 0.08) !important;
    border-radius: 12px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 120px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(30, 51, 102, 0.08) !important;
  }

  .nw-img-card:hover
  {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(30, 51, 102, 0.15) !important;
  }

  .nw-img-card img
  {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
  }

  .nw-img-card:hover img
  {
    transform: scale(1.05) !important;
  }

  /* Footer Styles */
  .nw-footer
  {
    background-color: #1e3366 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: normal !important;
    padding-top: 50px !important;
  }

  .nw-footer-content
  {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
  }

  .nw-footer-top
  {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
  }

  @media screen and (max-width: 768px)
  {
    .nw-footer-top
    {
      grid-template-columns: 1fr !important;
    }
  }

  .nw-footer-logo
  {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  .nw-footer-logo img
  {
    background-color: #fff !important;
    width: 120px !important;
    padding: 5px !important;
  }

  .nw-footer-contact a
  {
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 1rem !important;
  }

  .nw-footer-section h3
  {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }

  .nw-footer-links
  {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .nw-footer-links a
  {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
  }

  .nw-footer-links a:hover
  {
    color: #ffffff !important;
  }

  .nw-top-links
  {
    padding: 1rem 0 !important;
    border-bottom: 1px solid #374151 !important;
    margin-bottom: 1.5rem !important;
  }

  .nw-payment-security
  {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 1.5rem 0 !important;
  }

  .nw-payment-methods
  {
    display: flex !important;
    gap: 0.5rem !important;
  }

  .nw-payment-methods img
  {
    width: 90px !important;
    border-radius: 3px !important;
  }

  .nw-social-links
  {
    display: flex !important;
    gap: 1rem !important;
  }

  .nw-social-links img
  {
    width: 30px !important;
  }

  .nw-footer-bottom
  {
    display: flex !important;
    justify-content: space-between !important;
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
    border-top: 1px solid #374151 !important;
    color: #fff !important;
    font-size: 0.875rem !important;
  }

  .nw-footer-bottom-links
  {
    display: flex !important;
    gap: 1rem !important;
  }

  .nw-footer-bottom-links a
  {
    color: #fff !important;
    text-decoration: none !important;
  }

  /* Responsive Media Queries */
  /* Large Desktop */
  @media screen and (min-width: 1440px)
  {

    .nw-container,
    .nw-footer-content
    {
      max-width: 1400px !important;
      padding: 0 60px !important;
    }

    .nw-section
    {
      padding: 40px 0 !important;
    }

    .nw-services-card-row,
    .nw-destinations-card-row
    {
      gap: 20px !important;
    }
  }

  /* Standard Desktop */
  @media screen and (max-width: 1200px)
  {

    .nw-container,
    .nw-footer-content
    {
      padding: 0 30px !important;
    }
  }

  /* Large Tablet */
  @media screen and (max-width: 1024px)
  {

    .nw-services-card-row,
    .nw-destinations-card-row
    {
      grid-template-columns: repeat(3, 1fr) !important;
    }

    .nw-faq-section
    {
      flex-direction: column !important;
      gap: 30px !important;
    }

    .nw-certifications-grid
    {
      grid-template-columns: repeat(4, 1fr) !important;
      max-width: 600px !important;
      margin: 0 auto !important;
    }
  }

  /* Standard Tablet */
  @media screen and (max-width: 768px)
  {

    .nw-container,
    .nw-footer-content
    {
      padding: 0 20px !important;
    }

    .nw-section
    {
      padding: 50px 0 !important;
    }

    .nw-section h1
    {
      font-size: 28px !important;
      margin-bottom: 30px !important;
    }

    .nw-services-card-row,
    .nw-destinations-card-row
    {
      grid-template-columns: repeat(2, 1fr) !important;
    }

    .nw-services-card
    {
      min-height: 350px !important;
    }

    .nw-services-card img
    {
      height: 300px !important;
    }

    .nw-services-info
    {
      width: calc(100% - 20px) !important;
      left: 10px !important;
      right: 10px !important;
      padding: 15px !important;
    }

    .nw-services-info h4
    {
      font-size: 18px !important;
    }

    .nw-services-info p
    {
      font-size: 14px !important;
    }

    .nw-certifications-grid
    {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 15px !important;
    }

    .nw-img-card
    {
      height: 100px !important;
      padding: 20px !important;
    }

    .nw-footer-top
    {
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
    }

    .nw-footer-bottom
    {
      flex-direction: column !important;
      gap: 1rem !important;
      text-align: center !important;
    }

    .nw-footer-bottom-links
    {
      justify-content: center !important;
    }

    .nw-payment-security
    {
      flex-direction: column !important;
      gap: 1.5rem !important;
      text-align: center !important;
    }

    .nw-payment-methods
    {
      justify-content: center !important;
    }

    .nw-social-links
    {
      justify-content: center !important;
    }
  }

  /* Large Mobile */
  @media screen and (max-width: 480px)
  {

    .nw-container,
    .nw-footer-content
    {
      padding: 0 15px !important;
    }

    .nw-section
    {
      padding: 40px 0 !important;
    }

    .nw-section h1
    {
      font-size: 24px !important;
      margin-bottom: 25px !important;
    }

    .nw-services-card-row,
    .nw-destinations-card-row
    {
      grid-template-columns: 1fr !important;
      gap: 30px !important;
      padding: 10px 0 !important;
    }

    .nw-services-card
    {
      min-height: 450px !important;
      margin: 0 !important;
      max-width: 100% !important;
      width: 100% !important;
    }

    .nw-services-card img
    {
      height: 380px !important;
    }

    .nw-services-info
    {
      width: calc(100% - 20px) !important;
      left: 10px !important;
      right: 10px !important;
      bottom: 15px !important;
      padding: 12px !important;
    }

    .nw-services-info h4
    {
      margin-bottom: 8px !important;
      font-size: 16px !important;
    }

    .nw-services-info p
    {
      margin-bottom: 10px !important;
      font-size: 13px !important;
    }

    .nw-services-info a
    {
      padding: 8px 16px !important;
      width: 100% !important;
      text-align: center !important;
      display: inline-block !important;
      transform: translateY(0) !important;
      font-size: 13px !important;
    }

    .nw-faq-question
    {
      padding: 12px 15px !important;
      font-size: 14px !important;
    }

    .nw-faq-answer
    {
      padding: 0 15px !important;
    }

    .nw-faq-answer.active
    {
      padding: 8px 20px !important;
    }

    .nw-faq-answer p
    {
      font-size: 14px !important;
      line-height: 1.6 !important;
    }

    .nw-certifications-grid
    {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
    }

    .nw-img-card
    {
      height: 80px !important;
      padding: 15px !important;
    }

    .nw-footer-section h3
    {
      font-size: 1.1rem !important;
    }

    .nw-footer-links
    {
      gap: 0.5rem !important;
    }

    .nw-payment-methods img
    {
      width: 70px !important;
    }

    .nw-social-links img
    {
      width: 25px !important;
    }
  }

  /* Small Mobile */
  @media screen and (max-width: 360px)
  {

    .nw-container,
    .nw-footer-content
    {
      padding: 0 10px !important;
    }

    .nw-section
    {
      padding: 30px 0 !important;
    }

    .nw-section h1
    {
      font-size: 22px !important;
    }

    .nw-services-card-row,
    .nw-destinations-card-row
    {
      gap: 25px !important;
      padding: 10px 0 !important;
    }

    .nw-services-card
    {
      max-width: 100% !important;
      width: 100% !important;
      margin: 0 !important;
      min-height: 420px !important;
    }

    .nw-services-card img
    {
      height: 350px !important;
    }

    .nw-services-info
    {
      padding: 10px !important;
    }

    .nw-services-info h4
    {
      font-size: 15px !important;
    }

    .nw-services-info p
    {
      font-size: 12px !important;
    }

    .nw-services-info a
    {
      padding: 6px 12px !important;
      font-size: 12px !important;
    }
  }

  /* Extra Small Mobile */
  @media screen and (max-width: 320px)
  {

    .nw-container,
    .nw-footer-content
    {
      padding: 0 8px !important;
    }

    .nw-section
    {
      padding: 25px 0 !important;
    }

    .nw-services-card-row,
    .nw-destinations-card-row
    {
      gap: 20px !important;
      padding: 10px 0 !important;
    }

    .nw-services-card
    {
      max-width: 100% !important;
      width: 100% !important;
      margin: 0 !important;
      min-height: 280px !important;
    }

    .nw-services-card img
    {
      height: 210px !important;
    }

    .nw-certifications-grid
    {
      grid-template-columns: 1fr !important;
      gap: 10px !important;
    }

    .nw-img-card
    {
      height: 70px !important;
      padding: 10px !important;
    }

    .nw-payment-methods
    {
      flex-direction: column !important;
      align-items: center !important;
      gap: 0.3rem !important;
    }

    .nw-payment-methods img
    {
      width: 60px !important;
    }
  }

  /* Touch and Hover Improvements for Mobile */
  @media (hover: none) and (pointer: coarse)
  {
    .nw-services-info a
    {
      display: inline-block !important;
      transform: translateY(0) !important;
      opacity: 1 !important;
    }

    .nw-destination-content a
    {
      background: rgba(255, 0, 0, 0.8) !important;
      padding: 8px 15px !important;
      border-radius: 3px !important;
    }
  }

  /* Accessibility Improvements */
  @media (prefers-reduced-motion: reduce)
  {

    .nw-services-card,
    .nw-destination-card,
    .nw-services-info,
    .nw-img-card,
    .nw-faq-question,
    .nw-faq-answer
    {
      transition: none !important;
    }

    .nw-services-card:hover,
    .nw-destination-card:hover
    {
      transform: none !important;
    }
  }
}