```css
/* =========================================
   BELLORA EVENTS - CONTACT PAGE
   All classes start with .contact
========================================= */

.contact {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #292929;
    font-family: Arial, Helvetica, sans-serif;
}

.contact *,
.contact *::before,
.contact *::after {
    box-sizing: border-box;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   BANNER
========================= */

.contact-banner {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.55);
}

.contact-banner-content {
    max-width: 850px;
    color: #fff;
}

.contact-banner-content span {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-banner-content h1 {
    margin: 0 0 15px;
    font-size: 52px;
    line-height: 1.15;
}

.contact-banner-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}


/* =========================
   BREADCRUMB
========================= */

.contact-breadcrumb {
    padding: 15px 0;
    background: #f8f5f2;
}

.contact-breadcrumb .contact-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 14px;
}

.contact-breadcrumb a {
    color: #8b5e3c;
    text-decoration: none;
}

.contact-breadcrumb span {
    color: #999;
}

.contact-breadcrumb strong {
    color: #333;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 90px 0;
    background: #fff;
}

.contact-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-heading > span {
    color: #a26d42;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-heading h2 {
    margin: 12px 0 16px;
    color: #292929;
    font-size: 40px;
    line-height: 1.2;
}

.contact-heading p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   CONTACT GRID
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: start;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info {
    padding: 40px;
    background: #f8f6f3;
    border-radius: 4px;
}

.contact-info-header > span {
    color: #a26d42;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-info-header h3 {
    margin: 12px 0;
    color: #292929;
    font-size: 29px;
    line-height: 1.25;
}

.contact-info-header p {
    margin: 0 0 32px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   INFO ITEMS
========================= */

.contact-info-item {
    display: flex;
    gap: 17px;
    padding: 20px 0;
    border-top: 1px solid #e5e0db;
}

.contact-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #8b5e3c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon span {
    font-size: 11px;
    font-weight: 700;
}

.contact-info-text h4 {
    margin: 0 0 7px;
    color: #333;
    font-size: 17px;
}

.contact-info-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-text a {
    color: #8b5e3c;
    text-decoration: none;
    word-break: break-word;
}

.contact-info-text a:hover {
    text-decoration: underline;
}


/* =========================
   BUSINESS BOX
========================= */

.contact-business-box {
    margin-top: 25px;
    padding: 20px;
    background: #30251e;
    color: #fff;
    border-radius: 3px;
}

.contact-business-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-business-box span {
    color: #d7d0ca;
    font-size: 13px;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-box {
    padding: 40px;
    background: #fff;
    border: 1px solid #e9e5e1;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
}

.contact-form-heading {
    margin-bottom: 28px;
}

.contact-form-heading h3 {
    margin: 0 0 8px;
    color: #292929;
    font-size: 29px;
}

.contact-form-heading p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   FORM ROW
========================= */

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    outline: none;
    border-radius: 3px;
    background: #fff;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-form-group input,
.contact-form-group select {
    height: 50px;
}

.contact-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #8b5e3c;
    box-shadow: 0 0 0 2px rgba(139, 94, 60, 0.08);
}


/* =========================
   SUBMIT BUTTON
========================= */

.contact-submit-btn {
    width: 100%;
    padding: 15px 25px;
    border: 0;
    outline: none;
    background: #8b5e3c;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: #624027;
}


/* =========================
   LOCATION
========================= */

.contact-location {
    padding: 90px 0;
    background: #f8f6f3;
}

.contact-location-heading {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-location-heading > span {
    color: #a26d42;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-location-heading h2 {
    margin: 12px 0;
    color: #292929;
    font-size: 38px;
}

.contact-location-heading p {
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.contact-map {
    width: 100%;
    overflow: hidden;
    background: #ddd;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}


/* =========================
   CTA
========================= */

.contact-cta {
    padding: 85px 0;
    background: #30251e;
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-content > span {
    color: #d1a77d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-cta-content h2 {
    margin: 14px 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.25;
}

.contact-cta-content p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   CTA BUTTONS
========================= */

.contact-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-call-btn,
.contact-email-btn {
    display: inline-block;
    padding: 14px 27px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.contact-call-btn {
    background: #fff;
    color: #6d492f;
}

.contact-email-btn {
    border: 1px solid #d1a77d;
    color: #fff;
}

.contact-call-btn:hover {
    background: #d1a77d;
    color: #fff;
}

.contact-email-btn:hover {
    background: #d1a77d;
    border-color: #d1a77d;
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .contact-banner {
        height: 390px;
    }

    .contact-banner-content h1 {
        font-size: 44px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-form-box {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .contact-container {
        width: 92%;
    }

    .contact-banner {
        height: 330px;
    }

    .contact-banner-overlay {
        padding: 20px;
    }

    .contact-banner-content h1 {
        font-size: 33px;
    }

    .contact-banner-content p {
        font-size: 15px;
    }

    .contact-banner-content span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-heading {
        margin-bottom: 38px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 15px;
    }

    .contact-info {
        padding: 28px 22px;
    }

    .contact-info-header h3 {
        font-size: 25px;
    }

    .contact-form-box {
        padding: 28px 22px;
    }

    .contact-form-heading h3 {
        font-size: 25px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-location {
        padding: 60px 0;
    }

    .contact-location-heading h2 {
        font-size: 30px;
    }

    .contact-map iframe {
        min-height: 330px;
    }

    .contact-cta {
        padding: 60px 20px;
    }

    .contact-cta-content h2 {
        font-size: 30px;
    }

    .contact-cta-content p {
        font-size: 15px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .contact-banner {
        height: 300px;
    }

    .contact-banner-content h1 {
        font-size: 28px;
    }

    .contact-heading h2 {
        font-size: 27px;
    }

    .contact-info {
        padding: 24px 18px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .contact-form-box {
        padding: 24px 18px;
    }

    .contact-location-heading h2 {
        font-size: 27px;
    }

    .contact-map iframe {
        min-height: 280px;
    }

    .contact-cta-content h2 {
        font-size: 27px;
    }

    .contact-call-btn,
    .contact-email-btn {
        width: 100%;
    }
}
```
