:root {
    --primary-color: #357ebd;
    --primary-color-dark: #2c699e;
    --accent-color: #C32146;
    --accent-color-dark: #A81C3C;
    --success-color: #23b14d;
    --success-color-dark: #1e9c43;
    --danger-color: #e74c3c;
    --danger-bg: #fdf2f2;
    --danger-border: #f5c6cb;
    --gray-100: #f8f9fa;
    --gray-200: #f7fafd;
    --gray-300: #eaf6ff;
    --gray-400: #b6e0fe;
    --gray-500: #e0e0e0;
    --gray-600: #ddd;
    --gray-700: #888;
    --gray-800: #666;
    --gray-900: #333;
    --white: #fff;
    --black: #222;
    --border-radius: 6px;
    --input-padding: 12px 15px;
    --font-size-base: 1rem;
    --font-size-sm: 0.9rem;
    --font-size-lg: 1.5rem;
    --transition: all 0.3s ease;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    --modal-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin: 2rem;
    justify-content: center;
}

.flex-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.flex-modal.show {
    display: flex !important;
    opacity: 1;
}
.flex-modal-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0;
    border-radius: 8px;
    width: 90vw;
    max-width: 77vw;
    max-height: 90vh;
    overflow-y: auto;
}
.flex-modal-item__content {
    position: relative;
    padding: 0;
}
.flex-modal-item__close {
    position: sticky;
    top: 12px;
    right: 12px;
    float: right;
    width: 28px;
    height: 28px;
    z-index: 10;
    color: #888;
    padding: 8px !important;
    background: #fff;
    border-radius: 50% !important;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    margin-left: auto;
}
.flex-modal-item__close:hover {
    color: #C32146;
    background: #f7f7f7;
    border-color: #C32146;
}
.flex-modal-item__close svg {
    width: 12px;
    height: 12px;
    display: block;
    fill: currentColor;
    pointer-events: none;
}
.flex-modal-item__close polygon {
    fill: currentColor;
}
.flex-modal-scrollable__content {
    padding: 1rem;
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}
.modal-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}
.modal-header p {
    color: #666;
    font-size: 0.9rem;
}

