/*
 * صفحة "تواصل معنا" — طبقة تصميم مستقلة.
 * تُحمَّل عبر stack('css_after_brand') أي بعد beestore.css، وتستخدم فضاء أسماء
 * خاصًا (.beeContact / .bc-*) حتى لا تتعارض مع قواعد .sectionContact القديمة.
 */

.beeContact {
    --bc-honey: #FFC928;
    --bc-gold: #E6A900;
    --bc-amber: #F5B400;
    --bc-deep: #C98B00;
    --bc-brown: #3B2A12;
    --bc-brown-soft: #6B5B41;
    --bc-muted: #8B7E68;
    --bc-cream: #FFF8E7;
    --bc-line: #EFE3C6;
    --bc-surface: #FFFFFF;
    --bc-ring: rgba(255, 201, 40, .28);
    --bc-shadow: 0 30px 70px -46px rgba(59, 42, 18, .55);

    position: relative;
    isolation: isolate;
    padding-block: 46px 96px;
    background: #FFFFFF;
    overflow: hidden;
}

.bc-shell {
    width: min(1240px, 100% - 40px);
    margin-inline: auto;
}

/* ─────────────────────────  الترويسة  ───────────────────────── */

.bc-hero {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    margin-block-end: 44px;
}

.bc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(230, 169, 0, .32);
    background: rgba(255, 201, 40, .13);
    color: #8A6400;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.bc-hero__pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2FA24E;
    flex: none;
}

.bc-hero__pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(47, 162, 78, .45);
    animation: bc-pulse 2.2s ease-out infinite;
}

@keyframes bc-pulse {
    0% { transform: scale(.6); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.bc-hero__title {
    margin: 18px 0 0;
    color: var(--bc-brown);
    font-size: clamp(30px, 4.4vw, 50px);
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: -.4px;
}

.bc-hero__title em {
    position: relative;
    font-style: normal;
    white-space: nowrap;
}

/* خط تمييز يدوي أسفل الكلمة المفتاحية. */
.bc-hero__title em::after {
    content: "";
    position: absolute;
    inset-inline: -2px;
    inset-block-end: 2px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 201, 40, .85), rgba(255, 201, 40, .25));
    z-index: -1;
}

.bc-hero__text {
    margin: 14px auto 0;
    max-width: 560px;
    color: var(--bc-brown-soft);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.85;
}

.bc-hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-block-start: 26px;
}

.bc-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid var(--bc-line);
    background: #fff;
    box-shadow: 0 10px 26px -22px rgba(59, 42, 18, .55);
    color: var(--bc-brown);
    font-size: 13.5px;
    font-weight: 700;
}

.bc-stat svg {
    width: 18px;
    height: 18px;
    color: var(--bc-gold);
    flex: none;
}

/* ─────────────────────────  البطاقة الرئيسية  ───────────────────────── */

.bc-card {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
    border-radius: 28px;
    border: 1px solid var(--bc-line);
    background: var(--bc-surface);
    box-shadow: var(--bc-shadow);
    overflow: hidden;
}

/* ── العمود الجانبي ── */

.bc-aside {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
    justify-content: center;
    padding: 46px 40px;
    color: var(--bc-brown);
    background: linear-gradient(158deg, #FFD65C 0%, #F7BB1B 46%, #E29C00 100%);
    overflow: hidden;
}

/* نمط خلية النحل — يربط الصفحة بهوية بي ستور. */
.bc-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='rgba(59,42,18,0.13)' stroke-width='2'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50' fill='none' stroke='rgba(59,42,18,0.13)' stroke-width='2'/%3E%3C/svg%3E");
    opacity: .55;
    pointer-events: none;
}

.bc-aside::after {
    content: "";
    position: absolute;
    inset-block-start: -120px;
    inset-inline-start: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .38) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.bc-aside > * {
    position: relative;
    z-index: 1;
}

.bc-aside__title {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 31px);
    font-weight: 800;
    line-height: 1.3;
}

.bc-aside__lead {
    margin: 10px 0 0;
    color: rgba(59, 42, 18, .78);
    font-size: 14.5px;
    line-height: 1.85;
}

