/* =========================================================
   CONTACT HERO
   ========================================================= */

.cs-contact-hero {
    --width: 100%;
    --content-width: 100%;

    position: relative;
    isolation: isolate;

    width: 100%;
    max-width: none;
    min-height: 560px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* dark veil */

.cs-contact-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(26, 28, 26, 0.92) 0%,
            rgba(26, 28, 26, 0.74) 40%,
            rgba(26, 28, 26, 0.34) 70%,
            rgba(26, 28, 26, 0.12) 100%
        );
}


/* subtle green tone */

.cs-contact-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            180deg,
            rgba(52, 78, 65, 0.10),
            rgba(52, 78, 65, 0.02)
        );
}


/* inner */

.cs-contact-hero > .cs-contact-hero-inner {
    --width: 100%;
    --max-width: 1240px;

    position: relative;
    z-index: 2;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    min-height: 560px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* content */

.cs-contact-hero .cs-contact-hero-content {
    --width: 100%;
    --max-width: 720px;

    width: 100%;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* kicker */

.cs-contact-hero .cs-contact-hero-kicker {
    color: var(--cs-accent);

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-contact-hero .cs-contact-hero-kicker p {
    margin: 0;
}


/* title */

.cs-contact-hero
.cs-contact-hero-title
.elementor-heading-title {
    margin: 18px 0 0;

    color: var(--cs-white);

    font-size: clamp(54px, 5.5vw, 82px);
    line-height: 0.98;
    font-weight: 700;

    letter-spacing: -0.055em;
}


/* text */

.cs-contact-hero .cs-contact-hero-text {
    max-width: 560px;

    margin-top: 24px;

    color: rgba(255,255,255,0.78);

    font-size: 18px;
    line-height: 1.65;
}

.cs-contact-hero .cs-contact-hero-text p {
    margin: 0;
}

/* =========================================================
   HERO ACTIONS
   ========================================================= */

.cs-contact-hero .cs-contact-hero-actions {
    --width: auto;
    --max-width: none;

    width: auto;

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


.cs-contact-hero .cs-contact-hero-button {
    --width: auto;
    --max-width: none;

    width: auto;
}


.cs-contact-hero
.cs-contact-hero-button
.elementor-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: var(--cs-radius-pill);

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


/* primary */

.cs-contact-hero
.cs-contact-hero-button-primary
.elementor-button {
    background: var(--cs-accent);

    border: 1px solid var(--cs-accent);

    color: var(--cs-dark);
}

.cs-contact-hero
.cs-contact-hero-button-primary
.elementor-button:hover {
    transform: translateY(-2px);

    background: var(--cs-white);
    border-color: var(--cs-white);

    color: var(--cs-dark);
}


/* secondary */

.cs-contact-hero
.cs-contact-hero-button-secondary
.elementor-button {
    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.32);

    color: var(--cs-white);
}

.cs-contact-hero
.cs-contact-hero-button-secondary
.elementor-button:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,0.12);

    border-color: var(--cs-white);

    color: var(--cs-white);
}

/* =========================================================
   CONTACT INFO
   ========================================================= */

.cs-contact-info {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    padding: 110px 0;

    background: var(--cs-background);
}

.cs-contact-info > .cs-contact-info-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    flex-direction: row;
    align-items: stretch;

    gap: 70px;
}


/* =========================================================
   INTRO
   ========================================================= */

