.highlight-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: var(--Rusty-Red, #B85C4E);
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.secondary-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 2px solid #FFF;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.tertiary-btn {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #03424C;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
    z-index: 1;
    margin: auto;
}

/* APPLY BG TO body .wrapper */
body .wrapper {
    background-color: #EFF0F2;
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/bg-1.png);
}

.main {
    padding-top: 122px;
}

/* CONTACT INFORMATION */
.contact-information {
    display: block;
    width: 100%;
    max-width: 1340px;
    padding: 130px 232px 80px 136px;
    background-color: #3F646D;
    position: relative;
    margin: auto;
}

.contact-information .bg {
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/bg-1.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-information h2 {
    color: #FFF;
    font-family: 'TrendSlabOne', serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
}

.contact-information p {
    color: #FFF;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
}

.contact-information .contact-form form p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-information .contact-form form .textfield {
    width: 100%;
    display: flex;
    height: 60px;
    padding: 19px 20px;
    align-items: center;
    gap: 10px;
    border: 1px solid #DCDCDC;
    background: #FFF;
    display: block;
    color: #000;
    text-align: left;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 120%;
    
}

.contact-information .contact-form form .textfield::placeholder {
    font-weight: 300;
}

.contact-information .contact-form form textarea {
    display: flex;
    height: 171px;
    padding: 22px 20px;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #DCDCDC;
    background: #FFF;
}

.contact-information .contact-form [data-name="your-name"],
.contact-information .contact-form [data-name="your-email"],
.contact-information .contact-form [data-name="your-phone-number"],
.contact-information .contact-form [data-name="your-location"] {
    display: block;
    width: calc(50% - 8px);
}

.contact-information .contact-form [data-name="your-message"] {
    width: 100%;
}

.contact-information .contact-form .event-type-field::placeholder,
.contact-information .contact-form .time-field::placeholder,
.contact-information .contact-form .date-field::placeholder,
.contact-information .contact-form .guests-field::placeholder,
.contact-information .contact-form .requests-field::placeholder {
    color: #777;
}

.contact-information .contact-form [type="submit"] {
    display: flex;
    height: 59px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: transparent;
    color: #FFF;
    font-family: "SofiaRough", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    border: 2px solid #FFF;
}

/* FAQs */

.faqs {
    display: flex;
    flex-direction: column;
    padding: 100px 0 50px 0;
    justify-content: center;
    align-items: center;
    width: 1340px;
    margin: auto;
}

.faqs h2 {
    color: #03424C;
    text-align: center;
    font-family: 'TrendSlabOne', serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    margin-bottom: 0;
}

.faqs h2:nth-child(2) {
    margin-bottom: 36px;
}

.faqs .accordion-container {
    display: flex;
    gap: 20px;
    width: 100%;
}

.faqs .accordion-column {
    flex: 1;
    overflow: hidden;
}

.faqs .accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}

.faqs .accordion-item:last-child {
    border-bottom: none;
}

.faqs .accordion-header {
    background-color: #FFF;
    color: #fff;
    padding: 22px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    color: #000;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
}

.faqs .accordion-header:hover {
    background-color: #FDFDFD;
}

.faqs .accordion-header::after {
    content: '>';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    line-height: 20px;
    font-weight: 100;
    padding-top: 0px;
    position: absolute;
    height: 20px;
    right: 22px;
    transform: scaleX(0.60);
}

.faqs .accordion-header.open::after {
    transform: rotate(90deg) scaleX(0.60); /* Down-pointing chevron */
}

