/*-- -------------------------- -->
<---           Hero              -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero {
        text-align: center;
        padding: 0;
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #hero .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        padding: calc(var(--navHeight, 4.5rem) + clamp(4rem, 10vw, 7rem)) 1rem clamp(5rem, 12vw, 8rem);
        position: relative;
        z-index: 2;
    }
    #hero .cs-topper {
        color: var(--primary);
        margin-bottom: 1rem;
    }
    #hero .cs-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 700;
        line-height: 1.1em;
        max-width: 50rem;
        margin: 0 auto 1.5rem;
        color: #fff;
    }
    #hero .cs-text {
        font-size: clamp(1rem, 2vw, 1.25rem);
        max-width: 40rem;
        margin: 0 auto 2rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7em;
    }
    #hero .cs-button-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    #hero .cs-button-outline {
        color: #fff;
        border-color: #fff;
    }
    #hero .cs-button-outline:hover {
        color: var(--secondary);
        background-color: #fff;
        border-color: #fff;
    }
    #hero .cs-background {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a2a2a 100%);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #hero .cs-background::after {
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
        position: absolute;
        top: 0;
        left: 0;
    }
}

/*-- -------------------------- -->
<---       About Preview         -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #about-preview {
        padding: var(--sectionPadding);
        background-color: var(--backgroundWhite);
    }
    #about-preview .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    #about-preview .cs-content {
        text-align: left;
    }
    #about-preview .cs-text {
        margin-bottom: 1.5rem;
    }
    #about-preview .cs-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin: 2rem 0;
        padding: 2rem 0;
        border-top: 1px solid rgba(197, 165, 90, 0.3);
        border-bottom: 1px solid rgba(197, 165, 90, 0.3);
    }
    #about-preview .cs-stat {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    #about-preview .cs-stat-number {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        font-family: var(--headingFont);
        color: var(--primary);
        line-height: 1;
    }
    #about-preview .cs-stat-label {
        font-size: 0.875rem;
        font-family: var(--bodyFont);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bodyTextColor);
    }
    #about-preview .cs-image-group {
        width: 100%;
        overflow: hidden;
    }
    #about-preview .cs-picture-large {
        width: 100%;
    }
}
@media only screen and (min-width: 64rem) {
    #about-preview .cs-container {
        flex-direction: row;
        align-items: center;
    }
    #about-preview .cs-content {
        width: 55%;
    }
    #about-preview .cs-image-group {
        width: 45%;
    }
}

/*-- -------------------------- -->
<---     Services Overview       -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #services-overview {
        padding: var(--sectionPadding);
        background-color: var(--backgroundLight);
        text-align: center;
    }
    #services-overview .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #services-overview .cs-content {
        margin-bottom: 3rem;
    }
    #services-overview .cs-title,
    #services-overview .cs-text {
        margin-left: auto;
        margin-right: auto;
    }
    #services-overview .cs-card-group {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    #services-overview .cs-item {
        background: #fff;
        padding: 2.5rem 2rem;
        text-align: left;
        transition: transform 0.3s, box-shadow 0.3s;
        border-bottom: 3px solid transparent;
    }
    #services-overview .cs-item:hover {
        transform: translateY(-4px);
        box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
        border-bottom-color: var(--primary);
    }
    #services-overview .cs-icon-wrapper {
        width: 4rem;
        height: 4rem;
        background-color: rgba(197, 165, 90, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    #services-overview .cs-icon {
        width: 2rem;
        height: 2rem;
        color: var(--primary);
    }
    #services-overview .cs-h3 {
        font-size: 1.25rem;
        font-family: var(--headingFont);
        font-weight: 600;
        margin: 0 0 0.75rem;
        color: var(--headerColor);
    }
    #services-overview .cs-item-text {
        font-size: 0.9375rem;
        line-height: 1.7em;
        color: var(--bodyTextColor);
        margin: 0 0 1rem;
    }
    #services-overview .cs-link {
        font-size: 0.875rem;
        font-weight: 600;
        font-family: var(--bodyFont);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--primary);
        text-decoration: none;
        transition: color 0.3s;
    }
    #services-overview .cs-link:hover {
        color: var(--primaryDark);
    }
}
@media only screen and (min-width: 48rem) {
    #services-overview .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-- -------------------------- -->
<---        Client Logos         -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #clients {
        padding: var(--sectionPadding);
        background-color: var(--secondary);
        text-align: center;
    }
    #clients .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #clients .cs-topper {
        color: var(--primary);
    }
    #clients .cs-title {
        color: #fff;
        margin-left: auto;
        margin-right: auto;
    }
    #clients .cs-logo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        margin-top: 2.5rem;
        background-color: rgba(197, 165, 90, 0.15);
    }
    #clients .cs-logo-item {
        font-size: clamp(0.875rem, 2vw, 1.125rem);
        font-family: var(--headingFont);
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        background-color: var(--secondary);
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s, background-color 0.3s;
    }
    #clients .cs-logo-item:hover {
        color: var(--primary);
        background-color: rgba(197, 165, 90, 0.05);
    }
    #clients .cs-logo-item img {
        max-height: 5rem;
        width: auto;
        max-width: 85%;
        object-fit: contain;
        opacity: 0.8;
        transition: opacity 0.3s;
    }
    #clients .cs-logo-item:hover img {
        opacity: 1;
    }
}
@media only screen and (min-width: 48rem) {
    #clients .cs-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*-- -------------------------- -->
<---       Testimonials          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #testimonials {
        padding: var(--sectionPadding);
        background-color: var(--backgroundLight);
        text-align: center;
    }
    #testimonials .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
    }
    #testimonials .cs-title {
        margin-left: auto;
        margin-right: auto;
    }
    #testimonials .cs-testimonial-group {
        margin-top: 2.5rem;
    }
    #testimonials .cs-testimonial {
        background: #fff;
        padding: 3rem 2rem;
        position: relative;
    }
    #testimonials .cs-quote-icon {
        margin-bottom: 1.5rem;
    }
    #testimonials .cs-review-text {
        font-size: 1.0625rem;
        font-style: italic;
        line-height: 1.8em;
        color: var(--bodyTextColor);
        margin: 0 0 2rem;
    }
    #testimonials .cs-reviewer {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    #testimonials .cs-reviewer-name {
        font-size: 1rem;
        font-weight: 700;
        font-family: var(--headingFont);
        color: var(--headerColor);
    }
    #testimonials .cs-reviewer-title {
        font-size: 0.875rem;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
}

/*-- -------------------------- -->
<---       Video Section         -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #video-section {
        padding: var(--sectionPadding);
        background-color: var(--backgroundWhite);
        text-align: center;
    }
    #video-section .cs-container {
        width: 100%;
        max-width: 60rem;
        margin: auto;
    }
    #video-section .cs-title {
        margin-left: auto;
        margin-right: auto;
    }
    #video-section .cs-video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        margin-top: 2.5rem;
        background: var(--secondary);
    }
    #video-section .cs-video-wrapper iframe,
    #video-section .cs-video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/*-- -------------------------- -->
<---         CTA Section         -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #cta {
        padding: clamp(4rem, 10vw, 7rem) 1rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        text-align: center;
    }
    #cta .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
    }
    #cta .cs-title {
        font-size: clamp(1.75rem, 4vw, 2.75rem);
        color: #fff;
        margin-left: auto;
        margin-right: auto;
    }
    #cta .cs-text {
        color: rgba(255, 255, 255, 0.7);
        margin: 0 auto 2rem;
    }
}

/*-- -------------------------- -->
<---         Page Hero           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #page-hero {
        text-align: center;
        padding: calc(var(--navHeight, 4.5rem) + clamp(4rem, 8vw, 7rem)) 1rem clamp(4rem, 8vw, 6rem);
        position: relative;
        z-index: 1;
    }
    #page-hero .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
        position: relative;
        z-index: 2;
    }
    #page-hero .cs-topper {
        color: var(--primary);
    }
    #page-hero .cs-title {
        font-size: clamp(2.25rem, 5vw, 3.75rem);
        color: #fff;
        margin-left: auto;
        margin-right: auto;
    }
    #page-hero .cs-text {
        color: rgba(255, 255, 255, 0.75);
        margin: 0 auto;
        font-size: 1.125rem;
    }
    #page-hero .cs-background {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a2a2a 100%);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

/*-- -------------------------- -->
<---        About Full           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #about-full {
        padding: var(--sectionPadding);
    }
    #about-full .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    #about-full .cs-text {
        margin-bottom: 1rem;
    }
    #about-full .cs-image-group {
        width: 100%;
        overflow: hidden;
    }
}
@media only screen and (min-width: 64rem) {
    #about-full .cs-container {
        flex-direction: row;
        align-items: center;
    }
    #about-full .cs-content {
        width: 55%;
    }
    #about-full .cs-image-group {
        width: 45%;
    }
}

/*-- -------------------------- -->
<---      Mission & Vision       -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #mission-vision {
        padding: var(--sectionPadding);
        background-color: var(--backgroundLight);
    }
    #mission-vision .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    #mission-vision .cs-card {
        background: #fff;
        padding: 2.5rem 2rem;
        border-left: 4px solid var(--primary);
    }
    #mission-vision .cs-h3 {
        font-size: 1.25rem;
        font-family: var(--headingFont);
        margin: 0.5rem 0 1rem;
        color: var(--headerColor);
    }
}
@media only screen and (min-width: 48rem) {
    #mission-vision .cs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-- -------------------------- -->
<---        What We Do           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #what-we-do {
        padding: var(--sectionPadding);
    }
    #what-we-do .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #what-we-do .cs-content {
        margin-bottom: 2.5rem;
    }
    #what-we-do .cs-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    #what-we-do .cs-li-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 1.5rem;
        background: var(--backgroundLight);
        transition: transform 0.3s;
    }
    #what-we-do .cs-li-item:hover {
        transform: translateX(8px);
    }
    #what-we-do .cs-number {
        font-size: 1.5rem;
        font-weight: 700;
        font-family: var(--headingFont);
        color: var(--primary);
        flex-shrink: 0;
        width: 3rem;
    }
    #what-we-do .cs-h3 {
        font-size: 1.125rem;
        font-family: var(--headingFont);
        font-weight: 600;
        margin: 0 0 0.5rem;
        color: var(--headerColor);
    }
    #what-we-do .cs-text {
        font-size: 0.9375rem;
        margin: 0;
    }
}
@media only screen and (min-width: 48rem) {
    #what-we-do .cs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-- -------------------------- -->
<---           Team              -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #team {
        padding: var(--sectionPadding);
        background-color: var(--secondary);
        text-align: center;
    }
    #team .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #team .cs-topper {
        color: var(--primary);
    }
    #team .cs-title {
        color: #fff;
        margin-left: auto;
        margin-right: auto;
    }
    #team .cs-team-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    #team .cs-team-card {
        background: rgba(255, 255, 255, 0.05);
        overflow: hidden;
        text-align: left;
    }
    #team .cs-team-photo {
        width: 100%;
        height: 16rem;
        overflow: hidden;
    }
    #team .cs-team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    #team .cs-team-info {
        padding: 2rem;
    }
    #team .cs-team-name {
        font-size: 1.25rem;
        font-family: var(--headingFont);
        font-weight: 600;
        color: #fff;
        margin: 0 0 0.25rem;
    }
    #team .cs-team-role {
        font-size: 0.8125rem;
        font-family: var(--bodyFont);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--primary);
        display: block;
        margin-bottom: 1rem;
    }
    #team .cs-team-bio {
        font-size: 0.9375rem;
        line-height: 1.7em;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }
}
@media only screen and (min-width: 48rem) {
    #team .cs-team-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-- -------------------------- -->
<---         Promise             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #promise {
        padding: var(--sectionPadding);
        background-color: var(--backgroundLight);
        text-align: center;
    }
    #promise .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
    }
    #promise .cs-title {
        margin-left: auto;
        margin-right: auto;
    }
    #promise .cs-text {
        margin: 0 auto 1rem;
    }
    #promise .cs-highlight {
        font-size: 1.25rem;
        font-family: var(--headingFont);
        font-style: italic;
        color: var(--primary);
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
}

/*-- -------------------------- -->
<---      Services Intro         -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #services-intro {
        padding: var(--sectionPadding);
        text-align: center;
    }
    #services-intro .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
    }
    #services-intro .cs-title {
        margin-left: auto;
        margin-right: auto;
    }
    #services-intro .cs-text {
        margin: 0 auto;
    }
}

/*-- -------------------------- -->
<---     Service Sections        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    .cs-service-section {
        padding: var(--sectionPadding);
    }
    .cs-service-section:nth-child(even) {
        background-color: var(--backgroundLight);
    }
    .cs-service-section .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    .cs-service-section .cs-text {
        margin-bottom: 1.5rem;
    }
    .cs-service-section .cs-service-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .cs-service-section .cs-service-item {
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(197, 165, 90, 0.2);
    }
    .cs-service-section .cs-service-item:last-child {
        border-bottom: none;
    }
    .cs-service-section .cs-service-name {
        font-size: 1rem;
        font-weight: 600;
        font-family: var(--headingFont);
        color: var(--headerColor);
        display: block;
        margin-bottom: 0.375rem;
    }
    .cs-service-section .cs-service-desc {
        font-size: 0.9375rem;
        line-height: 1.6em;
        color: var(--bodyTextColor);
        margin: 0;
    }
    .cs-service-section .cs-service-img {
        width: 100%;
        min-height: 18rem;
    }
}
@media only screen and (min-width: 64rem) {
    .cs-service-section .cs-container {
        flex-direction: row;
        align-items: center;
    }
    .cs-service-section .cs-content {
        width: 55%;
    }
    .cs-service-section .cs-image-group {
        width: 45%;
    }
    .cs-service-section.cs-reverse .cs-container {
        flex-direction: row-reverse;
    }
}

/*-- -------------------------- -->
<---       Case Studies          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #case-studies {
        padding: var(--sectionPadding);
    }
    #case-studies .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        text-align: center;
    }
    #case-studies .cs-title {
        margin-left: auto;
        margin-right: auto;
    }
    #case-studies .cs-portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        text-align: left;
    }
    #case-studies .cs-portfolio-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #case-studies .cs-portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    #case-studies .cs-portfolio-card {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    #case-studies .cs-portfolio-card:hover {
        transform: translateY(-4px);
        box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    }
    #case-studies .cs-portfolio-header {
        padding: 1.5rem 1.5rem 1rem;
        border-bottom: 2px solid var(--primary);
    }
    #case-studies .cs-portfolio-name {
        font-size: 1.25rem;
        font-family: var(--headingFont);
        font-weight: 700;
        margin: 0 0 0.25rem;
        color: var(--headerColor);
    }
    #case-studies .cs-portfolio-type {
        font-size: 0.8125rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--primary);
    }
    #case-studies .cs-portfolio-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    #case-studies .cs-portfolio-req,
    #case-studies .cs-portfolio-outcome {
        font-size: 0.9375rem;
        line-height: 1.6em;
        color: var(--bodyTextColor);
        margin: 0 0 0.75rem;
    }
    #case-studies .cs-portfolio-outcome {
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 48rem) {
    #case-studies .cs-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 64rem) {
    #case-studies .cs-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-- -------------------------- -->
<---       Contributors          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #contributors {
        padding: var(--sectionPadding);
        background-color: var(--backgroundLight);
        text-align: center;
    }
    #contributors .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #contributors .cs-title {
        margin-left: auto;
        margin-right: auto;
    }
    #contributors .cs-contributors-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
        text-align: left;
    }
    #contributors .cs-contributor {
        background: #fff;
        padding: 1.25rem 1.5rem;
        border-left: 3px solid var(--primary);
    }
    #contributors .cs-contributor-name {
        font-size: 1rem;
        font-family: var(--headingFont);
        font-weight: 600;
        margin: 0 0 0.375rem;
        color: var(--headerColor);
    }
    #contributors .cs-contributor-detail {
        font-size: 0.875rem;
        color: var(--bodyTextColor);
        margin: 0;
        line-height: 1.5em;
    }
}
@media only screen and (min-width: 48rem) {
    #contributors .cs-contributors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 64rem) {
    #contributors .cs-contributors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-- -------------------------- -->
<---      Contact Section        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #contact-section {
        padding: var(--sectionPadding);
    }
    #contact-section .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    #contact-section .cs-form-wrapper {
        width: 100%;
    }
    #contact-section .cs-title {
        margin-bottom: 0.75rem;
    }
    #contact-section .cs-text {
        margin-bottom: 2rem;
    }
    #contact-section .cs-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #contact-section .cs-form-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    #contact-section .cs-form-field {
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }
    #contact-section .cs-form-field.cs-full {
        grid-column: 1 / -1;
    }
    #contact-section .cs-label {
        font-size: 0.8125rem;
        font-weight: 600;
        font-family: var(--bodyFont);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--headerColor);
    }
    #contact-section .cs-input {
        font-size: 1rem;
        font-family: var(--bodyFont);
        padding: 0.875rem 1rem;
        border: 1px solid rgba(0, 0, 0, 0.12);
        background-color: #fff;
        color: var(--headerColor);
        outline: none;
        transition: border-color 0.3s;
        -webkit-appearance: none;
        appearance: none;
    }
    #contact-section .cs-input:focus {
        border-color: var(--primary);
    }
    #contact-section .cs-input::placeholder {
        color: rgba(0, 0, 0, 0.35);
    }
    #contact-section .cs-select {
        cursor: pointer;
    }
    #contact-section .cs-textarea {
        resize: vertical;
        min-height: 8rem;
    }
    #contact-section .cs-submit {
        cursor: pointer;
        border: none;
        align-self: flex-start;
        margin-top: 0.5rem;
    }
    #contact-section .cs-contact-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    #contact-section .cs-info-card {
        background: var(--backgroundLight);
        padding: 1.5rem;
    }
    #contact-section .cs-info-header {
        font-size: 0.8125rem;
        font-family: var(--bodyFont);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--primary);
        margin: 0 0 1rem;
    }
    #contact-section .cs-info-item {
        margin-bottom: 0.75rem;
    }
    #contact-section .cs-info-item:last-child {
        margin-bottom: 0;
    }
    #contact-section .cs-info-label {
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--headerColor);
        display: block;
        margin-bottom: 0.125rem;
    }
    #contact-section .cs-info-link {
        font-size: 0.9375rem;
        color: var(--bodyTextColor);
        text-decoration: none;
        transition: color 0.3s;
        line-height: 1.5em;
    }
    #contact-section .cs-info-link:hover {
        color: var(--primary);
    }
    #contact-section .cs-social-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    #contact-section .cs-social-btn {
        font-size: 0.9375rem;
        font-family: var(--bodyFont);
        color: var(--bodyTextColor);
        text-decoration: none;
        padding: 0.5rem 0;
        transition: color 0.3s;
    }
    #contact-section .cs-social-btn:hover {
        color: var(--primary);
    }
    #contact-section .cs-map-wrapper {
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }
    #contact-section .cs-map-wrapper iframe {
        width: 100%;
    }
}
@media only screen and (min-width: 48rem) {
    #contact-section .cs-form-group {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 64rem) {
    #contact-section .cs-container {
        flex-direction: row;
    }
    #contact-section .cs-form-wrapper {
        width: 60%;
    }
    #contact-section .cs-contact-info {
        width: 40%;
    }
}

/*-- -------------------------- -->
<---      Footer Info Section    -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #footer-1390 .cs-footer-info {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: clamp(1.5rem, 5vw, 4rem);
        border-bottom: 1px solid rgba(197, 165, 90, 0.3);
    }
    #footer-1390 .cs-footer-col {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    #footer-1390 .cs-footer-header {
        font-size: 0.8125rem;
        font-family: var(--bodyFont);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--primary);
        margin-bottom: 0.25rem;
    }
    #footer-1390 .cs-footer-link {
        font-size: 0.9375rem;
        color: #bababa;
        text-decoration: none;
        line-height: 1.5em;
        transition: color 0.3s;
    }
    #footer-1390 .cs-footer-link:hover {
        color: var(--primary);
    }
    #footer-1390 .cs-credit {
        display: block;
        margin-top: 1rem;
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.4);
    }
    #footer-1390 .cs-credit a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s;
    }
    #footer-1390 .cs-credit a:hover {
        color: var(--primary);
    }
}
@media only screen and (min-width: 48rem) {
    #footer-1390 .cs-footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
}
