/*
================================================

ES Bilvård & Däckservice
Version 1.0

================================================
*/

/* -------------------------
RESET
------------------------- */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.7;

    color:#222;

    background:#ffffff;

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* -------------------------
VARIABLES
------------------------- */

:root{

    --green:#39b54a;

    --green-dark:#27863a;

    --dark:#111111;

    --gray:#f6f6f6;

    --white:#ffffff;

    --container:1200px;

    --radius:18px;

    --transition:.3s ease;

}

/* -------------------------
LAYOUT
------------------------- */

.container{

    width:min(92%, var(--container));

    margin-inline:auto;

}

section{

    padding:110px 0;

}

/* -------------------------
HEADER
------------------------- */

.site-header{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:22px 0;

}

.header-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* -------------------------
LOGO
------------------------- */

.site-logo{

    display:flex;
    transform: translateY(-6px);
    align-items:center;

}

.site-logo img{
    width:280px;
    height:auto;
    display:block;
}

/* -------------------------
MENU
------------------------- */

.main-navigation{

    margin-left:auto;

}

.main-menu{

    display:flex;

    gap:38px;

    align-items:center;

}

.main-menu li{

    position:relative;

}

.main-menu a{

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    letter-spacing:.3px;

    transition:var(--transition);

}

.main-menu a:hover{

    color:var(--green);

}

/* -------------------------
MOBILE BUTTON
------------------------- */

.mobile-toggle{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

}

.mobile-toggle span{

    display:block;

    width:28px;

    height:3px;

    margin:6px 0;

    background:#ffffff;

    border-radius:999px;

}

/* -------------------------
HERO
------------------------- */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(

        rgba(0,0,0,.60),

        rgba(0,0,0,.60)

    ),

    url("../images/hero.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at right,

        rgba(57,181,74,.12),

        transparent 60%

    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:720px;

}

.hero-tag{

    color:var(--green);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero h1{

    color:#ffffff;

    font-size:clamp(48px,7vw,82px);

    line-height:1.05;

    margin:22px 0;

}

.hero p{

    color:#dddddd;

    font-size:20px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:42px;

    flex-wrap:wrap;

}

/* -------------------------
BUTTONS
------------------------- */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--green);

    color:#ffffff;

}

.btn-primary:hover{

    background:var(--green-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid #ffffff;

    color:#ffffff;

}

.btn-secondary:hover{

    background:#ffffff;

    color:#111111;

}
/* ==========================================================
SERVICES
========================================================== */

.services{

    background:var(--gray);

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    color:var(--green);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-heading h2{

    font-size:46px;

    color:var(--dark);

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.service-card{

    position:relative;

    background:#ffffff;

    border-radius:22px;

    padding:42px;

    color:#222;

    border-top:5px solid var(--green);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.35s ease;
}
.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.15);

}
.service-card::after{

    content:"→";

    position:absolute;

    right:35px;

    bottom:28px;

    font-size:28px;

    color:var(--green);

    transition:.3s;

}

.service-card:hover::after{

    transform:translateX(8px);

}

.service-card h3{

    font-size:30px;

    margin-bottom:18px;

    color:#111;

}

.service-card p{

    color:#666;

    line-height:1.8;

    padding-bottom:45px;

}

/* ==========================================================
ABOUT
========================================================== */

.about-preview{

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-grid h2{

    font-size:46px;

    margin-bottom:25px;

    color:#111111;

}

.about-grid p{

    font-size:18px;

    color:#555555;

    margin-bottom:35px;

}

.about-image{

    min-height:500px;

    border-radius:20px;

    background:#e5e5e5;

    overflow:hidden;

}

/* ==========================================================
STATISTICS
========================================================== */

.stats{

    background:#111111;

    color:#ffffff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    text-align:center;

}

.stat-number{

    font-size:58px;

    font-weight:700;

    color:var(--green);

}

.stat-text{

    margin-top:10px;

    color:#cccccc;

}

/* ==========================================================
PROCESS
========================================================== */

.process{

    background:#ffffff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.process-card{

    text-align:center;

    padding:40px;

}

.process-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--green);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:700;

    margin:0 auto 25px;

}

.process-card h3{

    margin-bottom:15px;

    font-size:28px;

}

.process-card p{

    color:#666666;

}

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

.cta{

    background:#111111;

    color:#ffffff;

    text-align:center;

}

.cta h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta p{

    color:#d6d6d6;

    max-width:700px;

    margin:0 auto 40px;

}

/* ==========================================================
FOOTER
========================================================== */

