/*=========================================================
    AKB GRANTA
    STYLE.CSS
=========================================================*/

/*==============================
    GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*==============================
    RESET
==============================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#B9C2CB;
    color:#2F343A;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
    border:none;
    background:none;
}

section{
    padding:110px 0;
}

/*==============================
    VARIABLES
==============================*/

:root{

    --primary:#7A1F2B;
    --primary-dark:#611923;
    --primary-light:#A63A4D;

    --dark:#2F343A;
    --dark-2:#454B54;

    --white:#FFFFFF;

    --bg:#B9C2CB;
    --bg-light:#D1D8DE;

    --text:#2F343A;
    --text-light:#646B75;

    --border:#D7DCE2;

    --radius:20px;

    --shadow-sm:0 8px 18px rgba(0,0,0,.05);
    --shadow:0 18px 40px rgba(0,0,0,.08);
    --shadow-lg:0 30px 70px rgba(0,0,0,.12);

    --transition:.35s ease;

}

/*==============================
    TYPOGRAPHY
==============================*/

h1,
h2,
h3,
h4{

    color:var(--dark);

    font-weight:700;

    line-height:1.15;

}

h1{

    font-size:clamp(2.3rem,4vw,3.8rem);

}

h2{

    font-size:clamp(2.2rem,4vw,3.5rem);

}

h3{

    font-size:1.55rem;

}

p{

    color:var(--text-light);

    font-size:1.08rem;

}

.section-title{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.82rem;

    font-weight:700;

    margin-bottom:18px;

}

.section-title h2{

    margin-bottom:20px;

}

/*==============================
    LAYOUT
==============================*/

.container{

    width:min(1280px,calc(100% - 48px));

    margin:auto;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    background:#AAB4BE;

    backdrop-filter:blur(16px);

    box-shadow:0 4px 18px rgba(0,0,0,.06);

    z-index:1000;

}

.header-wrapper{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:62px;

}

nav ul{

    display:flex;

    gap:42px;

    align-items:center;

}

