/* CSS Variables with new color scheme */
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #f97316;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray: #555;
    --font-family: system-ui, -apple-system, sans-serif;
  }
  
  /* Reset & Global Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 18px;
  }
  
  body {
    font-family: var(--font-family);
    background: var(--light-bg);
    color: var(--dark-color);
    line-height: 1.5;
  }
  
  a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Preloader */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  #preloader .loader {
    border: 10px solid #ddd;
    border-top: 10px solid var(--accent-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .brand {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--accent-color);
  }
  
  .toll-free .call-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .toll-free .call-button:hover {
    background: var(--primary-color);
  }

  
  /* HERO SECTION */
  .hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    margin-top: 80px;
  }
  
  .hero .content {
    max-width: 800px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  }
  
  .hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  
  .hero ul {
    column-count: 2;
    column-gap: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    list-style: none;
  }
  
  .hero ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
  }
  
  .hero ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
  }
  
  /* Enhanced Call Now Button */
  .hero .btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    text-decoration: none;
  }
  
  .hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.7);
  }
  
  .hero .btn:focus {
    outline: none;
  }
  
  /* SECTION BASE */
  .section {
    padding: 70px 20px;
    text-align: center;
    background: var(--white);
    margin-bottom: 30px;
  }
  
  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .section p {
    font-size: 1rem;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
  }
  
  /* SERVICES / CUSTOMER SUPPORT SECTION */
  .services {
    background-color: var(--white);
    color: var(--dark-color);
    position: relative;
    padding: 5rem 2rem;
  }
  
  .services h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 30px auto;
  }
  
  .services .card {
    padding: 30px;
    border-radius: 10px;
    background: var(--light-bg);
    text-align: center;
    transition: transform 0.3s;
  }
  
  .services .card:hover {
    transform: translateY(-10px);
  }
  
  .services .card img {
    width: 70px;
    margin-bottom: 15px;
  }
  
  .services .card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .services .card p {
    font-size: 1rem;
  }
  
  /* AIRLINES SECTION */
  .airlines {
    background: var(--light-bg);
    padding: 5rem 2rem;
  }
  
  .airlines .content {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
  }
  
  .airlines .header {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .airlines .header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .airlines .header p {
    font-size: 1rem;
    color: var(--dark-color);
    line-height: 1.6;
  }
  
  .airlines .carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding-bottom: 20px;
  }
  
  .airlines .carousel::-webkit-scrollbar {
    display: none;
  }
  
  .airlines .item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    min-width: 200px;
    flex: 0 0 auto;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out both;
  }
  
  .airlines .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  .airlines .item .number {
    background: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 1.2rem;
  }
  
  .airlines .item h3 {
    font-size: 1rem;
    color: var(--dark-color);
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ABOUT SECTION */
  .about {
    background: var(--white);
    color: var(--dark-color);
    padding: 70px 20px;
  }
  
  .about .content {
    max-width: 900px;
    margin: auto;
    padding: 0 15px;
  }
  
  .about img {
    width: 100%;
    max-width: 1500px;
    border-radius: 10px;
    margin: 30px 0;
  }
  
  /* INFO SECTION */
  .info {
    background: var(--light-bg);
    padding: 70px 20px;
  }
  
  .info .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    padding: 0 15px;
  }
  
  .info .block {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .info .block h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .info .block p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
/* Disclaimer Styles */
/* .disclaimer {
    position: fixed;
    bottom: 100px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: slideUp 0.5s ease-out;
  } */
/* Disclaimer Section Styling */
.disclaimer-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.disclaimer-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.disclaimer-content strong {
  color: #e04f67;
}
  
  /* .disclaimer-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .disclaimer-close:hover {
    background: var(--primary-color);
  } */
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 20px;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2002; /* Higher than the popup's z-index */
    text-align: center;
}
  
  .cta h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .cta p {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
  }
  
  .cta p img {
    vertical-align: middle;
    width: 30px;
  }
  
  /* FOOTER */
  footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 20px 15px;
    text-align: center;
    font-size: 1.1rem;
  }
  
  footer .links a {
    margin: 0 15px;
    color: var(--white);
    transition: color 0.3s;
  }
  
  footer .links a:hover {
    color: var(--accent-color);
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Hide nav links on mobile */
    }
  
    .brand {
      font-size: 20px; /* Adjust brand size for mobile */
    }
  
    .toll-free .call-button span {
      font-size: 14px; /* Adjust toll-free text size for mobile */
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero ul {
        column-count: 1;
    }

    .hero .btn {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    

  }

  /* Additional adjustments for very small screens */
  @media (max-width: 480px) {
    html {
      font-size: 16px;
    }
    
    header .brand {
      font-size: 1rem;
    }
    
    .cta h3 {
      font-size: 1.1rem;
    }
    
    .cta p {
      font-size: 1.1rem;
    }
    
    .hero ul {
      column-count: 1;
    }
    
    .hero .btn {
      font-size: 1.2rem;
      padding: 20px 40px;
    }

    .services .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .services .card {
        padding: 20px;
    }

    .services .card img {
        width: 50px;
    }

    .services .card h3 {
        font-size: 1rem;
    }

    .services .card p {
        font-size: 0.9rem;
    }

    footer .links {
        flex-direction: column;
    }

    footer .links a {
        margin: 10px 0;
    }
  }

  /* Animation for Call Button */
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  .animate-pulse {
    animation: pulse 1.5s infinite;
  }
  
  /* Fade-in Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .animate-fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  /* Popup Overlay */
  @keyframes overlayFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Popup Container */ 
  @keyframes popupIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Popup Overlay */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999; /* Lower than the sticky CTA */
    animation: overlayFadeIn 0.5s forwards;
  }

  /* Popup Container */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000; /* Higher than the overlay but lower than the sticky CTA */
    overflow: hidden;
    animation: popupIn 0.5s forwards;
  }

  .popup,
  .popup-overlay {
    display: none;
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #e51937; /* Accent color */
    z-index: 2100;
  }
  
  .popup-content {
    padding: 2rem;
    margin: 50px 0px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center; 
  }
  
  .popup-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    /* font-weight: 600; */
    color: #003a70; /* Primary color */
  }
  
  .popup-phone-number {
    display: flex; /* Use flexbox to align items in a single line */
    align-items: center; /* Vertically center the icon and text */
    gap: 8px; /* Add space between the icon and text */
    font-size: 1.6rem;
    font-weight: 600;
    color: #e51937; /* Accent color */
    border: 1px solid #e51937;
    border-radius: 12px;
    margin: 0.5rem 0 1rem;
    padding: 0.5rem 1rem;
    animation: pulsePhone 2s infinite;
  }
  
  @keyframes pulsePhone {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .popup-text,
  .popup-action-text {
    margin: 0.75rem 0;
    color: #333; /* Neutral text color */
  }
  
  .popup-call-circle {
    margin: 1rem auto;
    width: 100px;
    height: 100px;
    background: #e51937; /* Accent color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .popup-call-circle:hover {
    transform: scale(1.1);
  }
  
  .popup-click-to-call {
    font-size: 2rem;
    font-weight: 600;
    /* color: white; */
  }
  
 /* Show popup only on screens smaller than 769px */
@media (max-width: 768px) {
  .popup,
  .popup-overlay {
    display: block;
  }
}
  
  /* Sticky CTA Section */
  .sticky-cta {
    position: sticky;
    bottom: 0;
  }
  
  .sticky-cta span {
    font-size: 26px;
  }
  