.modal-body {
    padding: 1rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #357ebd;
    box-shadow: 0 0 0 2px rgba(53, 126, 189, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.date-range-input {
    background-color: #fff;
    cursor: pointer;
}

.readmore { cursor: pointer; color: #357ebd; text-decoration: underline; }
.more-less { display: none; }

.error { border-color: #e74c3c !important; }
.error-message { color: #e74c3c; font-size: 0.9em; margin-top: 0.25em; }

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #666;
    font-size: 0.9rem;
}

.modal-body {
    padding: 1rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #357ebd;
    box-shadow: 0 0 0 2px rgba(53, 126, 189, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.date-range-input {
    background-color: #fff;
    cursor: pointer;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.submit-btn,
.cancel-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.submit-btn {
    background-color: #357ebd;
    color: white;
}

.submit-btn:hover {
    background-color: #2c699e;
    transform: translateY(-1px);
}

.cancel-btn {
    background-color: #6c757d;
    color: white;
}

.cancel-btn:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.open-modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    background-color: #357ebd;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.open-modal-btn:hover {
    background-color: #2c699e;
}

.open-modal-btn.primary-btn {
    background-color: #ff6b6b;
    font-weight: bold;
}

.open-modal-btn.primary-btn:hover {
    background-color: #ff5252;
}

.modal-animate {
    animation: modalFade 0.3s ease-in-out;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.daterangepicker {
    z-index: 9999 !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    font-family: inherit !important;
    font-size: 14px !important;
    max-width: 23.5vw !important;
    max-height: 80vh !important;
    overflow: auto !important;
}
.daterangepicker .drp-calendar {
    max-width: 22vw !important;
}
.daterangepicker.ltr.auto-apply.show-calendar.openscenter {
    width: 100% !important;
}
.drp-calendar.right {
    display: none !important;
}

.daterangepicker .calendar-table {
    border: none !important;
    background: transparent !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #357ebd !important;
    border-color: #357ebd !important;
}

.daterangepicker .ranges li.active {
    background-color: #357ebd !important;
}

.daterangepicker .ranges li:hover {
    background-color: #f5f5f5 !important;
}

.daterangepicker:before,
.daterangepicker:after {
    display: none !important;
}

.flex-modal .daterangepicker {
    z-index: 10000 !important;
}

#flight_depdatesrange {
    background-color: #fff !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1 !important;
}

#flight_depdatesrange:focus {
    outline: none !important;
    border-color: #357ebd !important;
    box-shadow: 0 0 0 2px rgba(53, 126, 189, 0.1) !important;
}

.flex-modal:not(.show) .daterangepicker {
    display: none !important;
}

.passenger-count {
    margin-top: 0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    margin-bottom: 0.5rem;
}

.newsletter-signup {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.newsletter-signup h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-preferences {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.privacy-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.form-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.form-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.form-tab:hover {
    color: #357ebd;
}

.form-tab.active {
    color: #357ebd;
    font-weight: bold;
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #357ebd;
}

.form-description {
    text-align: center;
    margin-bottom: 2rem;
}

.form-description p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.form-content {
    transition: opacity 0.3s ease-in-out;
}

.quote-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 24px 18px 18px 18px;
    margin: 0 auto 24px auto;
    max-width: 1100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.quote-icon {
    font-size: 1.6rem;
    color: #C32146;
}
.quote-title {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    margin-right: 8px;
}
.quote-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #222;
}
.quote-intro {
    color: #444;
    font-size: 1rem;
    margin-bottom: 18px;
}

.row-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.row-group input,
.row-group select,
.row-group textarea {
    flex: 1 1 0;
    min-width: 180px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background: #fafbfc;
    transition: border 0.2s;
}
.row-group textarea {
    min-width: 100%;
    min-height: 60px;
    resize: vertical;
}
.row-group input:focus,
.row-group select:focus,
.row-group textarea:focus {
    border: 1.5px solid #C32146;
    outline: none;
}

.address-group {
    align-items: center;
}
.enter-address-manually {
    font-size: 0.95rem;
    color: #C32146;
    text-decoration: underline;
    margin-left: 12px;
    cursor: pointer;
    align-self: center;
}

.future-credit-group {
    align-items: center;
}
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 6px;
}

.newsletter-signup {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 18px 14px 10px 14px;
    margin-top: 18px;
}
.newsletter-signup h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.newsletter-intro {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 10px;
}
.read-more {
    color: #C32146;
    cursor: pointer;
    font-size: 0.97rem;
}
.contact-preferences {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
}
.contact-preferences label {
    font-size: 1rem;
    margin-bottom: 2px;
}
.contact-preferences select {
    min-width: 120px;
}
.privacy-note {
    font-size: 0.93rem;
    color: #666;
    margin-top: 6px;
}
.privacy-link {
    color: #C32146;
    text-decoration: underline;
}

.form-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}
.submit-btn.green-btn {
    background: #23b14d;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 0;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn.green-btn:hover {
    background: #1e9c43;
}

#flight-contact-form-container {
  padding: 0;
}
.modal-expert {
  background: #f7fafd;
  border-radius: 8px 8px 0 0;
  padding: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.modal-expert-title h2 {
  font-size: 2.0rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #C32146;
}
.modal-expert-title p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px;
}
.modal-expert-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}
.modal-expert-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 18px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.2s;
  min-width: 180px;
  min-height: 120px;
  justify-content: center;
}
.modal-expert-box svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  fill: #C32146;
}
.modal-expert-box h3 {
  font-size: 1.5rem !important;
  margin: 0 0 4px 0;
  color: #222;
}
.modal-expert-box p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}
.modal-expert-box:hover {
  box-shadow: 0 2px 12px rgba(30,144,255,0.08);
  border-color: #C32146;
}

#modal-callback-enquiry .modal-enquiry-title {
    margin-bottom: 20px;
}

