/* FORM WRAPPER UI */
.abf-form-wrapper {
    max-width: 700px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

.abf-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.abf-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* FORM GRID & INPUTS */
.abf-form {
    display: flex;
    flex-direction: column;
}

.abf-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.abf-form-group {
    flex: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.abf-form-row .abf-form-group {
    margin-bottom: 0;
}

.abf-form input,
.abf-form select,
.abf-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e6ed !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    color: #444 !important;
    background-color: #f9fbfd !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.abf-form input:focus,
.abf-form select:focus,
.abf-form textarea:focus {
    outline: none !important;
    border-color: #158586 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(21, 133, 134, 0.1) !important;
}

.abf-form textarea {
    resize: vertical;
}

/* SUBMIT BUTTON */
.abf-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #189899 0%, #116c6d 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 16px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(24, 152, 153, 0.3) !important;
}

.abf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 152, 153, 0.4) !important;
}

.abf-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.abf-submit-btn:hover svg {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .abf-form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .abf-form-wrapper {
        padding: 1.5rem;
    }
}

/* FANCY BOOK NOW BUTTON */
.abf-book-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #158586 0%, #0e6465 100%) !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(21, 133, 134, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    max-width: fit-content !important;
}

.abf-book-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(21, 133, 134, 0.4) !important;
    background: linear-gradient(135deg, #189899 0%, #116c6d 100%) !important;
}

.abf-book-btn::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.abf-book-btn:hover::after {
    transform: translateX(4px);
}

/* Remove borders from container that holds the button (useful for Elementor/Themes) */
.abf-book-btn {
    border: none !important;
    outline: none !important;
}

div:has(> .abf-book-btn) {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}