﻿/* ==========================================
   BEE THEME V1.1
   Interiors360
========================================== */

:root {
    --bee-primary: #7d4b55;
    --bee-primary-dark: #b58a52;
    --bee-text: #333333;
    --bee-text-light: #666666;
    --bee-border: #DDDDDD;
    --bee-background: #FFFFFF;
    --bee-danger: #D9534F;
    --bee-radius: 10px;
}

/* ==========================================
   Header
========================================== */

.bee__header {
    text-align: center;
    margin-bottom: 30px;
}

.bee__title {
    font-size: 34px;
    font-weight: 700;
    color: var(--bee-primary);
    margin-bottom: 10px;
}

.bee__subtitle {
    font-size: 16px;
    color: var(--bee-text-light);
    line-height: 1.6;
}

/* ==========================================
   Form
========================================== */

.bee__form {
    max-width: 700px;
    margin: 9px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ==========================================
   Fields
========================================== */

.bee__field {
    display: flex;
    flex-direction: column;
}

/* ==========================================
   Inputs
========================================== */

.bee__input,
.bee__textarea,
select.bee__input {
    width: 100%;
    min-height: 52px;
    padding: 15px 18px;
    border: 1px solid var(--bee-border);
    border-radius: var(--bee-radius);
    background: var(--bee-background);
    color: var(--bee-text);
    font-size: 15px;
    box-sizing: border-box;
    transition: all .25s ease;
}

/* ==========================================
   Dropdown
========================================== */

select.bee__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    padding-right: 55px;
}

/* ==========================================
   Textarea
========================================== */

.bee__textarea {
    resize: vertical;
    min-height: 140px;
}

    /* ==========================================
   Focus
========================================== */

    .bee__input:focus,
    .bee__textarea:focus,
    select.bee__input:focus {
        outline: none;
        border-color: var(--bee-primary);
        box-shadow: 0 0 0 4px rgba(212,160,23,.12);
    }

/* ==========================================
   Placeholder
========================================== */

::placeholder {
    color: #999999;
}

/* ==========================================
   Checkbox
========================================== */

.bee__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--bee-text-light);
}

.bee__checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--bee-primary);
}

.bee__checkbox a {
    color: var(--bee-primary);
    text-decoration: none;
    font-weight: 600;
}

    .bee__checkbox a:hover {
        text-decoration: underline;
    }

/* ==========================================
   Submit Button
========================================== */

.bee__submit {
    align-self: center;
    min-width: 240px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--bee-radius);
    background: var(--bee-primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

    .bee__submit:hover {
        background: var(--bee-primary-dark);
        transform: translateY(-2px);
    }

/* ==========================================
   Validation
========================================== */

.text-danger {
    color: var(--bee-danger);
    font-size: 13px;
    margin-top: 5px;
}

/* ==========================================
   Success Page
========================================== */

.bee__success {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
}


.bee-success {
    max-width: 650px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.bee-success__icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #2e7d32;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.bee-success h1 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.bee-success__message {
    font-size: 18px;
    color: #555;
}

.bee-success__reference {
    margin: 30px 0;
    padding: 18px;
    background: #fafafa;
    border-radius: 10px;
}

    .bee-success__reference span {
        display: block;
        color: #888;
        font-size: 14px;
    }

    .bee-success__reference strong {
        display: block;
        margin-top: 8px;
        font-size: 22px;
        color: #d4a017;
        letter-spacing: 1px;
    }

.bee-success__next {
    margin-top: 12px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.bee-success .bee__submit {
    margin-top: 28px;
    min-width: 280px;
}

.bee-success .bee__submit:hover {
    color: white;
}

.bee-success__hint {
    margin-top: 16px;
    color: #888;
    font-size: 14px;
}

.bee-success__redirect {
    margin: 30px 0;
    padding: 20px;
    background: #fdfbf3;
    border: 1px solid #f1df9b;
    border-radius: 10px;
}

    .bee-success__redirect p {
        margin: 8px 0;
        color: #555;
        line-height: 1.7;
    }

#beeCountdown {
    color: #d4a017;
    font-size: 28px;
}




/* ==========================================
   BEE V2.0
   Compact Responsive Layout
========================================== */

/* Required Fields */

.bee__required-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Optional Section */

.bee__optional {
    border: 1px solid #ececec;
    border-radius: var(--bee-radius);
    background: #fafafa;
    overflow: hidden;
    margin-bottom: 18px;
}

    /* Summary */

    .bee__optional summary {
        list-style: none;
        cursor: pointer;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 600;
        color: #555;
        user-select: none;
        transition: .25s;
    }

        .bee__optional summary:hover {
            color: var(--bee-primary);
        }

        .bee__optional summary:hover::after {
            border-color: var(--bee-primary);
        }

        .bee__optional summary::-webkit-details-marker {
            display: none;
        }


    .bee__optional summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .bee__optional summary::after {
            content: "";
            width: 10px;
            height: 10px;
            border-right: 2px solid #777;
            border-bottom: 2px solid #777;
            transform: rotate(45deg);
            transition: transform .3s ease;
            margin-left: 15px;
            flex-shrink: 0;
        }

    .bee__optional[open] summary::after {
        transform: rotate(-135deg);
    }

/* Accordion Body */

.bee__optional-content {
    padding: 20px;
    border-top: 1px solid #ececec;
}

/* Two Column Grid */

.bee__optional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Full Width Row */

.bee__field-full {
    grid-column: 1 / -1;
}

/* Checkbox */

.bee__checkbox {
    margin-top: 6px;
    margin-bottom: 9px;
}

/* Submit Button */

.bee__submit {
    width: 100%;
    min-width: unset;
}

/* Reduce overall spacing */

.bee__form {
    gap: 14px;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px) {

    .bee__required-grid {
        grid-template-columns: 1fr;
    }

    .bee__optional-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px) {

    .bee__optional summary {
        font-size: 14px;
        padding: 15px 16px;
    }

    .bee__optional-content {
        padding: 16px;
    }

    .bee__checkbox {
        align-items: flex-start;
    }

    .bee__checkbox-label {
        line-height: 1.6;
    }

    .bee__phone-group {
        flex-direction: column;
    }

    .bee__country-code {
        width: 100%;
        min-width: 100%;
    }



}


/* ==========================================
Phone Number
========================================== */

.bee__phone-group {
    display: flex;
    gap: 12px;
}

.bee__country-code {
    display: flex;
    align-items: center;
    min-width: 95px;
    height: 52px;
    border: 1px solid var(--bee-border);
    border-radius: var(--bee-radius);
    background: #fff;
    padding: 0 14px;
    transition: .25s;
}

    .bee__country-code:focus-within {
        border-color: var(--bee-primary);
        box-shadow: 0 0 0 4px rgba(212,160,23,.12);
    }

.bee__plus {
    color: var(--bee-primary);
    font-size: 18px;
    font-weight: 700;
    margin-right: 6px;
}

.bee__country-input {
    border: none;
    outline: none;
    width: 45px;
    background: transparent;
    font-size: 15px;
}

.bee__phone-input {
    flex: 1;
}