.bc-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bc-channel {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .38);
    color: inherit;
    text-decoration: none;
    transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

a.bc-channel:hover,
a.bc-channel:focus-visible {
    background: rgba(255, 255, 255, .82);
    transform: translateX(-4px);
    box-shadow: 0 16px 30px -24px rgba(59, 42, 18, .85);
    color: inherit;
    text-decoration: none;
}

.bc-channel__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff;
    color: var(--bc-brown);
    box-shadow: 0 8px 18px -12px rgba(59, 42, 18, .7);
    flex: none;
}

.bc-channel__icon svg {
    width: 21px;
    height: 21px;
}

.bc-channel__label {
    display: block;
    color: rgba(59, 42, 18, .66);
    font-size: 12.5px;
    font-weight: 600;
    margin-block-end: 2px;
}

.bc-channel__value {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-word;
}

.bc-channel__value[dir="ltr"] {
    text-align: right;
}

/* لوحة أوقات العمل — تملأ الفراغ الذي كان أسفل بيانات التواصل. */
.bc-hours {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(59, 42, 18, .09);
    border: 1px solid rgba(59, 42, 18, .12);
}

.bc-hours__head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
}

.bc-hours__head svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.bc-hours__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-block-start: 10px;
    color: rgba(59, 42, 18, .82);
    font-size: 13.5px;
    line-height: 1.7;
}

.bc-hours__row span:last-child {
    font-weight: 700;
    white-space: nowrap;
}

.bc-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block-start: 4px;
}

.bc-social__label {
    color: rgba(59, 42, 18, .7);
    font-size: 13px;
    font-weight: 700;
}

.bc-social__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-social__links a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .55);
    transition: background-color .2s ease, transform .2s ease;
}

.bc-social__links a:hover {
    background: #fff;
    transform: translateY(-2px);
}

.bc-social__links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ── عمود النموذج ── */

.bc-form-side {
    padding: 46px 44px;
    min-width: 0;
}

.bc-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-block-end: 26px;
}

.bc-form-head__title {
    margin: 0;
    color: var(--bc-brown);
    font-size: 22px;
    font-weight: 800;
}

.bc-form-head__text {
    margin: 6px 0 0;
    color: var(--bc-muted);
    font-size: 13.5px;
    line-height: 1.7;
}

.bc-form-head__hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--bc-cream);
    color: #8A6400;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
}

.bc-form-head__hint i {
    font-style: normal;
    color: #D4372F;
}

.bc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}

.bc-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bc-field--full {
    grid-column: 1 / -1;
}

.bc-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-block-end: 9px;
    color: var(--bc-brown);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.bc-label i {
    font-style: normal;
    color: #D4372F;
    font-size: 15px;
    line-height: 1;
}

.bc-label__optional {
    color: var(--bc-muted);
    font-size: 12px;
    font-weight: 500;
}

.bc-control {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding-inline: 50px 18px;
    border-radius: 14px;
    border: 1.5px solid var(--bc-line);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.bc-control__icon {
    position: absolute;
    inset-inline-start: 16px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    color: #C3B08A;
    pointer-events: none;
    transition: color .2s ease;
}

.bc-control__icon svg {
    width: 19px;
    height: 19px;
}

.beeContact .bc-input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 54px;
    margin: 0;
    padding-inline: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--bc-brown);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}

.beeContact .bc-input::placeholder {
    color: #B3A78E;
    font-weight: 400;
}

.bc-control:focus-within {
    border-color: var(--bc-gold);
    box-shadow: 0 0 0 4px var(--bc-ring);
}

.bc-control:focus-within .bc-control__icon {
    color: var(--bc-gold);
}

