/* ============================================================
   Samtalshuset – service.css
   RENSAD VERSION (utan Swish)
============================================================ */


/* ============================================================
   Globalt
============================================================ */

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.45;
}


/* ============================================================
   Header
============================================================ */

.service-header {
    position: relative;
    padding: 22px 16px 14px;
    text-align: center;
}

.service-header img {
    max-height: 56px;
    display: block;
    margin: 0 auto;
}

.service-header h1 {
    margin: 6px 0 4px;
    color: #833332;
    font-size: 26px;
    font-weight: 600;
}

.service-header .subtitle {
    font-size: 15px;
    color: #555;
}

.service-header::after {
    content: "";
    display: block;
    margin-top: 14px;
    width: 100%;
    border-bottom: 4px solid #833332;
}


/* ============================================================
   Layout
============================================================ */

.service-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 12px 50px;
}

.service-inner {
    max-width: 720px;
    width: 100%;
}


/* ============================================================
   Text / Intro
============================================================ */

.service-intro h2 {
    color: #833332;
    font-size: 22px;
    margin-bottom: 12px;
}

.service-intro p {
    font-size: 16px;
    margin-bottom: 14px;
}


/* ============================================================
   Buttons
============================================================ */

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /*margin-top: 24px; */
    padding: 14px 26px;

    background: #833332;
    color: #fff;

    border: none;
    border-radius: 6px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    text-decoration: none;
}

.contact-submit:hover,
.contact-submit:focus {
    background: #9d3c3c;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    background: #833332;   /* samma färg */
    color: #fff;

    border: none;
    border-radius: 6px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    text-decoration: none;
}
.secondary-button:hover {
    background: #9d3c3c;
}


/* ============================================================
   Forms
============================================================ */

.register-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.register-form input {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    margin-top: 4px;
}


/* ============================================================
   Contact form panel
============================================================ */

.service-form {
    background: #f3f3f3;
    padding: 36px;
    margin: 50px 0;
    border-radius: 10px;
}

.service-form h2 {
    margin-top: 0;
    color: #833332;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.form-col {
    flex: 1;
}

.shs-contact-form input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
}


/* ============================================================
   Image/Text blocks
============================================================ */

.service-imgtext {
    display: flex;
    gap: 32px;
    margin: 50px 0;
    align-items: center;
}

.service-imgtext.img-right {
    flex-direction: row-reverse;
}

.imgtext-image {
    flex: 0 0 30%;
    max-width: 260px;
}

.imgtext-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.imgtext-text {
    flex: 1;
}

.imgtext-text h2 {
    margin-top: 0;
    color: #833332;
}


/* ============================================================
   CTA grid
============================================================ */

.service-cta-area {
    margin: 60px 0 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.service-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
}

.service-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 10px;
    background: #f7f7f7;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
}

.service-cta-card:hover {
    background: #ececec;
    transform: translateY(-2px);
}


/* ============================================================
   Footer
============================================================ */

.site-footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 40px;
}


/* ============================================================
   Responsive
============================================================ */

@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
    }

    .service-imgtext {
        flex-direction: column;
    }

    .imgtext-image {
        max-width: 100%;
    }

}