.site-footer{

    background:#0a0a0a;

    color:#ffffff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:50px;

}

.footer-col h3{

    margin-bottom:20px;

}

.footer-col p,

.footer-col li{

    color:#bbbbbb;

    line-height:2;

}

.footer-menu{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-menu a{

    color:#bbbbbb;

    transition:var(--transition);

}

.footer-menu a:hover{

    color:var(--green);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    text-align:center;

    color:#888888;

}
/* ==========================================================
ANIMATIONER
========================================================== */

.service-card,
.process-card,
.btn,
.footer-menu a{

    transition:all .3s ease;

}

.service-card:hover{

    transform:translateY(-10px);

}

.process-card:hover{

    transform:translateY(-6px);

}

.site-logo img{

    transition:transform .3s ease;

}

.site-logo:hover img{

    transform:scale(1.04);

}

/* ==========================================================
TEXT
========================================================== */

h1,
h2,
h3,
h4{

    font-weight:700;

    line-height:1.2;

}

p{

    line-height:1.8;

}

/* ==========================================================
SELECTION
========================================================== */

::selection{

    background:var(--green);

    color:#ffffff;

}

/* ==========================================================
SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#eeeeee;

}

::-webkit-scrollbar-thumb{

    background:var(--green);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--green-dark);

}

/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width:1100px){

    .service-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:900px){

    .header-inner{

        flex-wrap:wrap;

    }

    .main-navigation{

        display:none;

    }

    .mobile-toggle{

        display:block;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .process-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    section{

        padding:80px 0;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        margin:auto;

    }

    .hero h1{

        font-size:46px;

    }

    .hero p{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .service-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .section-heading h2{

        font-size:34px;

    }

    .about-grid h2{

        font-size:36px;

    }

    .cta h2{

        font-size:38px;

    }

}

@media (max-width:480px){

    .site-logo img{

        height:70px;

    }

    .hero h1{

        font-size:38px;

    }

    .btn{

        width:100%;

    }

}
/* =========================================
SERVICE ICONS
========================================= */

.service-icon{

    width:78px;

    height:78px;

    border-radius:50%;

    background:#eef9f0;

    color:var(--green);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    font-size:32px;

    transition:.35s ease;

}

.service-card:hover .service-icon{

    background:var(--green);

    color:#ffffff;

    transform:rotate(-8deg) scale(1.08);

}
/* ==========================================================
ABOUT
========================================================== */

.about-preview{

    padding:120px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-content{

    max-width:600px;

}

.about-content .hero-tag{

    display:inline-block;

    margin-bottom:18px;

}

.about-content h2{

    font-size:48px;

    line-height:1.2;

    color:#111111;

    margin-bottom:28px;

}

.about-content p{

    color:#666666;

    font-size:18px;

    margin-bottom:24px;

    line-height:1.9;

}

.about-list{

    margin:35px 0 45px;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    font-size:17px;

    font-weight:600;

    color:#222222;

}

.about-list i{

    color:var(--green);

    font-size:20px;

}

.about-image{

    position:relative;

    border-radius:22px;

    overflow:hidden;

    height:600px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

}

.about-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.05),

        rgba(0,0,0,.35)

    );

}