/* منطقة النص الطويل. */
.beeContact .bc-textarea {
    width: 100%;
    min-height: 150px;
    padding: 16px 18px;
    border: 1.5px solid var(--bc-line);
    border-radius: 14px;
    background: #fff;
    color: var(--bc-brown);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    resize: vertical;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.beeContact .bc-textarea::placeholder {
    color: #B3A78E;
    font-weight: 400;
}

.beeContact .bc-textarea:focus {
    border-color: var(--bc-gold);
    box-shadow: 0 0 0 4px var(--bc-ring);
}

.bc-counter {
    align-self: flex-start;
    direction: ltr;
    margin-block-start: 7px;
    color: var(--bc-muted);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.bc-counter--over {
    color: #D4372F;
    font-weight: 700;
}

.bc-help {
    margin: 7px 2px 0;
    color: var(--bc-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

/* رسائل الخطأ أسفل الحقل. */
.bc-error {
    display: none;
    align-items: center;
    gap: 6px;
    margin-block-start: 7px;
    color: #D4372F;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.6;
}

.bc-error svg {
    width: 15px;
    height: 15px;
    flex: none;
}

.bc-field--invalid .bc-error {
    display: flex;
}

.bc-field--invalid .bc-control,
.bc-field--invalid .bc-textarea,
.bc-field--invalid .bc-phone {
    border-color: #E8A9A3;
    background: #FFFAFA;
}

.bc-field--invalid .bc-control:focus-within,
.bc-field--invalid .bc-textarea:focus,
.bc-field--invalid .bc-phone:focus-within {
    border-color: #D4372F;
    box-shadow: 0 0 0 4px rgba(212, 55, 47, .16);
}

/* ── القائمة المنسدلة لنوع المشكلة ── */

.bc-select {
    position: relative;
}

.bc-select .bc-control {
    padding-inline-end: 46px;
}

.bc-select .bc-input {
    cursor: pointer;
}

.bc-select__chevron {
    position: absolute;
    inset-inline-end: 16px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    color: #9C8A66;
    pointer-events: none;
    transition: transform .25s ease;
}

.bc-select__chevron svg {
    width: 18px;
    height: 18px;
    display: block;
}

.bc-select.is-open .bc-select__chevron {
    transform: translateY(-50%) rotate(180deg);
}

.bc-options {
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline: 0;
    z-index: 40;
    max-height: 262px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--bc-line);
    background: #fff;
    box-shadow: 0 28px 60px -32px rgba(59, 42, 18, .55);
    overflow-y: auto;
    display: none;
}

.bc-select.is-open .bc-options {
    display: block;
    animation: bc-drop .18s ease-out;
}

@keyframes bc-drop {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.bc-option {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 11px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--bc-brown-soft);
    font-size: 14.5px;
    font-weight: 600;
    text-align: start;
    cursor: pointer;
    transition: background-color .16s ease, color .16s ease;
}

.bc-option__dot {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--bc-cream);
    color: var(--bc-gold);
    flex: none;
}

.bc-option__dot svg {
    width: 16px;
    height: 16px;
}

.bc-option:hover,
.bc-option.is-active {
    background: var(--bc-cream);
    color: var(--bc-brown);
}

.bc-option.is-selected .bc-option__dot {
    background: var(--bc-honey);
    color: var(--bc-brown);
}

/* ── حقل الجوال ── */

.bc-phone {
    display: flex;
    align-items: stretch;
    min-height: 54px;
    border-radius: 14px;
    border: 1.5px solid var(--bc-line);
    background: #fff;
    direction: ltr;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.bc-phone:focus-within {
    border-color: var(--bc-gold);
    box-shadow: 0 0 0 4px var(--bc-ring);
}

.bc-phone__prefix {
    position: relative;
    flex: none;
}

.bc-phone__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: var(--bc-brown);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color .18s ease;
}

.bc-phone__btn:hover {
    background: var(--bc-cream);
}

.bc-phone__btn img {
    width: 24px;
    height: 17px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(59, 42, 18, .12);
}

.bc-phone__btn svg {
    width: 14px;
    height: 14px;
    color: #9C8A66;
    transition: transform .22s ease;
}

.bc-phone__prefix.is-open .bc-phone__btn svg {
    transform: rotate(180deg);
}

.bc-phone__divider {
    width: 1px;
    align-self: center;
    height: 26px;
    background: var(--bc-line);
    flex: none;
}

.beeContact .bc-phone__input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: var(--bc-brown);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .6px;
    direction: ltr;
    text-align: left;
    outline: none;
}

.beeContact .bc-phone__input::placeholder {
    color: #B3A78E;
    font-weight: 400;
    letter-spacing: normal;
}

.bc-phone__list {
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline-start: 0;
    z-index: 40;
    min-width: 148px;
    padding: 7px;
    border-radius: 14px;
    border: 1px solid var(--bc-line);
    background: #fff;
    box-shadow: 0 24px 52px -30px rgba(59, 42, 18, .55);
    display: none;
}

.bc-phone__prefix.is-open .bc-phone__list {
    display: block;
    animation: bc-drop .18s ease-out;
}

.bc-phone__option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 9px 11px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--bc-brown);
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .16s ease;
}

