/* Contact page — BEE modern UI */

.bee-contact-page {
    background: var(--bee-bg);
}

.bee-contact-hero {
    padding-top: 1.75rem;
    padding-bottom: 1.5rem;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(251, 192, 45, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--bee-bg) 100%);
}

.bee-contact-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--bee-muted);
    margin-bottom: 1.35rem;
}

.bee-contact-breadcrumb a {
    color: var(--bee-black-soft);
    text-decoration: none;
    font-weight: 600;
}

.bee-contact-breadcrumb a:hover {
    color: var(--bee-yellow-dark);
}

.bee-contact-hero-copy {
    max-width: 620px;
    margin-bottom: 1.5rem;
}

.bee-contact-hero-copy h1 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bee-black);
    line-height: 1.15;
}

.bee-contact-hero-copy p {
    margin: 0;
    color: var(--bee-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

.bee-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.bee-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.05rem;
    background: #fff;
    border-radius: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
    min-width: 0;
}

.bee-contact-info-card:hover {
    transform: translateY(-3px);
    border-color: var(--bee-yellow);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    color: inherit;
}

.bee-contact-info-card--static {
    cursor: default;
}

.bee-contact-info-card--static:hover {
    transform: none;
}

.bee-contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.85rem;
    background: var(--bee-yellow-light);
    border: 1px solid rgba(251, 192, 45, 0.4);
    color: var(--bee-yellow-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.bee-contact-info-card--wa .bee-contact-info-icon {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #1ebe57;
}

.bee-contact-info-card strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--bee-muted);
    margin-bottom: 0.2rem;
}

.bee-contact-info-card span:last-child {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bee-black);
    line-height: 1.35;
    word-break: break-word;
}

/* Main layout */
.bee-contact-main {
    padding-top: 0.75rem;
    padding-bottom: 4rem;
}

.bee-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.35rem;
    align-items: start;
}

.bee-contact-form-card,
.bee-contact-map-card {
    background: #fff;
    border-radius: 1.35rem;
    padding: 1.5rem 1.55rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.bee-contact-form-card h2,
.bee-contact-map-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bee-black);
}

.bee-contact-form-sub,
.bee-contact-map-card > p {
    margin: 0 0 1.15rem;
    color: var(--bee-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.bee-contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.bee-contact-alert--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.bee-contact-alert--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.bee-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.bee-contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0;
    min-width: 0;
}

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

.bee-contact-field > span {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--bee-grey-dark);
}

.bee-contact-field input,
.bee-contact-field select,
.bee-contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.85rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--bee-black);
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.bee-contact-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.1rem;
    cursor: pointer;
}

.bee-contact-field input:focus,
.bee-contact-field select:focus,
.bee-contact-field textarea:focus {
    border-color: var(--bee-yellow);
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.28);
}

.bee-contact-field .is-invalid {
    border-color: #ef4444;
}

.bee-contact-field em {
    font-style: normal;
    font-size: 0.78rem;
    color: #dc2626;
}

.bee-contact-submit {
    margin-top: 1.15rem;
    justify-content: center;
    min-width: 180px;
}

.bee-contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bee-contact-map {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #f3f4f6;
}

.bee-contact-map iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}

.bee-contact-map-address {
    margin: 0.9rem 0 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: var(--bee-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.bee-contact-map-address i {
    color: var(--bee-yellow-dark);
    margin-top: 0.15rem;
}

.bee-contact-help-card {
    background: linear-gradient(145deg, #111 0%, #1c1c1c 100%);
    color: #fff;
    border-radius: 1.35rem;
    padding: 1.35rem 1.3rem;
    border: 2px solid var(--bee-yellow);
}

.bee-contact-help-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.bee-contact-help-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.bee-contact-help-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.bee-contact-help-card li i {
    color: var(--bee-yellow);
    font-size: 0.75rem;
}

.bee-contact-help-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1100px) {
    .bee-contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bee-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bee-contact-hero {
        padding-top: 1.15rem;
        padding-bottom: 1rem;
    }

    .bee-contact-hero-copy h1 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .bee-contact-hero-copy p {
        font-size: 0.95rem;
    }

    .bee-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .bee-contact-info-card {
        padding: 0.9rem 0.95rem;
    }

    .bee-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .bee-contact-form-card,
    .bee-contact-map-card,
    .bee-contact-help-card {
        padding: 1.1rem;
        border-radius: 1.1rem;
    }

    .bee-contact-form-card h2,
    .bee-contact-map-card h2 {
        font-size: 1.2rem;
    }

    .bee-contact-field input,
    .bee-contact-field select,
    .bee-contact-field textarea {
        font-size: 16px; /* prevents iOS zoom */
        padding: 0.75rem 0.85rem;
    }

    .bee-contact-submit {
        width: 100%;
    }

    .bee-contact-map iframe {
        height: 220px;
    }

    .bee-contact-main {
        padding-bottom: 3rem;
    }
}

@media (max-width: 380px) {
    .bee-contact-info-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}
