/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    height: 130px;
}

/* LOGGA I VIT BOX – SAMMA BOXSTORLEK */
.logo-box {
    background: #fff;
    padding: 10px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;      /* oförändrad */
    width: 140px;       /* oförändrad */
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* 40% större logga */
.logo-box img {
    max-height: 100px;   /* styr loggans faktiska storlek */
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* NAVIGATION */
nav a {
    color: #fff;
    margin-left: 24px;
    text-decoration: none;
    font-size: 18px;
}

nav .cta {
    padding: 10px 18px;
    background: #fff;
    color: #000;
    border-radius: 8px;
}

/* HERO MED CMYK-BAKGRUND */ .hero { height: 35vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; margin-top: 130px; background: linear-gradient(120deg, #ff00ff, #00ffff, #ffff00, #ff00ff ); background-size: 400% 400%; animation: cmykLoop 12s ease-in-out infinite; }
/* SAMMA STIL FÖR ALLA ANDRA SIDOR */
.sub-hero,
.contact-hero {
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 130px;

    background: linear-gradient(120deg,
        #ff00ff,
        #00ffff,
        #ffff00,
        #ff00ff
    );
    background-size: 400% 400%;
    animation: cmykLoop 12s ease-in-out infinite;
}


@keyframes cmykLoop {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 20px;
}

/* INTRO SEKTION */
.intro-section {
    padding: 80px 10%;
    background: #fff;
}

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

.intro-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.intro-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.intro-box p {
    font-size: 15px;
    color: #444;
}/* KONTAKT – EVOEA-LAYOUT */
.contact-section {
    padding: 80px 10%;
    background: #fff;
}

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

/* VÄNSTER – FORMULÄR */
.contact-left h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fafafa;
}

.contact-form textarea {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fafafa;
    height: 180px; /* 3× större */
    resize: vertical;
}

.contact-form button {
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: #333;
}

/* HÖGER – INFO */
.contact-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-right p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

/* KARTA FULLBREDD */
.map-full {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* MOBIL */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* TJÄNSTER – EVOEA-LAYOUT */
.services-section {
    padding: 80px 10%;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-box p {
    color: #555;
    font-size: 16px;
}

/* KONTAKT – SAMMA SOM KONTAKTSIDAN */
.contact-section {
    padding: 80px 10%;
    background: #fff;
}

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

.contact-left h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fafafa;
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

.contact-form button {
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: #333;
}

.contact-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-right p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.map-full {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* REFERENSER – EVOEA-LAYOUT */
.references-section {
    padding: 80px 10%;
    background: #fff;
}

.references-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.reference-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.reference-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.reference-box p {
    color: #555;
    margin-bottom: 10px;
}

.reference-box span {
    font-size: 15px;
    color: #777;
}

/* KONTAKT – SAMMA SOM KONTAKTSIDAN */
.contact-section {
    padding: 80px 10%;
    background: #fff;
}

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

.contact-left h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fafafa;
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

.contact-form button {
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: #333;
}

.contact-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-right p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

.map-full {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .references-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* REFERENSER – LAYOUT */
.references-section {
    padding: 80px 10%;
    background: #fff;
}

.references-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.reference-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.reference-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.reference-box p {
    color: #555;
    margin-bottom: 10px;
}

.reference-box span {
    font-size: 15px;
    color: #777;
}

/* CTA-RUTA */
.references-cta-box {
    margin-top: 60px;
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.references-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}

.references-cta-btn:hover {
    background: #333;
}

/* MOBIL */
@media (max-width: 900px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
}
/* OM OSS – LAYOUT */
.about-section {
    padding: 80px 10%;
    background: #fff;
}

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

.about-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    font-size: 17px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* CTA-RUTA */
.about-cta-box {
    margin-top: 60px;
    padding: 60px 40px;
    background: #f3f3f3;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.about-cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #007bff;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease;
}

.about-cta-btn:hover {
    background: #0066d6;
}

/* MOBIL */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 60px auto;
}

.intro-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: black;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.intro-box:hover {
    transform: translateY(-5px);
}

.center-button {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    background: black;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.reviews-section {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    padding: 60px 20px;
    text-align: center;
}

.reviews-section .subtitle {
    color: #555;
    margin-bottom: 40px;
}

.review {
    max-width: 700px;
    margin: 20px auto;
    font-style: italic;
}

.final-cta {
    padding: 60px 20px;
    text-align: center;
}

.footer {
    text-align: right;
    padding: 20px;
    font-size: 14px;
    color: #444;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 14px;
    color: #444;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

