/* Webell Main Styles */

.elementor-button,
.elementor-button:hover {
    transform: none !important;
}


/* =========================
   WEBELL BUTTON SYSTEM
========================= */

/* PRIMARY BUTTON */

.btn-primary .elementor-button {
    background-color: #5E85A1 !important;
    color: #F9FAFB !important;
    border: 2px solid #5E85A1 !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    white-space: nowrap;
}

.btn-primary .elementor-button:hover {
    background-color: transparent !important;
    color: #5E85A1 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12) !important;
}

/* SECONDARY BUTTON */

.btn-secondary .elementor-button {
    background-color: transparent !important;
    color: #1B403E !important;
    border: 2px solid #1B403E !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    box-shadow: none !important;
    white-space: nowrap;
}

.btn-secondary .elementor-button:hover {
    background-color: #1B403E !important;
    color: #F9FAFB !important;
}

/* PREMIUM BUTTON */

.btn-premium .elementor-button {
    background-color: #1B403E !important;
    color: #F9FAFB !important;
    border: 2px solid #1B403E !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    box-shadow: 0 6px 18px rgba(27,64,62,0.18) !important;
    white-space: nowrap;
}

.btn-premium .elementor-button:hover {
    background-color: transparent !important;
    color: #1B403E !important;
    border: 2px solid #1B403E !important;
    box-shadow: 0 10px 24px rgba(27,64,62,0.16) !important;
}

/* =========================
   MOBILE BUTTONS
========================= */

@media (max-width: 767px) {

    .btn-primary .elementor-button,
    .btn-secondary .elementor-button,
    .btn-premium .elementor-button {
        white-space: normal !important;
        width: auto !important;
        min-width: 200px !important;
        max-width: 280px !important;
        text-align: center !important;
    }

}


/* =========================
   Hide padding
========================= */


@media (max-width: 767px) {

    .hero-carousel-col {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 0 !important;
        height: 0 !important;
    }

}


/* =========================
   BUDGET DROPDOWN
========================= */

.budget-dropdown {
    overflow: visible;
}

/* HEADER */

.budget-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.budget-header > *:first-child {
    flex-grow: 1;
    min-width: 0;
}

.budget-header > *:last-child {
    flex-shrink: 0;
}

/* CONTENT WRAPPER */

.budget-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
    opacity: 0;
}

.budget-content.e-con {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
}

/* ACTIVE STATE */

.budget-dropdown.active .budget-content {
    max-height: none !important;
    overflow: visible !important;
}

/* PRICE LINES */

.price-line {
    min-width: 0;
}

/* CHEVRON */

.budget-chevron {
    transition: transform 0.35s ease;
}

.budget-dropdown.active .budget-chevron {
    transform: rotate(90deg);
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .budget-header {
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 20px;
    }

    .budget-header .left-col {
        flex: 1;
        min-width: 0;
    }

    .budget-header .icon-wrapper {
        flex-shrink: 0;
    }

    .price-line {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
        padding: 32px 0;
        min-width: 0;
    }

    .left-col {
        min-width: 0;
    }

    .right-col {
        width: 100%;
        margin-top: 4px;
        min-width: 0;
    }

    .right-col .elementor-widget {
        text-align: left !important;
    }

    .price-line .elementor-widget-text-editor {
        max-width: 95%;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .budget-header {
        gap: 16px;
    }

    .price-line {
        padding: 28px 0;
    }

}