nav a{

    color:#2F343A;

    font-weight:600;

    transition:var(--transition);

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

nav a:hover{

    color:var(--primary);

}

nav a:hover::after{

    width:100%;

}

.header-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    height:54px;

    padding:0 30px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.header-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

.menu-btn{
    color:#f5f5f5;
    transition:.3s ease;
}

.menu-btn:hover{
    color:#b3263d;
}
/*==============================
    HERO
==============================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    background:
        linear-gradient(rgba(32,36,41,.55),rgba(32,36,41,.55)),
        linear-gradient(120deg,rgba(122,31,43,.55),rgba(122,31,43,.18)),
        url("assets/images/sakums.png") center/cover no-repeat;

}
.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(
        circle at top right,
        rgba(255,255,255,.10),
        transparent 45%
    );

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.18),
        rgba(0,0,0,.08),
        rgba(0,0,0,.45)
    );

}

.hero-overlay{

    position:relative;

    z-index:2;

    width:100%;

}

.hero-content{

    max-width:760px;

    padding:65px;

    border-radius:30px;

    background: rgba(255,255,255,.03);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);

    border:1px solid rgba(255,255,255,.15);

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

    animation:heroFade .8s ease;

}

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:14px;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.82rem;

    font-weight:700;

    margin-bottom:24px;

}

.hero-subtitle::before{

    content:"";

    width:46px;

    height:2px;

    background:var(--primary);

}

.hero h1{

    color:#fff;

    margin-bottom:28px;

    font-weight:800;

}

.hero p{

    color:rgba(255,255,255,.90);

    max-width:620px;

    margin-bottom:42px;

    font-size:1.15rem;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:190px;

    height:58px;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid rgba(255,255,255,.85);

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--dark);

}

.hero-info{

    display:flex;

    gap:45px;

    flex-wrap:wrap;

    margin-top:55px;

}

.hero-stat h3{

    color:#fff;

    font-size:2rem;

    margin-bottom:6px;

}

.hero-stat span{

    color:rgba(255,255,255,.80);

    font-size:.95rem;

}

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:.75rem;

    text-transform:uppercase;

    letter-spacing:2px;

    z-index:5;

}

.mouse{

    width:28px;

    height:46px;

    border:2px solid rgba(255,255,255,.85);

    border-radius:30px;

    position:relative;

}

.mouse::before{

    content:"";

    position:absolute;

    left:50%;

    top:8px;

    width:4px;

    height:8px;

    border-radius:10px;

    background:#fff;

    transform:translateX(-50%);

    animation:scrollMouse 2s infinite;

}

@keyframes scrollMouse{

    0%{

        opacity:0;

        transform:translate(-50%,0);

    }

    30%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translate(-50%,16px);

    }

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==============================
    STATISTIKA
==============================*/

.stats{

    position:relative;

    margin-top:-70px;

    z-index:10;

}

.stats-grid{

    display:grid;

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

    gap:24px;

}

.stat-item{

    background:#F8F9FA;

    border:1px solid var(--border);

    border-radius:24px;

    padding:42px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.stat-item:hover{

    transform:translateY(-8px);

}

.stat-item h2{

    color:var(--primary);

    font-size:3rem;

    margin-bottom:10px;

}

.stat-item p{

    color:var(--dark);

    font-weight:600;

}
/*==============================
    PAR UZŅĒMUMU
==============================*/

.about{

    background:#D6DCE3;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.about-content span{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.82rem;

    font-weight:700;

    margin-bottom:20px;

}

.about-content h2{

    margin-bottom:28px;

}

.about-content p{

    margin-bottom:22px;

}

.about-features{

    display:grid;

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

    gap:24px;

}

.feature-card{

    background:#FFFFFF;

    border-radius:22px;

    border:1px solid var(--border);

    padding:34px 28px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.feature-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    background:rgba(122,31,43,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:1.6rem;

    margin-bottom:22px;

}

.feature-card h3{

    margin-bottom:14px;

}

/*==============================
    PAKALPOJUMI
==============================*/

.services{

    background:var(--bg);

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:24px;

    border:1px solid var(--border);

    padding:42px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.service-card::before{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    right:-70px;

    bottom:-70px;

    background:rgba(122,31,43,.05);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-card:hover::before{

    transform:scale(1.15);

}

.service-number{

    width:58px;

    height:58px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    margin-bottom:24px;

}

.service-card h3{

    margin-bottom:16px;

}

.service-card p{

    margin-bottom:26px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.service-link:hover{

    gap:18px;

}

/*==============================
    DARBĪBAS JOMAS
==============================*/

.sectors{

    background:#F4F5F7;

}

.sectors-grid{

    display:grid;

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

    gap:28px;

}

.sector-card{

    position:relative;

    height:340px;

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.sector-card:hover{

    transform:translateY(-10px);

}

.sector-image{

    position:absolute;

    inset:0;

}

.sector-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.sector-card:hover img{

    transform:scale(1.08);

}

.sector-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:linear-gradient(
        to top,
        rgba(32,36,41,.92),
        rgba(32,36,41,.45),
        rgba(32,36,41,.05)
    );

    transition:var(--transition);

}

.sector-card:hover .sector-overlay{

    background:linear-gradient(
        to top,
        rgba(122,31,43,.92),
        rgba(122,31,43,.45),
        rgba(122,31,43,.08)
    );

}

.sector-content h3{

    color:#fff;

    margin-bottom:12px;

}

.sector-content p{

    color:rgba(255,255,255,.82);

    margin-bottom:20px;

}

.sector-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:12px 22px;

    margin-top:8px;

    border:2px solid rgba(255,255,255,.9);

    border-radius:999px;

    color:#ffffff;

    background:rgba(255,255,255,.08);

    font-weight:600;

    font-size:.95rem;

    backdrop-filter:blur(6px);

    -webkit-backdrop-filter:blur(6px);

    transition:all .30s ease;

}

.sector-link i{

    transition:.30s ease;

}

.sector-link:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#ffffff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(122,31,43,.35);

}

.sector-link:hover i{

    transform:translateX(5px);

}
/*==============================
    KĀPĒC IZVĒLĒTIES MŪS
==============================*/

.advantages{

    background:var(--bg);

}

.advantages-wrapper{

    display:grid;

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

    gap:26px;

}

.advantage-card{

    background:#fff;

    border-radius:22px;

    border:1px solid var(--border);

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.advantage-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.advantage-icon{

    width:78px;

    height:78px;

    margin:0 auto 24px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(122,31,43,.08);

    color:var(--primary);

    font-size:2rem;

}

.advantage-card h3{

    margin-bottom:15px;

}

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

.cta{

    background:#DCE2E8;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:90px 70px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #651925,
        #7A1F2B
    );

    box-shadow:var(--shadow-lg);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    right:-180px;

    top:-240px;

    background:rgba(255,255,255,.05);

}

.cta-box span{

    position:relative;

    display:block;

    color:#fff;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.82rem;

    font-weight:700;

    margin-bottom:18px;

}

.cta-box h2{

    position:relative;

    color:#fff;

    margin-bottom:22px;

}

.cta-box p{

    position:relative;

    max-width:650px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.86);

}

.cta-box .btn{

    position:relative;

    background:#fff;

    color:var(--primary);

}

.cta-box .btn:hover{

    background:#f2f2f2;

}

/*==============================
    KONTAKTI
==============================*/

.contact{

    background:#D6DCE3;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.15fr;

    gap:50px;

    align-items:start;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-card{

    display:flex;

    gap:20px;

    padding:28px;

    border-radius:22px;

    background:#fff;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}

.contact-icon{

    width:60px;

    height:60px;

    flex-shrink:0;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(122,31,43,.08);

    color:var(--primary);

    font-size:1.4rem;

}

.contact-card h3{

    margin-bottom:8px;

}

.contact-map{

    overflow:hidden;

    border-radius:24px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.contact-map iframe{

    width:100%;

    height:100%;

    min-height:560px;

    border:0;

}

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

footer{

    background:#262B31;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

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

    gap:50px;

    margin-bottom:50px;

}

.footer-logo img{

    height:72px;

    margin-bottom:22px;

}

.footer-logo p{

    color:rgba(255,255,255,.72);

    max-width:420px;

}

.footer-column h3{

    color:#fff;

    margin-bottom:20px;

    font-size:1.2rem;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-column li{

    color:rgba(255,255,255,.72);

    line-height:1.8;

}

.footer-column a{

    color:rgba(255,255,255,.72);

    transition:var(--transition);

}

.footer-column a:hover{

    color:#fff;

}

.footer-bottom{

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

    padding-top:24px;

    text-align:center;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    font-size:.95rem;

}
/*==============================
    MOBILE MENU
==============================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

    background:#fff;

    padding:110px 40px;

    z-index:1200;

    transition:.4s ease;

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

}

.mobile-menu.active{

    right:0;

}

.mobile-menu ul{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.mobile-menu a{

    color:var(--dark);

    font-size:1.05rem;

    font-weight:600;

}

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:1100;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

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

@media(max-width:1200px){

    .stats-grid{

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

    }

    .advantages-wrapper{

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

    }

}

@media(max-width:992px){

    nav{

        display:none;

    }

    .menu-btn{

        display:block;

    }

    .header-btn{

        display:none;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        margin:auto;

        padding:50px 35px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-info{

        justify-content:center;

    }

    .about-wrapper{

        grid-template-columns:1fr;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .sectors-grid{

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

    }

    .advantages-wrapper{

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

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

}

@media(max-width:768px){

    section{

        padding:80px 0;

    }

    .container{

        width:min(100%,calc(100% - 30px));

    }

    .hero{

        min-height:auto;

        padding:170px 0 110px;

    }

    .hero-content{

        padding:40px 28px;

    }

    .hero h1{

        font-size:2.7rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn{

        width:100%;

    }

    .stats{

        margin-top:0;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .about-features{

        grid-template-columns:1fr;

    }

    .sectors-grid{

        grid-template-columns:1fr;

    }

    .advantages-wrapper{

        grid-template-columns:1fr;

    }

    .cta-box{

        padding:60px 30px;

    }

}

@media(max-width:576px){

    .header-wrapper{

        height:80px;

    }

    .logo img{

        height:54px;

    }

    .hero-content{

        padding:30px 22px;

        border-radius:22px;

    }

    .service-card{

        padding:30px;

    }

    .feature-card{

        padding:28px;

    }

    .advantage-card{

        padding:30px;

    }

    .contact-card{

        flex-direction:column;

    }

    .contact-map iframe{

        min-height:360px;

    }

    .footer{

        text-align:center;

    }

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#D8DDE3;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

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

::selection{

    background:var(--primary);

    color:#fff;

}

/*==============================
    FOCUS
==============================*/

:focus-visible{

    outline:3px solid rgba(122,31,43,.35);

    outline-offset:4px;

}

/*==============================
    UTILITIES
==============================*/

.text-center{

    text-align:center;

}

.mb-0{

    margin-bottom:0 !important;

}

.mt-0{

    margin-top:0 !important;

}

.hidden{

    display:none !important;

}
/*=================================================
            DARBĪBAS JOMU LAPAS
=================================================*/

.service-hero{
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.service-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.65)
    );
}

.service-hero .container{
    position: relative;
    z-index: 2;
}

.service-hero .hero-content{
    max-width: 760px;
}

.service-hero h1{
    color: #fff;
    font-size: 4rem;
    margin-bottom: 25px;
}

.service-hero p{
    color: rgba(255,255,255,.95);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.service-hero .btn{
    margin-top: 10px;
}

/*=================================================
                HERO ATTĒLI
=================================================*/

.radiatoru-hero{
    background-image: url("assets/images/radiatoru-sistemas.png");
}

.siltas-gridas-hero{
    background-image: url("assets/images/siltas-gridas.png");
}

.ventilacija-hero{
    background-image: url("assets/images/ventilacija.png");
}

.siltumsukni-hero{
    background-image: url("assets/images/siltumsukni.png");
}

.individualie-siltummezgli-hero{
    background-image: url("assets/images/individualie-siltummezgli.png");
}

.siltumtikli-hero{
    background-image: url("assets/images/siltumtikli.png");
}

.granulu-katlu-majas-hero{
    background-image: url("assets/images/granulu-katlu-majas.png");
}

.gazes-katlu-majas-hero{
    background-image: url("assets/images/gazes-katlu-majas.png");
}

.dzesesana-hero{
    background-image: url("assets/images/dzesesana.png");
}

/*=================================================
                ANIMĀCIJAS
=================================================*/

.service-hero h1{
    animation: fadeUp .8s ease;
}

.service-hero p{
    animation: fadeUp 1s ease;
}

.service-hero .btn{
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(35px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

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

@media (max-width:768px){

    .service-hero{
        min-height:60vh;
        text-align:center;
    }

    .service-hero .hero-content{
        max-width:100%;
    }

    .service-hero h1{
        font-size:2.6rem;
    }

    .service-hero p{
        font-size:1rem;
        line-height:1.7;
    }

}
/*=================================================
            PREMIUM POLISH
=================================================*/

/* Gludākas animācijas */

a,
button,
.btn,
.header-btn,
.feature-card,
.service-card,
.sector-card,
.advantage-card,
.contact-card,
img{

    transition:all .30s ease;

}

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

header{

    background:rgba(25,25,25,.72);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

/* ----------------------------------
   NAVIGĀCIJA
----------------------------------- */

nav ul li a{

    color:#ffffff;

    font-weight:500;

    letter-spacing:.2px;

    transition:var(--transition);

}

nav ul li a:hover{

    color:#8d1b2b;

}
/* ----------------------------------
   POGAS
----------------------------------- */

.btn:hover,
.header-btn:hover{

    transform:translateY(-3px);

}

/* ----------------------------------
   KARTĪTES
----------------------------------- */

.feature-card:hover,
.service-card:hover,
.sector-card:hover,
.advantage-card:hover,
.contact-card:hover{

    transform:translateY(-6px);

}

/* ----------------------------------
   DARBĪBAS JOMU BILDES
----------------------------------- */

.sector-card{

    overflow:hidden;

}

.sector-card img{

    transition:transform .55s ease;

}

.sector-card:hover img{

    transform:scale(1.05);

}

/* ----------------------------------
   IKONAS
----------------------------------- */

.feature-icon,
.advantage-icon,
.contact-icon{

    transition:.35s;

}

.feature-card:hover .feature-icon,
.advantage-card:hover .advantage-icon,
.contact-card:hover .contact-icon{

    transform:scale(1.08);

}

/* ----------------------------------
   CTA
----------------------------------- */

.cta-box{

    overflow:hidden;

}

/* ----------------------------------
   FOOTER
----------------------------------- */

.footer-column a:hover{

    color:#8d1b2b;

}

/* ----------------------------------
   SCROLL
----------------------------------- */

html{

    scroll-behavior:smooth;

}

::selection{

    background:#8d1b2b;

    color:#fff;

}
/*=================================================
            MOBILE OPTIMIZATION
=================================================*/

@media (max-width:991px){

    .header-wrapper{
        padding:14px 0;
    }

    .logo img{
        height:52px;
    }

    nav ul{
        gap:20px;
    }

    .hero{

        min-height:90vh;

    }

    .hero h1{

        font-size:2.7rem;

        line-height:1.2;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-buttons{

        justify-content:center;

        gap:14px;

    }

    .hero-stat{

        margin-top:18px;

    }

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

    section{

        padding:70px 0;

    }

    .section-title{

        margin-bottom:40px;

    }

    .section-title h2{

        font-size:2rem;

    }

    .services-grid,
    .advantages-wrapper,
    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .sectors-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .sector-card{

        height:300px;

    }

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

    .hero{

        min-height:85vh;

    }

    .hero h1{

        font-size:2.2rem;

    }

    .hero p{

        font-size:.95rem;

    }

    .btn{

        width:100%;

        justify-content:center;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .service-card,
    .feature-card,
    .advantage-card,
    .contact-card{

        padding:30px 24px;

    }

    .sector-card{

        height:260px;

    }

    .footer{

        text-align:center;

    }

}
/*==================================
        MOBILE MENU
==================================*/

@media(max-width:991px){

.menu-btn{

    display:flex;

    align-items:center;

    justify-content:center;

}

nav{

    display:block;
    position:fixed;

    top:82px;

    left:0;

    width:100%;

    background:#232323;

    padding:25px;

    transform:translateY(-120%);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

nav.active{

    transform:translateY(0);

    opacity:1;

    visibility:visible;

}

nav ul{

    flex-direction:column;

    gap:22px;

}

nav ul li{

    width:100%;

}

nav ul li a{

    display:block;

    padding:12px 0;

    color:#fff;

    font-size:18px;

}

.header-btn{

    display:none;

}

body.menu-open{

    overflow:hidden;

}

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

    .about-features{
        display:none;
    }

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

@media (max-width:768px){

    .service-hero::before{
        background:linear-gradient(
            rgba(0,0,0,.20),
            rgba(0,0,0,.30)
        );
    }

}