:root {
      /* Primary Blue shades from the image */
      --nt-primary: #0072BB; 
      --nt-primary-dark: #005A96; 
      
      /* Accent Blue/Cyan shades */
      --nt-accent: #00AEEF; 
      --nt-accent-light: #E6F4FB; 
      
      /* Clean White/Neutral tones */
      --nt-sand: #FFFFFF; 
      --nt-earth: #003359; 
      
      /* Text and UI colors */
      --nt-text-dark: #333333; 
      --nt-text-light: #707070; 
      --nt-border: #E1E1E1; 
    }

    .gradient-overlay {
      /* Adjusted to Blue to Orange/Cyan gradient seen in branding */
      background: linear-gradient(135deg, rgba(0, 114, 187, 0.85) 0%, rgba(0, 174, 239, 0.75) 100%);
    }

    .deal-card {
      transition: all 0.3s ease;
    }

    .deal-card:hover {
      transform: translateY(-8px);
    }

    .category-tag {
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, 0.95);
    }

     :root {
      --nt-primary: #0072BB;
      --nt-primary-dark: #005A96;
      --nt-accent: #00AEEF;
      --nt-accent-light: #E6F4FB;
      --nt-sand: #FFFFFF;
      --nt-earth: #003359;
      --nt-text-dark: #333333;
      --nt-text-light: #707070;
      --nt-border: #E1E1E1;
    }

    .sticky-booking {
      position: sticky;
      top: 100px;
    }

    @media (max-width: 1024px) {
      .sticky-booking {
        position: relative;
        top: 0;
      }
    }