:root {
    --primary: #f8f9fa;
    --accent: #0F172A;
    --accent-dark: #1e40af;
    --text: #0f172a;
    --light: #ffffff;
    --container: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'General Sans', sans-serif;
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
}

.shell {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

.floating-nav {
    position: fixed;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 95%);
    z-index: 100;
    background: rgba(28, 28, 35, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2.5rem;
    padding: 0 0.5rem;
}

.brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.2s;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-contact {
    margin-left: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.9;
}

.btn-quote {
    background: white;
    color: black;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-quote:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
}

.btn-menu {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}


.btn-menu span,
.btn-menu span::before,
.btn-menu span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.btn-menu span {
    top: 50%;
    transform: translateY(-50%);
}

.btn-menu span::before {
    top: -8px;
}

.btn-menu span::after {
    bottom: -8px;
}

.btn-menu.active span {
    background: transparent;
}

.btn-menu.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.btn-menu.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 0;
}

.hero-content {
    color: var(--light);
    max-width: 720px;
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn-primary {
    background: white;
    color: var(--text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.usp-wrap {
    display: flex;
    gap: 2rem;
    max-width: 800px;
}

.usp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.usp i {
    color: var(--accent);
    font-size: 1.25rem;
}

.mobile-nav {
    position: fixed;
    inset: 0.75rem;
    margin: 0 auto;
    width: 95%;
    background: rgba(28, 28, 35, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    z-index: 90;
    transform: translateX(100%);
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-content {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}

.mobile-links .btn-quote {
    color: #000;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mobile-contact a {
    color: white;
    opacity: 0.8;
    font-size: 1rem;
}

.chat-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
}

.chat-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0F172A;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 201;
}

.chat-button {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    cursor: pointer;
    transition: all 0.2s;
}

.chat-button:hover {
    transform: translateY(-2px);
}

.chat-popup {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 1.75rem;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.chat-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-popup h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.chat-popup p {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.chat-popup form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-popup input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.chat-popup input:focus {
    outline: none;
    border-color: var(--accent);
}

.chat-popup button {
    background: var(--accent);
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-popup button:hover {
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .contact-link span {
        display: none;
    }

    .contact-link:before {
        content: 'Ring';
    }
}

@media (max-width: 850px) {
    .nav-menu {
        display: none;
    }

    .btn-menu {
        display: block;
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .usp-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* intro */

.intro {
    padding: 4rem 0;
    background: #fafafa;
}

.intro-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.intro-header p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: #0F172A;
    width: 1.75rem;
    text-align: center;
}

.service-icon h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.service-content p {
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.intro-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0F172A;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.cta-button i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .intro {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-header h2 {
        font-size: 1.875rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

.gallery {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.02);
}
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gallery-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.gallery-header p {
    font-size: 1.125rem;
    color: #64748b;
}
.gallery-swiper {
    width: 100%;
    height: 600px;
    padding: 1rem;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}
.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery-swiper:hover .swiper-button-next,
.gallery-swiper:hover .swiper-button-prev {
    opacity: 1;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #0F172A !important;
    opacity: 0.3;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0F172A;
    transform: scale(1.2);
}

.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: white;
    flex: 1;
}

.cta-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
}

.cta2-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #0F172A;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.125rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta2-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta2-button i {
    transition: transform 0.3s ease;
}

.cta2-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .gallery {
        padding: 5rem 0;
    }
    
    .gallery-swiper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery-swiper {
        height: 400px;
        padding: 0.5rem;
    }
    
    .gallery-header {
        margin-bottom: 3rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .cta-banner {
        padding: 5rem 0;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* resterande */

.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-banner {
        background-attachment: scroll;
        padding: 4rem 0;
    }
}

.services-features {
    padding: 5rem 0 3rem;
    background: #f8f9fb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.feature-box i {
    font-size: 2rem;
    color: #0F172A;
    margin: 2rem 0 1rem;
}

.feature-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0F172A;
    padding: 0 2rem;
}

.feature-box p {
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6;
    padding: 0 2rem;
}

.feature-box .btn-primary {
    margin: 0 2rem 2rem;
}

.reviews {
    padding: 3rem 0;
    background: #fff;
}

.google-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.main-footer {
    background: #1C1C23;
    backdrop-filter: blur(10px);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact, .footer-nav, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h4 {
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details a, .contact-details span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.facebook {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
}

.facebook i {
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.info-boxes {
    padding: 3rem 0;
    background: #f8f9fb;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.box {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.box-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.box-content {
    padding: 1.5rem;
}

.box-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0F172A;
}

.box-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.box-btn {
    background: #0F172A;
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.box-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .boxes-grid {
        grid-template-columns: 1fr;
    }
}

.box {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* om oss */

.about-section {
    padding: 8rem 0 6rem;
    background: var(--primary);
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.about-cta {
    background: var(--accent);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 99px;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.about-cta:hover {
    transform: translateY(-2px);
}

.about-content {
    display: grid;
}

.about-main p {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-company-info {
    font-size: 1rem !important;
    color: #64748b !important;
}

.quality-section {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.quality-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.quality-section > p {
    color: #334155;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.quality-list {
    display: grid;
    gap: 1rem;
    padding-left: 1.5rem;
}

.quality-list li {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.quality-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 0 2rem;
    }

    .about-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .quality-section {
        padding: 2rem;
    }

    .quality-section h2 {
        font-size: 1.5rem;
    }
}

.rut-header h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #334155;
}

.rut-link {
    display: inline-block;
    text-align: center;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 2rem;
}

.rut-link:hover {
    background-color: var(--accent);
    color: #fff;
}

.about-main p {
    text-align: justify;
    line-height: 1.8;
    color: #334155;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.rut-header h1 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.rut-section .about-main p {
    text-align: justify;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rut-link {
    display: inline-block;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    border: 2px solid var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.rut-link:hover {
    background-color: var(--accent);
    color: #fff;
}

@media (max-width: 768px) {
    .rut-header h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .rut-section .about-main p {
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .rut-link {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
        margin-top: 1.5rem;
    }
}

.about-section .about-main p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    color: #334155;
}

/* kontakt */

.contact-image {
    margin-top: 3rem;
    display: none;
}

.contact-image img {
    width: 100%;
    border-radius: 1rem;
}

@media (min-width: 901px) {
    .contact-image {
        display: block;
    }
}
.contact-page {
    background: var(--primary);
    min-height: 100vh;
}

.contact-hero {
    height: 400px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: -100px;
}

.contact-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-container {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 1.125rem;
    transition: opacity 0.2s;
}

.info-link:hover {
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-field {
    position: relative;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: transparent;
}

.input-field label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #64748b;
    transition: all 0.2s;
    pointer-events: none;
    font-size: 1rem;
}

.input-field input:focus,
.input-field textarea:focus,
.input-field input:valid,
.input-field textarea:valid {
    border-color: var(--accent);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.input-field input:focus + label,
.input-field textarea:focus + label,
.input-field input:valid + label,
.input-field textarea:valid + label {
    top: 0.5rem;
    font-size: 0.75rem;
    color: var(--accent);
}

.contact-form button {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        height: 300px;
        margin-bottom: -50px;
    }
}

@media (max-width: 900px) {
    .hero-banner {
        height: 200px;
        margin-bottom: -80px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin-top: 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-info {
        padding-top: 0;
    }

    .info-label:first-child {
        margin-top: 0;
    }
}

/* Specifik fix för endast kontaktsidans desktop-version */
@media (min-width: 769px) {
    .contact-page .reviews {
        padding: 0;
    }
    
    .contact-page .google-reviews-container {
        margin: 2rem auto;
    }
}