  .uf .wrap {
    position: relative;
    max-width: 1000px;
    margin-bottom: 100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 8px 40px rgba(2, 6, 23, .06);
  }
  .mobile-nav{
      padding-top: 145px !important;
  }

  .uf label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
  }

  .uf input[type=text] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e6eef6;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
  }
    input::placeholder{
      color: #000;
    }
      .uf {
        /* Assuming .uf is your base class for inheritance */
        background: inherit;
        padding: inherit;
        border-radius: inherit;
        box-shadow: inherit;
        flex: inherit;
        min-width: inherit;
        position: inherit;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .uf .search-btn {
        background: #C83518; /* Primary color matching the selected date */
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        min-width: 120px;
        transition: background 0.2s ease;
      }

      .uf .search-btn:hover {
        background: #C83518;
      }

      .uf .row {
        display: flex;
        gap: 12px;
        align-items: stretch;
      }

      .cal-head {
        z-index: 999999;
        position: relative;
      }

      /* unified calendar popup (soft animated) */
      .uf .popup {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scale(.98);
        top: 150px;
        width: 560px;
        max-width: 94%;
        background: #ffffff;
        border-radius: 12px;
        padding: 14px;
        z-index: 999;
        box-shadow: 0 18px 60px rgba(2, 6, 23, .12);
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s cubic-bezier(.2, .9, .2, 1);
      }

      .uf .popup.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) scale(1);
      }

      .uf .nav {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
      }

      .uf .nav button {
        border: 0;
        background: #f3f4f6;
        padding: 8px 10px;
        border-radius: 8px;
        cursor: pointer;
      }

      .uf .cal-grid {
        display: flex;
        gap: 12px;
        margin-top: -45px;
      }

      .uf .month {
        padding: 10px;
        border-radius: 8px;
        flex: 1;
        min-width: 240px;
      }

      .uf .title {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
      }

      .uf .days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
        text-align: center;
      }

      .uf .dow {
        color: #6b7280;
        font-size: 12px;
        padding: 6px 4px;
      }

      .uf .day {
        padding: 8px 6px;
        border-radius: 8px;
        font-size: 13px;
      }

      .uf .day.disabled {
        color: #c7cbd1;
        background: transparent;
        cursor: default;
      }

      .uf .day:hover:not(.disabled) {
        background: #f1f8f8;
        cursor: pointer;
      }

      .uf .day.selected {
        background: #06b6d4;
        color: #fff;
      }

      .uf .day.in-range {
        background: rgba(6, 182, 212, 0.12);
      }

      .uf .legend {
        font-size: 13px;
        color: #6b7280;
        margin-top: 8px;
      }

      /* small responsive */
      @media (max-width: 820px) {
        .uf .cal-grid {
          flex-direction: column;
        }

        .uf .row {
          flex-direction: column;
        }
      }

      #locationCard {
        display: flex;
        justify-content: center;
        align-items: end;
        gap: 20px;
        padding: 20px 0px 20px 20px;
      }

      #dateCard {
        max-width: 620px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
      }

      @media (max-width: 768px) {
        #locationCard {
          display: block !important;
        }
        .ufbanner .top-header p{
          font-size: 15px !important;
        margin-top: 10px !important;
                padding: 0px 20px !important;
        }
    .uf .wrap{
          width: 90% !important;
        padding: 10px !important;
    }
        .ufserchsbtn {
          text-align: center !important;
          margin-top: 20px;
        }
      }
      #popupOverlay{
        
      display: none;

      }

      .error-msg {
        color: red !important;
        font-size: 12px !important;
        display: none !important;
        margin-bottom: 5px !important;
      }

      /* Popup styles */
      .popup-overlay {
        position: fixed;
        inset: 0; 
        width: 100%;
        z-index: 99999;
        height: 100%;
        z-index: 1000;
        opacity: 1;
        animation: fadeIn 0.3s ease;
      }

      .popup-overlay.hidden {
        opacity: 0;
        pointer-events: none;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .popup-container {
        background: white;
        max-width: 700px;
        position: fixed !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) !important;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        max-height: 90vh;
        position: relative;
        transform: scale(1);
        animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      }

      @keyframes popIn {
        from {
          transform: scale(0.8);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }

      .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .close-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: rotate(90deg);
      }

      .popup-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .popup-content h2 {
        font-size: 28px;
            padding-top: 28px;
        color: #414141;
        margin-bottom: 10px;
        line-height: 1.2;
        font-weight: 700;
      }

      .popup-content p {
        color: #414141;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
      }

      .email-input {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 15px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
        font-family: inherit;
      }

      .email-input:focus {
        outline: none;
        border-color: #0066ff;
        box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
      }

      .submit-btn {
        width: 100%;
        padding: 16px 20px;
        background: #0066ff;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 20px;
      }

      .submit-btn:hover {
        background: #0052cc;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
      }

      .submit-btn:active {
        transform: translateY(0);
      }

      .disclaimer {
        font-size: 12px;
        color: #999;
        line-height: 1.5;
      }

      .disclaimer a {
        color: #0066ff;
        text-decoration: none;
      }

      .disclaimer a:hover {
        text-decoration: underline;
      }

    .popup-image{
      height: 100%;
    }

      @media (max-width: 768px) {
        .popup-container {
          grid-template-columns: 1fr;

        }
        .popup-image{
              display: none;
        }
        .popup-content {
          padding: 20px;
        }

        .popup-content h2 {
          font-size: 28px;
        }
      }

      @media (max-width: 480px) {

      .col{
        height: auto !important;
      }
        .popup-content h2 {
          font-size: 20px;
        }

        .popup-content p {
          font-size: 14px;
        }

        .email-input,
        .submit-btn {
          padding: 14px 16px;
          font-size: 14px;
        }
      }
      .top-header, .features{
        color: #000;
      }

