h1,
h2,
h3,
h4,
h5,
h6,
strong,
table,
ul,
li,
a {
    font-family: 'Barlow+Condensed', serif;
}

/* Popup overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup content */
.popup-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 750px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
    display: flex;
    flex-direction: row;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

/* Image section */
.image-section {
    height: auto;
    overflow: hidden;
    max-width: 50%;
}

.form-section {
    max-width: 50%;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content sections */
.phone-section {
    padding: 8px;
    text-align: center;
    background-color: #f8f9fa;
}

.phone-section .phone-number {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.or-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #7f8c8d;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.or-divider span {
    padding: 0 10px;
    background-color: #f8f9fa;
}

.form-title {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.phone-section p {
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Form section */
.form-section {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.submit-btn span {
    font-size: 14px;
    font-weight: normal;
}

.form-section h3 {
    text-align: center;
    margin: 15px 0;
    color: #e74c3c;
    font-size: 18px;
}

.form-section ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.form-section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 25px;
    display: flex;
    float: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.form-section ul li:last-child {
    border-bottom: none;
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 30px 20px;
    color: #27ae60;
}

.success-message h3 {
    margin-bottom: 10px;
}

/* Loading state */
.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Disclaimer text */
.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 15px;
    line-height: 1.4;
    text-align: center;
}

/* Trigger button styles */
.travel-concierge-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #aa3f44;
    color: #fff;
    border: none;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 9999 !important;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 9px 0 #939393;
    line-height: 1.5;

}

.travel-concierge-trigger:hover {
    background-color: #1e1f2d;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 0px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    color: #000;
    font-weight: 600;
    font-size: 36px !important;
}
.mobile-bar {
    position: fixed;
    bottom: 0px;
    background-color: #d3c19f;
    width: 100%;
    left: 0;
    z-index: 999 !important;
    color: #000;
    list-style: none;
    text-decoration: none;
    line-height: 1.5;
    padding: 12px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.mob-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: block;
    line-height: 1;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.form-section h3 {
    text-align: center;
    margin: 15px 0;
    color: #e74c3c;
    font-size: 22px;
}

.button.btn-xs,
input[type="button"].btn-xs,
input[type="submit"].btn-xs,
.btn.btn-xs {
    font-size: 14px;
    padding: 9px 34px 9px 30px;
    line-height: 1.6em;
    min-width: 125px;
    background: #292b51;
    font-weight: 500;
}

.phone-section p {
    color: #7f8c8d;
    margin-bottom: 0;
    line-height: 1.5;
    font-family: 'Barlow+Condensed', serif;

}

form {
    padding: 20px 20px 10px;
}

button.travel-concierge-trigger {
    display: flex;
    flex-direction: column;
}

img.emoji {
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .popup-content {
        width: 95%;
    }

    .phone-number {
        font-size: 22px;
    }

    .image-section {
        display: none;
    }

    .form-section {
        width: 100%;
        min-width: 90%;
        max-width: 100%;
    }

    button.travel-concierge-trigger {
        display: none;
    }

}
@media (min-width: 475px) {
    .mobile-bar {
        display: none;
    }
}