.bc-phone__option:hover,
.bc-phone__option.is-active {
    background: var(--bc-cream);
}

.bc-phone__option img {
    width: 24px;
    height: 17px;
    object-fit: cover;
    border-radius: 3px;
}

/* ── منطقة إرفاق الصور ── */

.bc-drop {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px dashed rgba(230, 169, 0, .5);
    border-radius: 18px;
    background: #FFFDF6;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.bc-drop:hover,
.bc-drop:focus-within {
    border-color: var(--bc-gold);
    background: var(--bc-cream);
}

.bc-drop.is-dragging {
    border-color: var(--bc-gold);
    background: var(--bc-cream);
    transform: scale(1.008);
}

/* حقل الملف الأصلي يغطي المنطقة كاملة وهو شفاف تمامًا،
   فلا يظهر نص المتصفح الافتراضي "اختر ملفًا" كما كان سابقًا. */
.beeContact .bc-drop__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    font-size: 0;
    color: transparent;
}

.bc-drop__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: linear-gradient(140deg, var(--bc-honey), var(--bc-gold));
    color: var(--bc-brown);
    box-shadow: 0 14px 26px -18px rgba(230, 169, 0, .95);
    flex: none;
}

.bc-drop__icon svg {
    width: 25px;
    height: 25px;
}

.bc-drop__body {
    min-width: 0;
}

.bc-drop__title {
    margin: 0;
    color: var(--bc-brown);
    font-size: 16px;
    font-weight: 800;
}

.bc-drop__title small {
    color: var(--bc-muted);
    font-size: 12.5px;
    font-weight: 500;
}

.bc-drop__text {
    display: block;
    margin-block-start: 5px;
    color: var(--bc-brown-soft);
    font-size: 13.5px;
    line-height: 1.7;
}

.bc-drop__btn {
    position: relative;
    z-index: 1;
    padding: 11px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bc-honey), var(--bc-gold));
    color: var(--bc-brown);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 24px -16px rgba(230, 169, 0, .95);
}

.bc-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-block-start: 14px;
}

.bc-thumbs:empty {
    display: none;
}

.bc-thumb {
    position: relative;
    width: 92px;
    border-radius: 14px;
    border: 1px solid var(--bc-line);
    background: #fff;
    padding: 6px;
    box-shadow: 0 12px 26px -22px rgba(59, 42, 18, .7);
}

.bc-thumb img {
    display: block;
    width: 100%;
    height: 66px;
    object-fit: cover;
    border-radius: 9px;
}