.cs-contact-info .cs-contact-info-intro {
    --width: 40%;
    --max-width: none;

    width: 40%;
    flex: 0 0 calc(40% - 35px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cs-contact-info .cs-contact-info-kicker {
    color: var(--cs-accent);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-contact-info .cs-contact-info-kicker p {
    margin: 0;
}

.cs-contact-info
.cs-contact-info-title
.elementor-heading-title {
    margin: 16px 0 0;

    color: var(--cs-dark);

    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.03;
    font-weight: 700;

    letter-spacing: -0.045em;
}

.cs-contact-info .cs-contact-info-text {
    max-width: 460px;

    margin-top: 22px;

    color: var(--cs-text-muted);

    font-size: 16px;
    line-height: 1.7;
}

.cs-contact-info .cs-contact-info-text p {
    margin: 0;
}


/* =========================================================
   CARDS
   ========================================================= */

.cs-contact-info .cs-contact-info-cards {
    --width: 60%;
    --max-width: none;

    width: 60%;
    flex: 1 1 0;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.cs-contact-info .cs-contact-info-card {
    --width: 100%;
    --max-width: none;

    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 28px 30px;

    background: rgba(255,255,255,0.72);

    border: 1px solid rgba(38,39,36,0.10);
    border-radius: 20px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cs-contact-info .cs-contact-info-card:hover {
    transform: translateY(-3px);

    border-color: rgba(52,78,65,0.24);

    box-shadow:
        0 16px 34px rgba(38,39,36,0.07);
}


/* content */

.cs-contact-info .cs-contact-info-card-main {
    --width: auto;
    --max-width: none;

    width: auto;
    min-width: 0;

    flex: 1 1 auto;
}

.cs-contact-info .cs-contact-info-card-label {
    color: var(--cs-accent);

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cs-contact-info .cs-contact-info-card-label p {
    margin: 0;
}


/* value */

.cs-contact-info
.cs-contact-info-card-value
.elementor-heading-title {
    margin: 9px 0 0;

    color: var(--cs-dark);

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: -0.025em;
}

.cs-contact-info
.cs-contact-info-card-value
.elementor-heading-title a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HOURS
   ========================================================= */

.cs-contact-info .cs-contact-info-hours {
    margin-top: 10px;

    color: var(--cs-dark);

    font-size: 15px;
    line-height: 1.65;
}

.cs-contact-info .cs-contact-info-hours p {
    margin: 0;
}

.cs-contact-info .cs-contact-info-hours strong {
    font-weight: 700;
}

.cs-contact-info .cs-contact-info-hours span {
    margin-left: 8px;

    color: var(--cs-text-muted);
}


/* =========================================================
   ICON
   ========================================================= */

.cs-contact-info .cs-contact-info-card-icon {
    --width: auto;
    --max-width: none;

    width: auto;

    flex: 0 0 auto;
}

.cs-contact-info
.cs-contact-info-card-icon
.elementor-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--cs-primary);

    background: rgba(52,78,65,0.07);

    border: 1px solid rgba(52,78,65,0.14);
    border-radius: 50%;

    font-size: 20px;
}

.cs-contact-info
.cs-contact-info-card-icon
.elementor-icon i {
    color: var(--cs-primary);
}

.cs-contact-info
.cs-contact-info-card-icon
.elementor-icon svg {
    width: 20px;
    height: 20px;

    fill: var(--cs-primary);
}

.cs-contact-info
.cs-contact-info-card-icon
.elementor-icon svg path {
    fill: var(--cs-primary);
}

/* =========================================================
   CONTACT LOCATION
   ========================================================= */

.cs-contact-location {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    padding: 0 0 110px;

    background: var(--cs-background);
}

.cs-contact-location > .cs-contact-location-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    flex-direction: row;
    align-items: stretch;

    gap: 48px;
}


/* =========================================================
   MAP
   ========================================================= */

.cs-contact-location .cs-contact-location-map {
    --width: 62%;
    --max-width: none;

    width: 62%;
    min-height: 520px;

    flex: 0 0 calc(62% - 24px);

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 22px 50px rgba(38,39,36,0.10);
}

.cs-contact-location .cs-contact-map-widget {
    width: 100%;
    height: 100%;
}

.cs-contact-location
.cs-contact-map-widget
.elementor-widget-container {
    width: 100%;
    height: 100%;
}

.cs-contact-location
.cs-contact-map-widget
iframe {
    display: block;

    width: 100%;
    height: 520px;

    border: 0;
}


/* =========================================================
   CONTENT
   ========================================================= */

.cs-contact-location .cs-contact-location-content {
    --width: 38%;
    --max-width: none;

    width: 38%;

    flex: 1 1 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


/* kicker */

.cs-contact-location .cs-contact-location-kicker {
    color: var(--cs-accent);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-contact-location .cs-contact-location-kicker p {
    margin: 0;
}


/* title */

.cs-contact-location
.cs-contact-location-title
.elementor-heading-title {
    margin: 16px 0 0;

    color: var(--cs-dark);

    font-size: clamp(40px, 3.7vw, 54px);
    line-height: 1.04;
    font-weight: 700;

    letter-spacing: -0.045em;
}


/* address */

.cs-contact-location .cs-contact-location-address {
    margin-top: 28px;

    color: var(--cs-primary);

    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
}

.cs-contact-location .cs-contact-location-address p {
    margin: 0;
}


/* text */

.cs-contact-location .cs-contact-location-text {
    max-width: 430px;

    margin-top: 18px;

    color: var(--cs-text-muted);

    font-size: 15px;
    line-height: 1.7;
}

.cs-contact-location .cs-contact-location-text p {
    margin: 0;
}


/* =========================================================
   LOCATION META
   ========================================================= */

.cs-contact-location .cs-contact-location-meta {
    --width: auto;
    --max-width: none;

    width: auto;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 10px;

    margin-top: 24px;
}


.cs-contact-location .cs-contact-location-meta-icon {
    --width: auto;
    --max-width: none;

    width: auto;

    flex: 0 0 auto;
}

.cs-contact-location
.cs-contact-location-meta-icon
.elementor-icon {
    color: var(--cs-accent);

    font-size: 16px;
}

.cs-contact-location
.cs-contact-location-meta-icon
.elementor-icon i {
    color: var(--cs-accent);
}

.cs-contact-location
.cs-contact-location-meta-icon
.elementor-icon svg {
    width: 16px;
    height: 16px;

    fill: var(--cs-accent);
}

.cs-contact-location .cs-contact-location-meta-text {
    color: var(--cs-dark);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.cs-contact-location .cs-contact-location-meta-text p {
    margin: 0;
}


/* =========================================================
   BUTTON
   ========================================================= */

.cs-contact-location .cs-contact-location-button {
    margin-top: 30px;
}

.cs-contact-location
.cs-contact-location-button
.elementor-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    background: var(--cs-primary);

    border: 1px solid var(--cs-primary);
    border-radius: var(--cs-radius-pill);

    color: var(--cs-white);

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.cs-contact-location
.cs-contact-location-button
.elementor-button:hover {
    transform: translateY(-2px);

    background: var(--cs-dark);
    border-color: var(--cs-dark);

    color: var(--cs-white);
}

/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */

.cs-contact-form {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    padding: 110px 0;

    background: #2f4439;
}


.cs-contact-form > .cs-contact-form-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: flex;
    flex-direction: row;
    align-items: stretch;

    gap: 70px;
}


/* =========================================================
   INTRO
   ========================================================= */

.cs-contact-form .cs-contact-form-intro {
    --width: 40%;
    --max-width: none;

    width: 40%;

    flex: 0 0 calc(40% - 35px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


.cs-contact-form .cs-contact-form-kicker {
    color: var(--cs-accent);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cs-contact-form .cs-contact-form-kicker p {
    margin: 0;
}


/* title */

.cs-contact-form
.cs-contact-form-title
.elementor-heading-title {
    margin: 16px 0 0;

    color: var(--cs-white);

    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.03;
    font-weight: 700;

    letter-spacing: -0.045em;
}


/* text */

.cs-contact-form .cs-contact-form-text {
    max-width: 470px;

    margin-top: 22px;

    color: rgba(255,255,255,0.72);

    font-size: 16px;
    line-height: 1.7;
}

.cs-contact-form .cs-contact-form-text p {
    margin: 0;
}

/* =========================================================
   CONTACT FORM NOTE
   ========================================================= */

.cs-contact-form .cs-contact-form-note {
    --width: auto;
    --max-width: 430px;

    width: auto;
    max-width: 430px;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 16px;

    margin-top: 34px;

    padding: 18px 20px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
}


.cs-contact-form .cs-contact-form-note-icon {
    --width: auto;
    --max-width: none;

    width: auto;

    flex: 0 0 auto;
}


.cs-contact-form
.cs-contact-form-note-icon
.elementor-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--cs-accent);

    border: 1px solid rgba(214,168,75,0.34);
    border-radius: 50%;

    font-size: 17px;
}


.cs-contact-form
.cs-contact-form-note-icon
.elementor-icon i {
    color: var(--cs-accent);
}


.cs-contact-form
.cs-contact-form-note-icon
.elementor-icon svg {
    width: 17px;
    height: 17px;

    fill: var(--cs-accent);
}


.cs-contact-form .cs-contact-form-note-content {
    --width: auto;
    --max-width: none;

    width: auto;

    flex: 1 1 auto;
}


.cs-contact-form .cs-contact-form-note-label {
    color: rgba(255,255,255,0.58);

    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
}

.cs-contact-form .cs-contact-form-note-label p {
    margin: 0;
}


.cs-contact-form
.cs-contact-form-note-phone
.elementor-heading-title {
    margin: 5px 0 0;

    color: var(--cs-accent);

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}


.cs-contact-form
.cs-contact-form-note-phone
.elementor-heading-title a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   FORM CARD
   ========================================================= */

.cs-contact-form .cs-contact-form-card {
    --width: 60%;
    --max-width: none;

    width: 60%;

    flex: 1 1 0;

    padding: 38px;

    background: rgba(255,255,255,0.96);

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 26px;

    box-shadow:
        0 26px 60px rgba(20,25,21,0.20);
}

/* =========================================================
   FORM FIELDS
   ========================================================= */

.cs-contact-form
.cs-contact-form-widget
.elementor-form-fields-wrapper {
    row-gap: 20px;
}


.cs-contact-form
.cs-contact-form-widget
.elementor-field-group {
    margin-bottom: 0;
}


.cs-contact-form
.cs-contact-form-widget
.elementor-field-label {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}


/* inputs */

.cs-contact-form
.cs-contact-form-widget
.elementor-field {
    min-height: 52px;

    padding: 0 16px;

    background: #f7f5ef;

    border: 1px solid rgba(38,39,36,0.12);
    border-radius: 12px;

    color: var(--cs-dark);

    font-size: 14px;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.cs-contact-form
.cs-contact-form-widget
textarea.elementor-field {
    min-height: 150px;

    padding: 15px 16px;

    resize: vertical;
}


/* placeholder */

.cs-contact-form
.cs-contact-form-widget
.elementor-field::placeholder {
    color: rgba(38,39,36,0.42);
}


/* focus */

.cs-contact-form
.cs-contact-form-widget
.elementor-field:focus {
    background: #ffffff;

    border-color: var(--cs-primary);

    box-shadow:
        0 0 0 3px rgba(52,78,65,0.08);

    outline: none;
}

.cs-contact-form
.cs-contact-form-widget
select.elementor-field {
    cursor: pointer;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.cs-contact-form
.cs-contact-form-widget
.elementor-field-type-submit {
    margin-top: 4px;
}


.cs-contact-form
.cs-contact-form-widget
.elementor-button {
    width: 100%;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--cs-primary);

    border: 1px solid var(--cs-primary);
    border-radius: var(--cs-radius-pill);

    color: var(--cs-white);

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.02em;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.cs-contact-form
.cs-contact-form-widget
.elementor-button:hover {
    transform: translateY(-2px);

    background: var(--cs-dark);
    border-color: var(--cs-dark);

    color: var(--cs-white);
}

.cs-contact-form
.cs-contact-form-widget
.elementor-message {
    margin-top: 18px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 13px;
    line-height: 1.5;
}


.cs-contact-form
.cs-contact-form-widget
.elementor-message-success {
    background: rgba(52,78,65,0.09);

    color: var(--cs-primary);
}


.cs-contact-form
.cs-contact-form-widget
.elementor-message-danger {
    background: rgba(160,50,40,0.08);

    color: #8c3028;
}

/* =========================================================
   CONTACT FORM – LABEL / TEXT FIX
   ========================================================= */

.cs-contact-form
.cs-contact-form-widget
.elementor-field-label {
    color: rgba(255, 255, 255, 0.92);
}


/* ha valahol az Elementor külön span-be rakja */
.cs-contact-form
.cs-contact-form-widget
.elementor-field-group > label {
    color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   CONTACT FORM – SELECT FIX
   ========================================================= */


/* focus állapotban se legyen fekete keret */
.cs-contact-form
.cs-contact-form-widget
select.elementor-field:focus {
    background: #ffffff;

    border-color: rgba(214, 168, 75, 0.75);

    box-shadow: 0 0 0 3px rgba(214, 168, 75, 0.10);
    outline: none;
}


/* opcionális: textarea/input label-ekhez illeszkedjen */
.cs-contact-form
.cs-contact-form-widget
.elementor-field-group label {
    color: rgba(255, 255, 255, 0.92);
}

/* =========================================================
   CONTACT SELECT - FINAL FIX
   ========================================================= */

/* Elementor select külső wrapper */
.cs-contact-form
.cs-contact-form-widget
.elementor-field-type-select
.elementor-select-wrapper {
    width: 100%;

    background: #f7f5ef;

    border: 1px solid rgba(38, 39, 36, 0.12);
    border-radius: 12px;

    overflow: hidden;
}


/* focus esetén se jelenjen meg fekete keret */
.cs-contact-form
.cs-contact-form-widget
.elementor-field-type-select
select.elementor-field:focus,
.cs-contact-form
.cs-contact-form-widget
.elementor-field-type-select
select.elementor-field:focus-visible {
    border: 0;
    outline: 0;
    box-shadow: none;

    background: transparent;
}


/* wrapper kapja a focus visszajelzést */
.cs-contact-form
.cs-contact-form-widget
.elementor-field-type-select
.elementor-select-wrapper:focus-within {
    border-color: var(--cs-accent);

    box-shadow:
        0 0 0 3px rgba(214, 168, 75, 0.10);
}

.cs-contact-form
.cs-contact-form-widget
.elementor-field-type-select
.elementor-select-wrapper::before {
    color: var(--cs-dark);
    text-shadow: none;
}

/* =========================================================
   CONTACT BOTTOM INFO
   ========================================================= */

.cs-contact-bottom {
    --width: 100%;
    --content-width: 100%;

    width: 100%;
    max-width: none;

    padding: 80px 0;

    background: var(--cs-background);
}

.cs-contact-bottom > .cs-contact-bottom-inner {
    --width: 100%;
    --max-width: 1240px;

    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    overflow: hidden;

    background: rgba(255,255,255,0.72);

    border: 1px solid rgba(38,39,36,0.10);
    border-radius: 24px;

    box-shadow:
        0 18px 42px rgba(38,39,36,0.06);
}


/* item */

.cs-contact-bottom .cs-contact-bottom-item {
    --width: 100%;
    --max-width: none;

    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 32px;
}

.cs-contact-bottom
.cs-contact-bottom-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 28px;
    right: 0;
    bottom: 28px;

    width: 1px;

    background: rgba(38,39,36,0.10);
}


/* icon */

.cs-contact-bottom .cs-contact-bottom-icon {
    --width: auto;
    --max-width: none;

    width: auto;
}

.cs-contact-bottom
.cs-contact-bottom-icon
.elementor-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--cs-accent);

    background: rgba(214,168,75,0.08);

    border: 1px solid rgba(214,168,75,0.28);
    border-radius: 50%;

    font-size: 18px;
}

.cs-contact-bottom
.cs-contact-bottom-icon
.elementor-icon i {
    color: var(--cs-accent);
}

.cs-contact-bottom
.cs-contact-bottom-icon
.elementor-icon svg {
    width: 18px;
    height: 18px;

    fill: var(--cs-accent);
}


/* title */

.cs-contact-bottom
.cs-contact-bottom-title
.elementor-heading-title {
    margin: 20px 0 0;

    color: var(--cs-dark);

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;
}


/* text */

.cs-contact-bottom .cs-contact-bottom-text {
    max-width: 320px;

    margin-top: 10px;

    color: var(--cs-text-muted);

    font-size: 14px;
    line-height: 1.65;
}

.cs-contact-bottom .cs-contact-bottom-text p {
    margin: 0;
}