/* =========================================
   CONTACT PAGE
========================================= */

/* =========================
   CONTACT INFORMATION
========================= */

.contact-page {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;

    padding: 100px 6%;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info {
    background: #fff8ef;

    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}


/* =========================
   CONTACT INFORMATION ITEMS
========================= */

.info {
    display: flex;

    gap: 20px;

    margin-bottom: 30px;

    align-items: flex-start;
}

.info i {
    width: 60px;
    height: 60px;

    background: #D50000;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 24px;

    flex-shrink: 0;
}

.info h3 {
    margin-bottom: 6px;

    color: #D50000;
}

.info p {
    margin: 0;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form {
    background: white;

    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.contact-form h2 {
    text-align: left;

    margin-bottom: 30px;
}

.contact-form form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 18px;

    border: 1px solid #ddd;

    border-radius: 12px;

    font-size: 16px;

    font-family: inherit;

    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: #D50000;

    outline: none;

    box-shadow:
        0 0 10px rgba(213,0,0,.2);
}

.contact-form textarea {
    min-height: 160px;

    resize: vertical;
}

.contact-form button {

    width: 100%;

    background: #D50000;

    color: white;

    border: none;

    padding: 18px;

    border-radius: 40px;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.contact-form button:hover {
    background: #FFC107;

    color: #111;
}


/* =========================
   MAP
========================= */

.map-section {

    width: 100%;

    background: #fffdf8;

    padding: 90px 6%;
}

.map {

    width: 100%;

    max-width: 1300px;

    margin: auto;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}


/* =========================
   BUSINESS HOURS
========================= */

.hours {

    width: 100%;

    background: white;

    padding: 90px 6%;
}

.hours-grid {

    max-width: 1300px;

    margin: 40px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.hours-grid div {

    background: #fff8ef;

    padding: 35px;

    text-align: center;

    border-radius: 20px;

    transition: .3s;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);
}

.hours-grid div:hover {

    transform: translateY(-8px);
}

.hours-grid h3 {

    color: #D50000;

    margin-bottom: 12px;
}

.hours-grid p {

    color: #666;
}


/* =========================
   SOCIAL MEDIA
========================= */

.social-section {

    width: 100%;

    background: #fff8ef;

    padding: 90px 6%;

    text-align: center;

    /* IMPORTANT */
    display: block;

    clear: both;
}

.social-section h2 {

    color: #D50000;

    text-align: center;

    margin-bottom: 20px;
}

.social-icons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    flex-wrap: wrap;
}

.social-icons a {

    width: 65px;

    height: 65px;

    background: #D50000;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    transition: .3s;
}

.social-icons a:hover {

    background: #FFC107;

    color: #111;

    transform: translateY(-6px);
}


/* =========================
   MAKE CTA FULL WIDTH
========================= */

.cta {

    width: 100% !important;

    max-width: none !important;

    margin: 0 !important;

    border-radius: 0 !important;

    padding: 110px 6% !important;

    display: block !important;

    clear: both;
}


/* =========================
   MAKE FOOTER FULL WIDTH
========================= */

footer {

    width: 100% !important;

    max-width: none !important;

    margin: 0 !important;

    border-radius: 0 !important;

    display: block !important;

    clear: both;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .contact-page {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 50px;

    padding: 100px 6%;
}

}


@media (max-width: 600px) {

    .contact-info,
    .contact-form {

        padding: 30px;
    }

    .info {

        flex-direction: column;

        text-align: center;
    }

    .info i {

        margin: 0 auto;
    }

    .social-icons {

        gap: 15px;
    }

    .social-icons a {

        width: 55px;

        height: 55px;

        font-size: 23px;
    }

}
/* =========================================
   FULL-WIDTH SECTION PLACEMENT
========================================= */

.social-section {
    width: 100%;
    background: #fff8ef;
    padding: 90px 6%;
    text-align: center;
}

.cta {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding: 110px 6%;
    display: block;
}

footer {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    display: block;
}