.bc-thumb__name {
    display: block;
    margin-block-start: 6px;
    color: var(--bc-muted);
    font-size: 10.5px;
    line-height: 1.4;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-thumb__remove {
    position: absolute;
    inset-block-start: -8px;
    inset-inline-end: -8px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #D4372F;
    box-shadow: 0 6px 16px -6px rgba(59, 42, 18, .6);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.bc-thumb__remove:hover {
    background: #D4372F;
    color: #fff;
    transform: scale(1.08);
}

/* ── زر الإرسال ── */

.beeContact .bc-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 58px;
    padding: 0 28px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(100deg, var(--bc-honey) 0%, var(--bc-amber) 52%, var(--bc-gold) 100%);
    color: var(--bc-brown);
    font-size: 16.5px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 20px 38px -22px rgba(230, 169, 0, .95);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.beeContact .bc-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 26px 44px -22px rgba(230, 169, 0, 1);
    filter: saturate(1.06);
}

.beeContact .bc-submit:active:not(:disabled) {
    transform: translateY(0);
}

.beeContact .bc-submit:disabled {
    cursor: progress;
    opacity: .75;
    box-shadow: none;
}

.bc-submit svg {
    width: 21px;
    height: 21px;
    transition: transform .25s ease;
}

.beeContact .bc-submit:hover:not(:disabled) svg {
    transform: translateX(-4px);
}

.bc-spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid rgba(59, 42, 18, .28);
    border-top-color: var(--bc-brown);
    animation: bc-spin .7s linear infinite;
}

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

/* ── لوحة النتيجة ── */

.bc-alert {
    display: none;
    align-items: flex-start;
    gap: 13px;
    grid-column: 1 / -1;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 14.5px;
    line-height: 1.75;
}

.bc-alert.is-visible {
    display: flex;
    animation: bc-drop .22s ease-out;
}

.bc-alert__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex: none;
}

.bc-alert__icon svg {
    width: 19px;
    height: 19px;
}

.bc-alert strong {
    display: block;
    margin-block-end: 2px;
    font-weight: 800;
}

.bc-alert--success {
    border-color: #BFE3C8;
    background: #F1FAF3;
    color: #1E6B37;
}

.bc-alert--success .bc-alert__icon {
    background: #2FA24E;
    color: #fff;
}

.bc-alert--error {
    border-color: #F0C5C1;
    background: #FEF5F4;
    color: #A3241D;
}

.bc-alert--error .bc-alert__icon {
    background: #D4372F;
    color: #fff;
}

/* ─────────────────────────  شريط الطمأنة  ───────────────────────── */

.bc-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-block-start: 26px;
}

.bc-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid var(--bc-line);
    background: #fff;
    box-shadow: 0 16px 36px -30px rgba(59, 42, 18, .6);
    transition: transform .22s ease, box-shadow .22s ease;
}

.bc-trust__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -28px rgba(59, 42, 18, .7);
}

.bc-trust__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bc-cream);
    color: var(--bc-gold);
    flex: none;
}

.bc-trust__icon svg {
    width: 21px;
    height: 21px;
}

.bc-trust__title {
    margin: 0;
    color: var(--bc-brown);
    font-size: 15px;
    font-weight: 800;
}

.bc-trust__text {
    margin: 3px 0 0;
    color: var(--bc-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ─────────────────────────  الاستجابة  ───────────────────────── */

@media (max-width: 1180px) {
    .bc-aside { padding: 38px 30px; }
    .bc-form-side { padding: 38px 30px; }
}

@media (max-width: 992px) {
    .bc-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .bc-aside {
        order: 2;
        gap: 22px;
    }

    .bc-form-side {
        order: 1;
    }

}

@media (max-width: 767px) {
    .beeContact { padding-block: 30px 64px; }
    .bc-shell { width: min(1240px, 100% - 28px); }
    .bc-grid { grid-template-columns: minmax(0, 1fr); }
    .bc-aside,
    .bc-form-side { padding: 28px 20px; }
    .bc-card { border-radius: 22px; }
    .bc-trust { grid-template-columns: minmax(0, 1fr); }
    .bc-form-head { flex-direction: column; gap: 10px; }
}

@media (max-width: 575px) {
    .bc-drop {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 16px;
    }

    .bc-drop__icon { width: 50px; height: 50px; border-radius: 15px; }
    .bc-drop__btn { grid-column: 1 / -1; text-align: center; }
    .bc-hero__stats { gap: 8px; }
    .bc-stat { padding: 9px 13px; font-size: 12.5px; }
    .bc-channel { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 11px 12px; }
    .bc-channel__icon { width: 40px; height: 40px; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .beeContact *,
    .beeContact *::before,
    .beeContact *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