.about-badge{

    position:absolute;

    right:25px;

    bottom:25px;

    background:var(--green);

    color:#ffffff;

    padding:22px 28px;

    border-radius:18px;

    z-index:5;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.about-badge-year{

    display:block;

    font-size:30px;

    font-weight:700;

    line-height:1;

    margin-bottom:8px;

}

.about-badge-text{

    display:block;

    font-size:15px;

    opacity:.95;

}

@media(max-width:900px){

    .about-grid{

        grid-template-columns:1fr;

    }

    .about-image{

        min-height:420px;

    }

    .about-content h2{

        font-size:38px;

    }

}

@media(max-width:600px){

    .about-preview{

        padding:80px 0;

    }

    .about-content h2{

        font-size:32px;

    }

    .about-badge{

        right:20px;

        left:20px;

        bottom:20px;

        text-align:center;

    }

}
/* ==========================================================
UNDERSIDOR
========================================================== */

.page-hero{

    position:relative;

    display:flex;

    align-items:center;

    min-height:70vh;

    padding:150px 0 110px;

    overflow:hidden;

}

.page-bilservice{

    background:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.45)
        ),
        url("../images/bilservice.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.page-hero .hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}

.page-hero h1{

    font-size:clamp(54px,6vw,78px);

    line-height:1.1;

    margin-bottom:28px;

}

.page-hero p{

    max-width:680px;

    font-size:20px;

    line-height:1.9;

    margin-bottom:42px;

}

/* ==========================================================
INTRO
========================================================== */

.service-intro{

    background:#ffffff;

}

.intro-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.intro-content p{

    font-size:19px;

    color:#666666;

    margin-bottom:30px;

    line-height:1.9;

}

/* ==========================================================
TJÄNSTER
========================================================== */

.service-features{

    background:#f8f8f8;

}

.service-features .service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-features .service-card{

    height:100%;

    padding:48px;

    border-radius:24px;

    border-top:none;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/* ==========================================================
VARFÖR SERVA
========================================================== */

.service-benefits{

    background:#ffffff;

}

.service-benefits .service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-benefits .service-card{

    height:100%;

    padding:48px;

    border-radius:24px;

    border-top:none;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}
.service-features .service-card:hover,
.service-benefits .service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 80px rgba(0,0,0,.14);

}
.service-features .service-icon,
.service-benefits .service-icon{

    width:90px;

    height:90px;

    border-radius:22px;

    font-size:36px;

    margin-bottom:34px;

}

/* ==========================================================
RESPONSIVE
========================================================== */

@media(max-width:900px){

    .service-features .service-grid{

        grid-template-columns:1fr;

    }

    .service-benefits .service-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .page-hero{

        min-height:60vh;

    }

    .page-hero h1{

        font-size:42px;

    }

    .intro-content{

        text-align:left;

    }

}
/* ==========================================================
BILVÅRD
========================================================== */

.page-bilvard{

    background:
        linear-gradient(
            rgba(0,0,0,.70),
            rgba(0,0,0,.45)
        ),
        url("../images/bilvard6pol.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.work-gallery{

    background:#f8f8f8;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:80px;

}

.gallery-grid img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:22px;

    box-shadow:0 20px 55px rgba(0,0,0,.12);

    transition:.35s ease;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

@media(max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid img{

        height:auto;

    }

}
/* ==========================================================
DÄCKSERVICE
========================================================== */

.page-dackservice{

    background:
        linear-gradient(
            rgba(0,0,0,.70),
            rgba(0,0,0,.45)
        ),
        url("../images/dack6.png");

    background-size:cover;

    background-position: 70% center;

    background-repeat:no-repeat;

}

.tire-hotel{

    background:#ffffff;

}

.check-list{

    list-style:none;

    margin:35px 0 0;

    padding:0;

}

.check-list li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:18px;

    color:#555555;

    font-weight:500;

}

.check-list i{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--green);

    color:#ffffff;

    font-size:15px;

    flex-shrink:0;

}

.tire-hotel .about-image img{

    width:100%;

    height:100%;

    min-height:500px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}
/* ==========================================================
KONTAKT
========================================================== */

