.custom-select{position:relative;width:100%;}.select-button{width:100%;border:1px solid #d1d5db;padding:0.5rem 0.75rem;line-height:1.25rem;background-color:white;text-align:left;cursor:pointer;display:flex;justify-content:space-between;align-items:center;border-radius:0.5rem;font-size:0.875rem;transition:border-color 200ms ease,box-shadow 200ms ease;}.select-button:hover{border-color:#7CA7AD;}.select-options{position:absolute;top:calc(100%+2px);left:0;right:0;background-color:white;border:1px solid #d1d5db;max-height:0;overflow:hidden;z-index:1000;border-radius:0.5rem;box-shadow:0 4px 12px rgba(0,0,0,0.1);opacity:0;transform:translateY(-4px);transition:max-height 250ms ease,opacity 200ms ease,transform 200ms ease;pointer-events:none;}.select-options.show{max-height:180px;overflow-y:auto;opacity:1;transform:translateY(0);pointer-events:auto;}.select-option{padding:0.5rem 0.75rem;cursor:pointer;font-size:0.875rem;transition:background-color 150ms ease;}.select-option:hover{background-color:rgba(185,221,232,0.35);color:#093254;}.select-option.selected{background-color:rgba(185,221,232,0.45);color:#093254;font-weight:600;}@keyframes modalBackdropIn{from{opacity:0;}to{opacity:1;}}@keyframes modalBackdropOut{from{opacity:1;}to{opacity:0;}}@keyframes modalSlideIn{from{opacity:0;transform:translateY(24px) scale(0.95);}to{opacity:1;transform:translateY(0) scale(1);}}@keyframes modalSlideOut{from{opacity:1;transform:translateY(0) scale(1);}to{opacity:0;transform:translateY(24px) scale(0.95);}}.modal-backdrop-in{animation:modalBackdropIn 300ms ease-out forwards;}.modal-backdrop-out{animation:modalBackdropOut 250ms ease-in forwards;}.modal-content-in{animation:modalSlideIn 350ms cubic-bezier(0.16,1,0.3,1) forwards;}.modal-content-out{animation:modalSlideOut 250ms ease-in forwards;}#tourForm input[type="text"],#tourForm input[type="email"],#tourForm input[type="tel"],#tourForm input[type="date"],#tourForm .select-button{height:2.375rem;box-sizing:border-box;}#tourForm input[type="text"],#tourForm input[type="email"],#tourForm input[type="tel"],#tourForm input[type="date"],#tourForm textarea{transition:border-color 200ms ease,box-shadow 200ms ease;}#tourForm input[type="text"]:focus,#tourForm input[type="email"]:focus,#tourForm input[type="tel"]:focus,#tourForm input[type="date"]:focus,#tourForm textarea:focus{outline:none;border-color:#7CA7AD;box-shadow:0 0 0 3px rgba(124,167,173,0.15);}#tourFormError:not(.hidden){background-color:#fef2f2;border:1px solid #fecaca;border-radius:0.5rem;padding:0.5rem 0.75rem;color:#991b1b;font-size:0.8rem;animation:modalSlideIn 200ms ease-out;}@keyframes toastSlideUp{from{opacity:0;transform:translate(-50%,20px);}to{opacity:1;transform:translate(-50%,0);}}