/* Reset och grundläggande stilar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
}

/* Toppbanner */
.top-banner {
    background-color: #e8e8e8;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    color: #666;
    font-weight: 100;
}

.contact-item i {
    margin-right: 8px;
    color: #666;
    font-size: 18px;
}

/* Mobile Top Banner - Dold på desktop */
.mobile-top-banner {
    display: none;
    background-color: #ffffff;
    padding: 15px 0;
    position: relative;
    z-index: 1001;
}

.mobile-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-logo-small img {
    height: 25px;
    width: auto;
}

.mobile-menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

/* Mobile Menu - Dold på desktop */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -67%;
    width: 67%;
    height: 100vh;
    background-color: #3a3a3a;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 100vh;
    padding: 40px 20px;
}

.mobile-menu li a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 100;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu li a:hover,
.mobile-menu li a.active {
    color: #ffffff;
    opacity: 0.8;
}

/* Mobile Logo Banner - Dold på desktop */
.mobile-logo-banner {
    display: none;
    background-color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.mobile-logo-banner img {
    max-width: 90%;
    height: auto;
    max-height: 150px;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu li a {
    text-decoration: none;
    color: #666;
    font-weight: 100;
    transition: color 0.3s;
}

.menu li a:hover,
.menu li a.active {
    color: #003d82;
}

/* Hero-sektion */
.hero {
    width: 100%;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero med CTA knapp */
.hero-with-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-with-cta img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.btn-hero {
    background-color: #ffffff;
    color: #000000;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 3px;
}

.btn-hero:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Info/Kontakt-sektion */
.info-contact {
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 80px 0;
}

.info-contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.info-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.info-text h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 100;
    letter-spacing: 1px;
}

.info-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 100;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form {
    background-color: #4a4a4a;
    padding: 40px;
    border-radius: 5px;
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 100;
    text-align: center;
}

.contact-form h3 i {
    display: block;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: 36px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #666;
    background-color: #5a5a5a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 100;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.btn-submit {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
}

.btn-submit:hover {
    background-color: #f0f0f0;
}

/* Badrumsrenovering - Trebilds-sektion */
.bathroom-gallery {
    background-color: #ffffff;
    padding: 80px 0;
}

.bathroom-gallery h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.bathroom-gallery {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Byte av gjutjärnsbrunn - Trebilds-sektion */
.well-gallery {
    background-color: #f5f5f5;
    padding: 40px 0 40px 0;
}

.well-gallery h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.well-gallery {
    text-align: center;
}

.well-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Tjänster - Fyra-stycken-sektion */
.services-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

.services-intro h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.services-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 100;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-item h3 {
    padding: 25px 25px 15px;
    font-size: 18px;
    color: #333;
    font-weight: 100;
}

.service-item p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
    font-weight: 100;
}

/* Tjänster Page Content */
.services-content {
    background-color: #ffffff;
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 60px;
}

.service-detail h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.service-detail p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 100;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-images img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Kvadratiska bilder för gjutjärnsbrunnar på tjänster-sidan OCH gjutjärnsbrunnar-sidan */
.service-detail:last-child .service-images img,
.services-content .service-detail:first-child .service-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Badrumsrenovering Page */
.bathroom-intro {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.bathroom-intro h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.bathroom-intro p {
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 15px;
    font-size: 18px;
    font-weight: 100;
}

/* Work Process - Schackmönster */
.work-process {
    padding: 0;
}

.process-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    padding: 60px 0 40px;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}

.process-step {
    padding: 60px 0;
}

.step-light {
    background-color: #f8f8f8;
}

.step-dark {
    background-color: #e8e8e8;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-grid.reverse {
    direction: rtl;
}

.process-grid.reverse > * {
    direction: ltr;
}

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

.process-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 100;
}

.process-text p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 100;
}

/* CTA Section */
.cta-section {
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 10px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-weight: 100;
}

.cta-section .btn-primary {
    padding: 12px 25px;
    font-size: 13px;
}

/* Om Oss Page */
.about-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 100;
}

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

/* Values Section */
.values-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.value-item i {
    font-size: 48px;
    color: #c62828;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 100;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-weight: 100;
}

/* Team Section */
.team-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 16px;
    font-weight: 100;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 100;
}

.team-member p {
    color: #666;
    font-size: 16px;
    font-weight: 100;
}

/* Kundomdömen */
.testimonials {
    position: relative;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonials-overlay {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 5px;
    text-align: left;
}

.testimonial-item p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 100;
}