.page-kontakt{

    background:
        linear-gradient(
            rgba(0,0,0,.70),
            rgba(0,0,0,.45)
        ),
        url("../images/verkstad.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.contact-info{

    background:#f8f8f8;

}

.contact-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

.contact-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.3s ease;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card h3{

    margin:25px 0 15px;

}

.contact-card a,
.contact-card p{

    color:#555;
    text-decoration:none;
    line-height:1.8;

}

.contact-card a:hover{

    color:var(--green);

}

.contact-section{

    background:#ffffff;

}

.contact-layout{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;

}

.contact-form-wrapper{

    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.contact-map{

    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.map-wrapper{

    margin-top:30px;
    height:520px;
    border-radius:20px;
    overflow:hidden;

}

.contact-form-wrapper input,
.contact-form-wrapper textarea{

    width:100%;
    padding:16px 18px;
    margin-top:8px;
    margin-bottom:22px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    transition:.3s;

}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus{

    outline:none;
    border-color:var(--green);

}

.contact-form-wrapper textarea{

    min-height:180px;
    resize:vertical;

}

.contact-form-wrapper input[type="submit"]{

    background:var(--green);
    color:#fff;
    border:none;
    cursor:pointer;
    font-weight:600;
    transition:.3s;

}

.contact-form-wrapper input[type="submit"]:hover{

    opacity:.9;

}

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .contact-layout{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .contact-form-wrapper,
    .contact-map{

        padding:30px;

    }

    .map-wrapper{

        height:350px;

    }

}
/* ==========================================================
SPECIALTJÄNSTER
========================================================== */

.page-specialtjanster{

    background:
        linear-gradient(
            rgba(0,0,0,.70),
            rgba(0,0,0,.45)
        ),
        url("../images/container.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.special-cta{

    background:#1f1f1f;
    color:#ffffff;
    text-align:center;

}

.special-cta-content{

    max-width:760px;
    margin:0 auto;

}

.special-cta h2{

    color:#ffffff;
    margin:25px 0;

}

.special-cta p{

    color:rgba(255,255,255,.85);
    margin-bottom:20px;

}

.special-cta .btn{

    margin-top:20px;

}
/* ==========================
   HEADER
========================== */

.site-header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:20px 0;
    transition:all .3s ease;
}

.header-inner{
    display:grid;
    grid-template-columns:280px 1fr auto auto;
    align-items:center;
    gap:20px;
}
.main-nav{
    display:flex;
    justify-content:center;
    justify-self:center;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu > li {
    position: relative;
}

.main-nav .menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.main-nav .menu a:hover {
    color: #43d854;
}

.header-button {
    justify-self:end;
    background: #43d854;
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: .25s;
}

.header-button:hover {
    transform: translateY(-2px);
}
/* Huvudmeny */

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu > li {
    list-style: none;
    position: relative;
}

/* Dölj dropdown */

.main-nav .sub-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);

    position:absolute;
    top:100%;
    left:0;

    min-width:240px;

    background:#171717;

    border-radius:14px;

    padding:15px 0;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    transition:.25s ease;
}

/* Visa på hover */

.main-nav li:hover > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.main-nav .sub-menu li {
    list-style: none;
}

.main-nav .sub-menu a {
    display: block;
    padding: 10px 20px;
}
/* ==========================================
   HEADER SCROLL
========================================== */

.site-header.scrolled{
    background:rgba(15,15,15,.92);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 10px 35px rgba(0,0,0,.35);
    padding:14px 0;
}
/* ==========================================================
   FOOTER
========================================================== */

.site-footer{
    background:#111;
    border-top:1px solid rgba(255,255,255,.06);
    margin-top:120px;
}

/* ---------- Highlights ---------- */

.footer-highlights{
    border-bottom:1px solid rgba(255,255,255,.06);
    padding:28px 0;
}

.footer-highlights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.footer-highlights-grid div{
    color:#fff;
    font-weight:600;
    font-size:16px;
}

.footer-highlights-grid i{
    color:#43d854;
    margin-right:8px;
}

/* ---------- Grid ---------- */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:70px;
    padding:50px 0 70px
}

/* ---------- Logo ---------- */

.footer-logo{
    width:380px;
    height:auto;
    display:block;
    margin-bottom:25px;
}

/* ---------- Rubriker ---------- */

.footer-col h3{
    color:#fff;
    font-size:26px;
    margin-bottom:25px;
}

/* ---------- Text ---------- */

.footer-col p{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:20px;
    max-width:420px;
}

/* ---------- Meny ---------- */

.footer-menu{
    list-style:none;
    padding:0;
    margin:0;
}

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

.footer-menu a,
.footer-menu a:visited{
    color:#bdbdbd;
    text-decoration:none;
    transition:.25s;
}

.footer-menu a:hover{
    color:#43d854;
    padding-left:6px;
}

.footer-menu a:hover{
    color:var(--primary);
    padding-left:6px;
}

/* ---------- Kontakt ---------- */

.footer-col a{
    color:#bdbdbd;
    text-decoration:none;
}

.footer-col a:hover{
    color:#43d854;
}
.footer-col i{
    color:#3BB54A;
    width:22px;
    text-align:center;
    margin-right:8px;
}

/* ---------- Footer Bottom ---------- */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.06);
    padding:28px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#8f8f8f;
    font-size:14px;
    letter-spacing: .3;
}
@media (max-width:991px){

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

.footer-grid{
    grid-template-columns:1fr;
    gap:45px;
    text-align:center;
}

.footer-logo{
    margin:0 auto 25px;
}

}
/* ==========================================
   MOBIL HEADER
========================================== */