.faqs .accordion-content {
    display: none;
    padding: 22px;
    background-color: #fafafa;
    animation: fadeIn 0.3s;
    color: #000;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* LOCATIONS */

.locations {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 84px 0 94px 0;
    width: 1340px;
    margin: auto;
}

.locations .bg {
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/bg-1.png);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.locations h2 {
    color: #03424C;
    text-align: center;
    font-family: 'TrendSlabOne', serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    margin-bottom: 44px;
}

.locations p {
    color: #000;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    width: 645px;
    margin-bottom: 50px;
}

.locations .location-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.locations .location-items .location-item {
    text-align: center;
    padding: 32px 48px;
    border-radius: 8px;
    background: #42666F;
    width: calc(50% - 22px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.locations .location-items .location-item h5 {
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.locations .location-items .location-item ul {
    width: 450px;
    margin: 32px 0;
}

.locations .location-items .location-item ul li {
    color: #FFF;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 20px;
    text-align: left;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.locations .location-items .location-item ul li:last-child {
    margin-bottom: 0;
}

.locations .location-items .location-item ul li svg {
    border: 1px solid #fff;
    height: 25px;
    width: 25px;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
}

.press-media {
    padding: 100px 0 50px 0;
    background-color: #03424C;
    position: relative;
}

.press-media .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.01;
    background-image: url(https://ketchgrillastg.wpenginepowered.com/wp-content/uploads/2025/01/newsletter-bg.png);
}

.press-media .container {
    width: 1340px;
}

.press-media .container h2 {
    color: #FFF;
    text-align: center;
    font-family: 'TrendSlabOne', serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 100%;
    text-align: center;
}

.press-media .container p {
    color: #FFF;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 140%;
    width: 580px;
    margin: auto;
}

.press-media .container .contact {
    display: flex;
    width: 441px;
    margin: auto;
    gap: 30px;
    margin-top: 36px;
}

.press-media .container .contact .column {
    display: flex;
}

.press-media .container .contact span.icon {
    display: flex;
    width: 39px;
    height: 39px;
    padding: 8px 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 19.5px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.30);
    margin-right: 10px;
}

.press-media .container .contact a {
    color: #FFF;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
    letter-spacing: -0.24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.gform_confirmation_wrapper .gform_confirmation_message_3{
	color: #fff !important;
}

@media only screen and (max-width: 1000px) {
	.main{
    	padding-top: 80px;
	}
	
    .contact-information {
        padding: 60px 24px 20px 24px;
    }

    .contact-information .contact-form form p {
        flex-direction: column;
    }

    .contact-information .contact-form [data-name="your-name"],
    .contact-information .contact-form [data-name="your-email"],
    .contact-information .contact-form [data-name="your-phone-number"],
    .contact-information .contact-form [data-name="your-location"] {
        width: 100%;
        margin-bottom: 8px;
    }

    .contact-information .contact-form form p br {
        display: none;
    }

    .contact-information .contact-form [type="submit"] {
        width: 145px;
        margin: auto;
    }

    /* FAQs */

    .faqs {
        width: 100%;
        padding: 0 24px;
        padding-top: 55px;
    }

    .faqs h2 {
        width: 100%;
        color: #03424C;
        text-align: center;
        font-size: 30px;
        line-height: 100%;
    }

    .faqs .accordion-container {
        flex-direction: column;
        gap: 0;
    }

    /* LOCATIONS */
    .locations {
        width: 100%;
        padding: 40px 24px;
    }

    .locations h2 {
        text-align: center;
        font-size: 30px;
        line-height: 100%;
    }

    .locations .location-items {
        width: 100%;
        flex-direction: column;
    }

    .locations .location-items .location-item {
        width: 100%;
        padding: 32px 14px;
    }

    .locations .location-items .location-item:last-child {
        margin-top: 16px;
    }

    .locations .location-items .location-item h5 {
        text-transform: capitalize;
    }

    .locations .location-items .location-item ul {
        width: 100%;
    }

    .press-media {
        width: 100%;
        padding-top: 60px;
    }

    .press-media .container {
        width: 100%;
        padding: 0 24px;
    }

    .press-media .container h2 {
        font-size: 30px;
    }

    .press-media .container p {
        width: 100%;
    }

    .press-media .container .contact {
        width: 100%;
        flex-direction: column;
    }

    .press-media .container .contact .column {
        justify-content: center;
        align-items: center;
    }
}