.modal-enquiry {
  background: #f7fafd;
  border-radius: 0 0 8px 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-top: none;
}
.modal-enquiry-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.modal-enquiry-title svg {
  enable-background:new 0 0 612 612;
  width: 40px;
  height: 40px;
  fill: #C32146;
  margin-right: 15px;
}
.modal-enquiry-title h3 {
  font-size: 1.5rem !important;
  font-weight: 600;
  margin: 0;
  color: #222;
}
.modal-enquiry-title p {
  color: #888;
  font-size: 1rem;
  margin: 0;
}

.modal-enquiry-wrap {
  margin-top: 10px;
}
.modal-enquiry-wrap h3 {
  font-size: 1.5rem;
}

.field-1, .field-2, .field-3 {
    margin-bottom: 1rem;
}

.field-2, .field-3 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 1rem;
}

.field-2 input,
.field-2 select {
    flex: 1;
    min-width: 0;
    width: auto;
    box-sizing: border-box;
}

.field-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.field-3 select,
.field-3 input {
    flex: 1;
    min-width: 0;
    width: auto;
    box-sizing: border-box;
}

.field-3 select[name="flight_enquire_title"] {
    flex: 0 0 15%;
    max-width: 15%;
    min-width: 70px;
}

.field-3 input[name="flight_enquire_firstname"] {
    flex: 0 0 41%;
    max-width: 41%;
    min-width: 150px;
}

.field-3 input[name="flight_enquire_surname"] {
    flex: 0 0 41%;
    max-width: 41%;
    min-width: 150px;
}

.field-1 input[type="text"],
.field-2 input[type="text"],
.field-3 input[type="text"],
.field-1 input[type="email"],
.field-2 input[type="email"],
.field-3 input[type="email"],
.field-1 input[type="tel"],
.field-2 input[type="tel"],
.field-3 input[type="tel"],
.field-1 select,
.field-2 select,
.field-3 select {
    width: 100%;
    min-width: 180px;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #333;
    font-family: inherit;
}

.field-1 input[type="text"]:focus,
.field-2 input[type="text"]:focus,
.field-3 input[type="text"]:focus,
.field-1 input[type="email"]:focus,
.field-2 input[type="email"]:focus,
.field-3 input[type="email"]:focus,
.field-1 input[type="tel"]:focus,
.field-2 input[type="tel"]:focus,
.field-3 input[type="tel"]:focus,
.field-1 select:focus,
.field-2 select:focus,
.field-3 select:focus {
    border-color: #C32146;
    outline: none;
    box-shadow: 0 0 0 3px rgba(195, 33, 70, 0.1);
    background-color: #ffffff;
}

.field-1 input[type="text"]:active,
.field-2 input[type="text"]:active,
.field-3 input[type="text"]:active,
.field-1 input[type="email"]:active,
.field-2 input[type="email"]:active,
.field-3 input[type="email"]:active,
.field-1 input[type="tel"]:active,
.field-2 input[type="tel"]:active,
.field-3 input[type="tel"]:active,
.field-1 select:active,
.field-2 select:active,
.field-3 select:active {
    border-color: #A81C3C;
    transform: translateY(1px);
}

.field-1 input[type="text"]:hover,
.field-2 input[type="text"]:hover,
.field-3 input[type="text"]:hover,
.field-1 input[type="email"]:hover,
.field-2 input[type="email"]:hover,
.field-3 input[type="email"]:hover,
.field-1 input[type="tel"]:hover,
.field-2 input[type="tel"]:hover,
.field-3 input[type="tel"]:hover,
.field-1 select:hover,
.field-2 select:hover,
.field-3 select:hover {
    border-color: #C32146;
    background-color: #fafbfc;
}

.field-1 input::placeholder,
.field-2 input::placeholder,
.field-3 input::placeholder {
    color: #999;
    opacity: 1;
}

.field-1 select,
.field-2 select,
.field-3 select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.field-1 textarea {
    width: 100%;
    min-height: 60px;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #333;
    font-family: inherit;
    resize: vertical;
}

.field-1 textarea:focus {
    border-color: #C32146;
    outline: none;
    box-shadow: 0 0 0 3px rgba(195, 33, 70, 0.1);
    background-color: #ffffff;
}