.testimonial-author {
    font-weight: 100;
    text-align: right;
    font-size: 14px;
}

.btn-testimonial {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-top: 20px;
}

.btn-testimonial:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Referenser Page */
.testimonials-page {
    background-color: #ffffff;
    padding: 80px 0;
}

.testimonials-page h1 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.testimonials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 18px;
    font-weight: 100;
}

.testimonials-list {
    display: grid;
    gap: 30px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #c62828;
}

.stars {
    color: #ffa500;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 100;
}

.testimonial-card .testimonial-author {
    text-align: left;
    font-style: normal;
}

.testimonial-card .testimonial-author strong {
    display: block;
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 100;
}

.testimonial-card .testimonial-author span {
    color: #888;
    font-size: 14px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

.testimonials-cta h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 100;
}

/* Kontakt Page */
.contact-page {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.5em;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-header p {
    color: #000;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 100;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2.5em;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-page-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-weight: 100;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 100;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c62828;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-item .icon {
    width: 50px;
    height: 50px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item .icon i {
    font-size: 24px;
}

.contact-detail-item .detail h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 100;
}

.contact-detail-item .detail p {
    color: #000;
    line-height: 1.6;
    font-weight: 100;
}

.contact-detail-item .detail a {
    color: #000;
    text-decoration: none;
}

.contact-detail-item .detail a:hover {
    text-decoration: underline;
}

.social-links h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 100;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #c62828;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #a02020;
}

/* Map Section */
.map-section {
    margin: 0;
}

.map-placeholder iframe {
    width: 100%;
}

/* Contact CTA */
.contact-cta {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 100;
}

.contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 100;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Partners - Fullbredd */
.partners-fullwidth {
    padding: 60px 0;
    margin: 0;
}

.partners-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    background-color: #ffffff;
    padding: 50px 0 20px;
}

.footer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-info p {
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
    font-weight: 100;
}

.footer-info p a {
    color: #666;
    text-decoration: none;
}

.footer-info p a:hover {
    color: #666;
}

.footer-info i {
    margin-right: 10px;
    color: #888;
    font-size: 16px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
    font-weight: 100;
}

.footer-menu a:hover {
    color: #c62828;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .top-banner {
        display: none;
    }
    
    .mobile-top-banner {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    header {
        display: none;
    }
    
    .mobile-logo-banner {
        display: block;
        padding: 15px 0;
    }
    
    .mobile-logo-banner img {
        max-height: 100px;
    }
    
    .hero-with-cta img {
        min-height: 400px;
        object-fit: cover;
    }
    
    .hero-overlay {
        top: 75%;
    }
    
    .hero-overlay .btn-primary {
        padding: 12px 40px;
        font-size: 13px;
        white-space: nowrap;
        letter-spacing: 0.5px;
        min-width: 280px;
    }
    
    .info-contact {
        padding: 40px 0 30px 0;
    }
    
    .contact-form {
        padding: 40px 40px 30px 40px;
    }
    
    .contact-form h3 {
        font-size: 18px;
        font-weight: 400;
        white-space: normal;
    }
    
    .contact-form h3 i {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .testimonials {
        padding: 30px 0;
    }
    
    .testimonials-overlay {
        padding: 30px 0;
    }
    
    .testimonials h2 {
        font-size: 1.8em;
    }
    
    .btn-testimonial {
        margin-top: 10px;
    }
    
    .partners-wrapper {
        padding: 0;
        max-width: 100%;
    }
    
    .partners-fullwidth {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 40px 0 30px 0;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .cta-section .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
    }

    .info-contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-info i {
        font-size: 20px;
    }

    .footer-menu ul {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .button-group {
        flex-direction: column;
    }

    .service-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 15px;
    }
    
    .service-images img:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .service-images img:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .service-images img:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-wrapper {
        padding: 0 20px;
    }

    .info-text h2 {
        font-size: 22px;
    }

    .bathroom-gallery h2,
    .well-gallery h2,
    .services-intro h2,
    .service-detail h2,
    .bathroom-intro h1,
    .process-title {
        font-size: 1.8em;
    }

    .process-grid,
    .process-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    /* Mobile: Text före bild för alla steg */
    .process-grid .process-text {
        order: 1;
    }
    
    .process-grid .process-image {
        order: 2;
    }
    
    .process-grid.reverse .process-text {
        order: 1;
    }
    
    .process-grid.reverse .process-image {
        order: 2;
    }
    
    .process-grid,
    .process-grid.reverse {
        display: flex;
        flex-direction: column;
    }
}