@media (max-width:900px){

    .header-inner{
        grid-template-columns:1fr auto;
        gap:15px;
        align-items:center;
    }
    .main-nav.active{
    display:block;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    z-index:9999;
    }
    .main-nav.active .menu{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    padding:0 30px;
}

    .main-nav.active .menu li{
    width:100%;
    text-align:left;
}
    .main-nav.active .menu > li{
    padding:0 25px;
}

    .main-nav.active .menu a{
    display:block;
    width:100%;
    padding:10px 0;
    text-align:left;
}
    .menu-item-has-children > a{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
    .menu-item-has-children > a::after{
    content:"▼";
    font-size:11px;
    margin-left:8px;
    transition:.25s;
}

.menu-item-has-children.open > a::after{
    transform:rotate(180deg);
}

    .main-nav{
        display:none;
    }
    .main-nav .sub-menu{
    display:none;
}
.main-nav .sub-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:transparent;
    border:none;
    border-radius:0;
    padding:0;
    width:100%;
    margin-top:12px;
}

.menu-item-has-children.open > .sub-menu{
    display:flex;
    flex-direction:column;
    gap:2px;
    width:100%;
    padding:2px 0 10px 0px;
}
.menu-item-has-children.open > .sub-menu{
    display:flex;
    flex-direction:column;
    gap:0;
    margin-top:12px;
}

.menu-item-has-children.open > .sub-menu li{
    width:100%;
    text-align:left;
}

.menu-item-has-children.open > .sub-menu a{
    display:block;
    width:100%;
    text-align:left;
    padding:6px 0 6px 20px;
    font-size:15px;
    color:#bdbdbd;
}

.menu-item-has-children.open > a{
    color:#39d353;
}
.menu-item-has-children.open{
    margin-bottom:6px;
}

    .header-button{
        display:none;
    }

    .mobile-toggle{
        display:block;
        justify-self:end;
        z-index:10001;
    }

    .site-logo img{
        width:210px;
        height:auto;
    }

}
/* ==========================================================
   FOOTER MOBIL - FINJUSTERING
========================================================== */

@media (max-width:600px){

    .site-footer{
        margin-top:60px;
    }

    .footer-highlights{
        padding:22px 0;
    }

    .footer-highlights-grid{
        gap:16px 10px;
    }

    .footer-highlights-grid div{
        font-size:14px;
    }

    .footer-grid{
        gap:35px;
        padding:35px 0 45px;
    }

    .footer-logo{
        width:380px;
        max-width:100%;
        margin:0 auto 18px;
    }

    .footer-col h3{
        font-size:22px;
        margin-bottom:15px;
    }

    .footer-col p{
        line-height:1.7;
        margin-bottom:15px;
    }

    .footer-menu{
        gap:0;
    }

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

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

    .footer-bottom p{
        font-size:13px;
        line-height:1.6;
    }

}
@media (max-width:600px){

    .footer-highlights{
        padding:14px 0;
    }

    .footer-grid{
        padding:20px 0 30px;
    }

    .footer-logo{
        margin-bottom:5px;
    }

    .footer-col h3{
        margin-bottom:10px;
    }

    .footer-col p{
        margin-bottom:10px;
    }

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

    .footer-bottom{
        padding:16px 0;
    }

}
/* ==========================================================
   OM OSS - SIDA
========================================================== */

.page-about{
    background:
        linear-gradient(
            rgba(0,0,0,.68),
            rgba(0,0,0,.68)
        ),
        url("../images/balansering.jpg");

    background-size:cover;
    background-position:center 30%;
    background-repeat:no-repeat;
}

.about-page-intro{
    background:#ffffff;
}

.about-page-intro .about-content p{
    margin-bottom:24px;
}

.about-values{
    background:var(--gray);
}

.about-values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-value-card{
    background:#ffffff;
    padding:40px 32px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.about-value-card:hover{
    transform:translateY(-6px);
}

.about-value-icon{
    width:64px;
    height:64px;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--green);
    color:#ffffff;

    font-size:23px;
}

.about-value-card h3{
    font-size:25px;
    margin-bottom:14px;
    color:#111111;
}

.about-value-card p{
    color:#666666;
    line-height:1.8;
}

.reviews-section{
    background:#1a1c1d;
    color:#ffffff;
}

.reviews-section .section-heading p{
    color:#cccccc;
}

.reviews-widget{
    width:100%;
}

@media(max-width:900px){

    .about-values-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

}
.page-about .hero-content h1,
.page-about .hero-content p{
    color:#ffffff;
}

@media(max-width:600px){

    .page-about{
        min-height:65vh;
    }

    .about-page-intro{
        padding:70px 0;
    }

    .about-values{
        padding:70px 0;
    }

    .about-value-card{
        padding:32px 25px;
    }

    .reviews-section{
        padding:70px 0;
    }

}
@media (max-width:600px){

    .page-about .hero-content h1,
    .page-about .hero-content p{
        color:#ffffff !important;
    }

}
/* ==========================================================
SLUT PÅ FIL ser du detta
========================================================== */