.field-1 textarea:hover {
    border-color: #C32146;
    background-color: #fafbfc;
}

.field-w-titlename label {
    margin-right: 8px;
}

.tooltip-wrap-device {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 6px;
}

.readmore {
    color: #C32146;
    cursor: pointer;
    font-size: 0.97rem;
}

.more-less {
    color: #666;
    font-size: 0.95rem;
}

.field-w-subscribeby {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
}

.field-w-subscribeby label {
    font-size: 1rem;
    margin-bottom: 2px;
}

.field-w-subscribeby select {
    min-width: 120px;
}

.submit-enquiry-button input[type="submit"] {
    background: #C32146;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 15px 0;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-enquiry-button input[type="submit"]:hover {
    background: #A81C3C;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(195, 33, 70, 0.2);
}

.submit-enquiry-button input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(195, 33, 70, 0.2);
}

.FormErrorClass {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1) !important;
    background-color: #fdf2f2 !important;
}

.FormErrorClass::placeholder {
    color: #e74c3c;
}

.field-error-message {
    color: #e74c3c !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block !important;
    font-weight: 500 !important;
    animation: fadeIn 0.3s ease-in !important;
}

.form-error-message {
    color: #e74c3c !important;
    background: #fdf2f2 !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    border: 1px solid #f5c6cb !important;
    font-weight: 500 !important;
    animation: fadeIn 0.3s ease-in !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.FormErrorClass[type="text"],
.FormErrorClass[type="email"],
.FormErrorClass[type="tel"],
.FormErrorClass[type="password"] {
    border: 2px solid #e74c3c !important;
    background-color: #fdf2f2 !important;
}

.FormErrorClass[type="select"] {
    border: 2px solid #e74c3c !important;
    background-color: #fdf2f2 !important;
}

.FormErrorClass[type="textarea"] {
    border: 2px solid #e74c3c !important;
    background-color: #fdf2f2 !important;
}

.custom-passenger-dropdown {
    position: relative;
    width: 100%;
    max-width: 50%;
}
.passenger-dropdown-toggle {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 1rem !important;
    color: #333 !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: border 0.2s !important;
}
.passenger-dropdown-toggle:focus {
    border-color: #C32146 !important;
    outline: none !important;
}
.passenger-dropdown-menu {
    position: absolute !important;
    top: 110% !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    border: 1px solid #e1e5e9 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    z-index: 10 !important;
    padding: 18px 18px 12px 18px !important;
    min-width: 220px !important;
}
.passenger-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 18px !important;
}
.passenger-row span:first-child {
    flex: 1 !important;
    font-size: 1.1rem !important;
    color: #333 !important;
}
.passenger-minus, .passenger-plus {
    width: 32px !important;
    height: 32px !important;
    border: 1.5px solid #C32146 !important;
    background: #fff !important;
    color: #C32146 !important;
    border-radius: 50% !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s, color 0.2s !important;
    margin: 0 6px !important;
}
.passenger-minus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.passenger-count {
    min-width: 24px;
    text-align: center;
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
}
.passenger-apply-btn {
    width: 100%;
    background: #C32146;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.passenger-apply-btn:hover {
    background: #A81C3C;
}

.airport-search-container {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-header {
    position: relative;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.select-header input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.select-header input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.select-header input::placeholder {
    color: #999;
    opacity: 1;
}

.dropdown-toggle {
    padding: 10px;
    color: #666;
    font-size: 12px;
    pointer-events: none;
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
}

.dropdown-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

.dropdown-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.dropdown-search input:focus {
    border-color: #357ebd;
    box-shadow: 0 0 0 2px rgba(53, 126, 189, 0.1);
}

.dropdown-list {
    max-height: 250px;
    overflow-y: auto;
}

.airport-option {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.airport-option:hover,
.airport-option.selected {
    background-color: #f5f5f5;
}

.airport-option:last-child {
    border-bottom: none;
}

.airport-option strong {
    color: #333;
    font-weight: 600;
}

.airport-option small {
    color: #666;
    font-size: 12px;
    line-height: 1.3;
}

.custom-select .select-dropdown {
    z-index: 10001 !important;
}

.FormErrorClass {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1) !important;
}

.FormErrorClass::placeholder {
    color: #e74c3c;
}

.field-error-message {
    color: #e74c3c !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block !important;
    font-weight: 500 !important;
    animation: fadeIn 0.3s ease-in !important;
}

.form-error-message {
    color: #e74c3c !important;
    background: #fdf2f2 !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    border: 1px solid #f5c6cb !important;
    font-weight: 500 !important;
    animation: fadeIn 0.3s ease-in !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.FormErrorClass[type="text"],
.FormErrorClass[type="email"],
.FormErrorClass[type="tel"],
.FormErrorClass[type="password"] {
    border: 2px solid #e74c3c !important;
    background-color: #fdf2f2 !important;
}

.FormErrorClass[type="select"] {
    border: 2px solid #e74c3c !important;
    background-color: #fdf2f2 !important;
}

.FormErrorClass[type="textarea"] {
    border: 2px solid #e74c3c !important;
    background-color: #fdf2f2 !important;
}

@media (max-width: 1024px) {
    .field-3 {
        max-width: 68vw;
    }
    .daterangepicker {
        max-width: 33vw !important;
    }
}

@media (max-width: 900px) {
    .modal-expert, .modal-enquiry {
        width: 100%;
    }
    .modal-expert-wrap, .field-2, .field-3, .field-w-subscribeby {
        flex-direction: row;
    }
    .modal-expert-box {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .field-2 input,
    .field-2 select {
        flex: 1 1 50%;
        width: 100%;
        max-width: 100%;
    }
    
    .field-3 {
        max-width: 64.5vw;
    }
    .field-3 select,
    .field-3 input {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .quote-box {
        padding: 16px 6px 12px 6px;
        max-width: 100%;
    }
    .row-group {
        flex-direction: column;
        gap: 8px;
    }
    .form-actions {
        justify-content: center;
    }
    
    .daterangepicker {
        max-width: 38vw !important;
    }
}

@media (max-width: 768px) {
    .flex-modal-item {
        width: 80vw;
        padding: 1.5rem;
    }
    .modal-expert, .modal-enquiry {
        padding: 20px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .cancel-btn {
        width: 100%;
    }

    .form-switcher {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-tab {
        width: 100%;
        text-align: center;
    }

    .form-tab.active::after {
        bottom: -0.5rem;
    }
    .flex-modal-item {
        max-width: 98vw; 
    }
    .button-group {
        flex-direction: column; gap: 0.5rem;
    }
    .field-3, .field-2, .modal-enquiry-title {
        flex-direction: column;
    }
    .field-3 select[name="flight_enquire_title"], .field-3 input[name="flight_enquire_firstname"], .field-3 input[name="flight_enquire_surname"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .custom-passenger-dropdown {
        max-width: 100% !important;
    }
    .select-dropdown {
        max-height: 250px;
    }
    
    .dropdown-list {
        max-height: 200px;
    }
    
    .airport-option {
        padding: 10px 12px;
    }
    .daterangepicker {
        max-width: 44vw !important;
        max-height: 75vh !important;
        font-size: 12px !important;
    }
    
    .daterangepicker .calendar-table {
        font-size: 12px !important;
    }
    
    .daterangepicker .ranges {
        font-size: 12px !important;
    }
}

@media (max-width: 425px) {
    .modal-enquiry-title {
        align-items: flex-start;
    }
    .daterangepicker {
        max-width: 70vw !important;
        max-height: 70vh !important;
    }
}

.field-3 .field-error-message,
.field-2 .field-error-message,
.field-group .field-error-message {
    flex-basis: 100%;
    width: 100%;
    display: block;
    clear: both;
    margin-top: 6px;
    margin-bottom: 2px;
    color: #e74c3c;
    font-size: 12px;
}
.field-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}
.field-2 .field-error-message,
.field-group .field-error-message {
    flex-basis: 100%;
    width: 100%;
    display: block;
    order: 99;
    margin-top: 6px;
    margin-bottom: 2px;
    color: #e74c3c;
    font-size: 12px;
}