@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');


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

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{

--black:#050505;
--white:#ffffff;
--gray:#9d9d9d;
--blue:#67BDF7;
--card:#101010;
--border:rgba(255,255,255,0.08);

--font-heading:'Space Grotesk',sans-serif;
--font-body:'Inter',sans-serif;

}

body{
font-family:var(--font-body);
background:var(--black);
color:white;
overflow-x:hidden;
transition:0.4s;
-webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}

body.menu-open{
overflow:hidden;
}

h1,h2,h3,h4{
font-family:var(--font-heading);
}

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

.container{
width:100%;
max-width:1500px;
margin:auto;
padding-left:30px;
padding-right:30px;
}

section{
padding:72px 0;
position:relative;
}

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

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(var(--blue), rgba(255,255,255,0.12));
border-radius:20px;
}

/* =========================================
LOADER
========================================= */

.loader{
position:fixed;
inset:0;
background:#050505;
z-index:999999;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
transition:1s ease;
}

.loader.hidden{
opacity:0;
visibility:hidden;
}

.loader-logo{
width:170px;
filter:drop-shadow(0 0 35px rgba(103,189,247,0.22));
}

.loader-line{
width:150px;
height:2px;
background:rgba(255,255,255,0.08);
margin-top:35px;
overflow:hidden;
position:relative;
border-radius:20px;
}

.loader-line::before{
content:'';
position:absolute;
left:-50%;
top:0;
width:50%;
height:100%;
background:var(--blue);
animation:loaderAnim 1.3s infinite ease;
}

@keyframes loaderAnim{

0%{
left:-50%;
}

100%{
left:100%;
}

}


/* =========================================
NAVBAR
========================================= */

nav{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
backdrop-filter:blur(20px);
background:rgba(0,0,0,0.45);
border-bottom:1px solid rgba(255,255,255,0.04);
transition:0.4s;
}

.nav-inner{
max-width:1500px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 18px;
}

.logo{
display:flex;
align-items:center;
gap:16px;
text-decoration:none;
color:white;
}

.logo img{
width:52px;
}

.logo-text h2{
font-size:16px;
letter-spacing:4px;
font-weight:700;
}

.logo-text p{
font-size:9px;
letter-spacing:5px;
color:#8a8a8a;
margin-top:4px;
}

.nav-right{
display:flex;
align-items:center;
gap:24px;
}

.nav-links{
display:flex;
gap:42px;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:14px;
font-weight:500;
opacity:0.78;
transition:0.4s;
position:relative;
}

.nav-links a::after{
content:'';
position:absolute;
bottom:-8px;
left:0;
width:0%;
height:1px;
background:var(--blue);
transition:0.4s;
}

.nav-links a:hover{
opacity:1;
color:var(--blue);
}

.nav-links a:hover::after{
width:100%;
}

/* =========================================
SOCIAL ICONS
========================================= */

.social-icons{
display:none;
align-items:center;
gap:12px;
margin-left:10px;
}

.social-icons a{
width:42px;
height:42px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
color:white;
font-size:16px;
text-decoration:none;
transition:0.4s;
backdrop-filter:blur(20px);
}

.social-icons a:hover{
transform:translateY(-4px);
background:var(--blue);
color:black;
box-shadow:0 10px 30px rgba(103,189,247,0.25);
}

/* =========================================
MOBILE SOCIALS
========================================= */

.mobile-socials{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
margin-top:22px;
}

.mobile-socials a{
width:54px;
height:54px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
color:white;
font-size:20px;
text-decoration:none;
transition:0.4s;
backdrop-filter:blur(20px);
}

.mobile-socials a:hover{
background:var(--blue);
color:black;
transform:translateY(-4px);
}

/* =========================================
MODE BUTTON
========================================= */

.mode-toggle{
width:48px;
height:48px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
cursor:pointer;
font-size:16px;
transition:0.4s;
backdrop-filter:blur(20px);
}

.mode-toggle:hover{
transform:rotate(180deg);
background:rgba(255,255,255,0.08);
}

/* =========================================
MOBILE MENU BUTTON
========================================= */

.mobile-menu-btn{
display:none;
width:46px;
height:46px;
border-radius:50%;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
align-items:center;
justify-content:center;
flex-direction:column;
gap:5px;
cursor:pointer;
transition:0.4s;
}

.mobile-menu-btn span{
width:18px;
height:2px;
background:white;
border-radius:10px;
transition:0.4s;
}

.mobile-menu-btn{
position:relative;
}

.mobile-menu-btn span{
position:absolute;
width:18px;
height:2px;
border-radius:10px;
background:white;
transition:0.4s ease;
}

.mobile-menu-btn span:nth-child(1){
transform:translateY(-4px);
}

.mobile-menu-btn span:nth-child(2){
transform:translateY(4px);
}

.mobile-menu-btn.active span:nth-child(1){
transform:rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2){
transform:rotate(-45deg);
}

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

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:100%;
height:100vh;
background:rgba(5,5,5,0.97);
backdrop-filter:blur(30px);
z-index:998;
display:flex;
align-items:center;
justify-content:center;
transition:0.6s cubic-bezier(.77,0,.18,1);
}

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

.mobile-menu-inner{
display:flex;
flex-direction:column;
align-items:center;
gap:28px;
width:100%;
padding:40px;
}

.mobile-menu-inner a{
font-size:34px;
font-family:var(--font-heading);
font-weight:700;
letter-spacing:-2px;
text-decoration:none;
color:white;
transition:0.4s;
}

.mobile-menu-inner a:hover{
color:var(--blue);
}

.mobile-divider{
width:100px;
height:1px;
background:rgba(255,255,255,0.1);
margin:10px 0;
}

.mobile-theme{
display:flex;
align-items:center;
gap:16px;
margin-top:10px;
}

.mobile-theme span{
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
color:#8f8f8f;
}

.mobile-theme-btn{
width:46px;
height:46px;
border-radius:50%;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:0.4s;
}

/* =========================================
HERO
========================================= */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding-top:120px;
padding-bottom:56px;
position:relative;
overflow:hidden;
}

.hero-gradient{
position:absolute;
width:900px;
height:900px;
background:radial-gradient(circle, rgba(103,189,247,0.12), transparent 70%);
top:-250px;
right:-250px;
pointer-events:none;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:72px;
align-items:center;
}

.hero-small{
text-transform:uppercase;
letter-spacing:5px;
font-size:11px;
color:var(--blue);
margin-bottom:28px;
font-weight:600;
}

.hero h1{
font-size:clamp(60px, 7vw, 100px);
line-height:0.92;
letter-spacing:-5px;
font-weight:700;
margin-bottom:30px;
max-width:850px;
}

.hero p{
font-size:21px;
line-height:1.9;
color:#a9a9a9;
max-width:700px;
}

.hero-buttons{
display:flex;
gap:16px;
margin-top:50px;
flex-wrap:wrap;
}

/* =========================================
RIGHT HERO
========================================= */

.hero-right{
position:relative;
height:700px;
display:flex;
align-items:center;
justify-content:center;
}

.hero-main-image{
width:100%;
max-width:500px;
height:620px;
border-radius:36px;
overflow:hidden;
position:relative;
box-shadow:
0 30px 80px rgba(0,0,0,0.45),
0 0 80px rgba(103,189,247,0.08);
animation:floatImage 7s ease-in-out infinite;
}

.hero-main-image img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-floating-card{
position:absolute;
left:-30px;
bottom:100px;

display:flex;
align-items:center;
gap:16px;

padding:22px 24px;

border-radius:26px;

background:rgba(255,255,255,0.06);

border:1px solid rgba(255,255,255,0.08);

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

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

z-index:5;

animation:floatCard 5s ease-in-out infinite;
}

.hero-floating-card img{
width:54px;
}

.hero-floating-card h3{
font-size:18px;
letter-spacing:3px;
margin-bottom:6px;
}

.hero-floating-card p{
font-size:11px;
letter-spacing:3px;
text-transform:uppercase;
color:#9f9f9f;
}

.hero-small-image{
position:absolute;
right:-20px;
top:70px;

width:200px;
height:200px;

border-radius:30px;

overflow:hidden;

border:1px solid rgba(255,255,255,0.08);

box-shadow:
0 20px 50px rgba(0,0,0,0.4);

animation:floatSmall 6s ease-in-out infinite;
}

.hero-small-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* =========================================
BUTTONS
========================================= */

.btn{
padding:18px 34px;
border-radius:100px;
text-decoration:none;
font-size:15px;
font-weight:600;
transition:0.4s;
}

.btn-primary{
background:var(--blue);
color:black;
box-shadow:0 15px 40px rgba(103,189,247,0.22);
}

.btn-primary:hover{
transform:translateY(-5px);
background:white;
}

.btn-secondary{
border:1px solid rgba(255,255,255,0.1);
background:rgba(255,255,255,0.03);
color:white;
}

.btn-secondary:hover{
transform:translateY(-5px);
border-color:rgba(103,189,247,0.2);
}

/* =========================================
SECTION TITLES
========================================= */

.label{
color:var(--blue);
letter-spacing:5px;
text-transform:uppercase;
font-size:11px;
font-weight:600;
margin-bottom:24px;
}

.title{
font-size:clamp(44px, 5vw, 76px);
line-height:1;
letter-spacing:-4px;
margin-bottom:28px;
max-width:900px;
}

.text{
font-size:20px;
line-height:1.9;
color:#9d9d9d;
max-width:850px;
}

/* =========================================
CARDS
========================================= */

.stats,
.storitve-grid,
.why-grid{
margin-top:48px;
display:grid;
gap:24px;
}

.stats{
grid-template-columns:repeat(4,1fr);
}

.storitve-grid{
grid-template-columns:repeat(3,1fr);
}

.why-grid{
grid-template-columns:repeat(3,1fr);
}

.stat,
.service,
.why-card{
padding:46px;
border-radius:30px;
background:rgba(255,255,255,0.03);
border:1px solid var(--border);
transition:0.5s;
backdrop-filter:blur(14px);
}

.stat:hover,
.service:hover,
.why-card:hover{
transform:translateY(-10px);
border-color:rgba(103,189,247,0.2);
box-shadow:0 12px 30px rgba(0,0,0,0.22);
}

.service-icon{
width:70px;
height:70px;
border-radius:20px;
background:rgba(103,189,247,0.08);
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
margin-bottom:30px;
}

.stat h3,
.service h3,
.why-card h3{
font-size:28px;
margin-bottom:16px;
line-height:1.2;
}

.stat p,
.service p,
.why-card p{
color:#8d8d8d;
line-height:1.8;
font-size:15px;
}

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

.kontakt-cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
margin-top:48px;
}

.kontakt-card{
display:flex;
align-items:flex-start;
gap:22px;
padding:34px;
border-radius:30px;
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.06);
text-decoration:none;
color:white;
transition:0.4s;
backdrop-filter:blur(20px);
}

.kontakt-card:hover{
transform:translateY(-6px);
border-color:rgba(103,189,247,0.2);
box-shadow:0 12px 30px rgba(0,0,0,0.22);
}

.kontakt-icon{
width:68px;
height:68px;
border-radius:22px;
background:rgba(103,189,247,0.08);
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
flex-shrink:0;
}

.kontakt-card span{
font-size:11px;
letter-spacing:4px;
text-transform:uppercase;
color:var(--blue);
display:block;
margin-bottom:10px;
}

.kontakt-card h3{
font-size:24px;
margin-bottom:10px;
line-height:1.2;
}

.kontakt-card p{
font-size:15px;
line-height:1.7;
color:#8d8d8d;
}

iframe{
width:100%;
height:340px;
border:none;
border-radius:30px;
margin-top:48px;
filter:grayscale(1) invert(0.92);
}

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

.footer-cert{
position:relative;

padding:56px;

border-radius:30px;

overflow:hidden;

background:
linear-gradient(
145deg,
rgba(255,255,255,0.045),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.06);

box-shadow:
0 20px 60px rgba(0,0,0,0.20),
0 1px 0 rgba(255,255,255,0.04) inset;

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

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;

gap:24px;
}

.cert-section{
max-width:1200px;
margin:auto;
}

.footer-cert::before{
content:'';

position:absolute;
inset:0;

background:
radial-gradient(
circle at top,
rgba(103,189,247,0.12),
transparent 65%
);

pointer-events:none;
}

.footer-cert-left{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:20px;
position:relative;
z-index:2;
}

.footer-cert h4{
font-size:42px;
line-height:1.05;
letter-spacing:-2px;
font-weight:700;
max-width:700px;
margin-bottom:12px;
}

.footer-cert p{
font-size:16px;
line-height:1.9;
color:#9d9d9d;
max-width:720px;
margin:auto;
}

.cert-image{
width:260px;
max-width:100%;
height:auto;
display:block;
margin:auto;
object-fit:contain;
filter:
drop-shadow(
0 20px 40px rgba(0,0,0,0.12)
);
}


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

footer{
padding:48px 0 24px;
border-top:1px solid rgba(255,255,255,0.05);
}

.footer-inner{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:30px;
}

.footer-logo{
display:flex;
align-items:center;
gap:14px;
}

.footer-logo img{
width:52px;
}

.footer-links{
display:flex;
gap:24px;
}

.footer-links a{
text-decoration:none;
color:#777;
transition:0.4s;
}

.footer-links a:hover{
color:var(--blue);
}

.copy{
margin-top:24px;
text-align:center;
font-size:13px;
color:#666;

display:flex;
flex-direction:column;
gap:10px;

padding-top:24px;

border-top:1px solid rgba(255,255,255,0.06);
}

.copy-dev{
font-size:14px;
color:#666;
}

.copy-dev a{
color:var(--blue);
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.copy-dev a:hover{
opacity:0.7;
}

/* =========================================
ANIMATIONS
========================================= */

.fade{
opacity:0;
transform:translate3d(0,40px,0);
transition:
opacity .7s ease-out,
transform .7s cubic-bezier(.22,1,.36,1);

will-change:transform, opacity;
backface-visibility:hidden;
}

.fade.show{
opacity:1;
transform:translate3d(0,0,0);
}

@keyframes floatImage{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

@keyframes floatCard{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(10px);
}

100%{
transform:translateY(0px);
}

}

@keyframes floatSmall{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}

/* =========================================
LIGHT MODE
========================================= */

.light-mode{
background:#f5f5f5;
color:#111;
}

.light-mode nav{
background:rgba(255,255,255,0.72);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(0,0,0,0.05);
}

.light-mode .logo{
color:#111;
}

.light-mode .nav-links a{
color:#111;
}

.light-mode .mode-toggle,
.light-mode .mobile-menu-btn,
.light-mode .mobile-theme-btn{
background:white;
border:1px solid rgba(0,0,0,0.08);
color:#111;
}

.light-mode .mobile-menu-btn span{
background:#111;
}

.light-mode .mobile-menu{
background:rgba(245,245,245,0.97);
}

.light-mode .mobile-menu-inner a{
color:#111;
}

.light-mode .service,
.light-mode .stat,
.light-mode .why-card,
.light-mode .kontakt-form,
.light-mode .hero-floating-card{
background:white;
border:1px solid rgba(0,0,0,0.06);
box-shadow:0 10px 30px rgba(0,0,0,0.03);
}

.light-mode .title,
.light-mode h1,
.light-mode h2,
.light-mode h3{
color:#111;
}

.light-mode .text,
.light-mode p{
color:#555 !important;
}

.light-mode .btn-secondary{
background:white;
border:1px solid rgba(0,0,0,0.08);
color:#111;
}

.light-mode .social-icons a,
.light-mode .mobile-socials a{
background:white;
border:1px solid rgba(0,0,0,0.08);
color:#111;
}

.light-mode .social-icons a:hover,
.light-mode .mobile-socials a:hover{
background:var(--blue);
color:black;
}

.light-mode .footer-cert{

background:
linear-gradient(
145deg,
#ffffff,
#f6f8fa
);

border:1px solid rgba(0,0,0,0.05);

box-shadow:
0 10px 40px rgba(0,0,0,0.05),
0 1px 0 rgba(255,255,255,0.9) inset;

backdrop-filter:none;
}

.light-mode .footer-cert p{
color:#5f6368;
}


/* =========================================
GALLERY FILTERS
========================================= */

.gallery-filters{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-top:42px;
margin-bottom:36px;
}

.filter-btn{
padding:14px 24px;
border-radius:100px;
border:1px solid rgba(255,255,255,0.08);
background:rgba(255,255,255,0.03);
color:white;
font-size:14px;
font-weight:500;
cursor:pointer;
transition:0.4s;
backdrop-filter:blur(20px);
}

.filter-btn:hover{
border-color:rgba(103,189,247,0.2);
transform:translateY(-3px);
}

.filter-btn.active{
background:var(--blue);
color:black;
border-color:var(--blue);
}

/* =========================================
GALLERY
========================================= */

.projekti-gallery{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:24px;

margin-top:20px;

}

.gallery-item{

position:relative;

overflow:hidden;

border-radius:30px;

cursor:pointer;

background:#111;

height:340px;

}

.gallery-item img{

width:100%;

height:100%;

object-fit:cover;

display:block;

transition:0.8s ease;

cursor:zoom-in;

}


.gallery-item::after{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,0.35),
transparent
);
opacity:0;
transition:0.5s;
}

.gallery-item:hover::after{
opacity:1;
}

.gallery-item:hover img{
transform:scale(1.06);
filter:brightness(0.92);
}

.gallery-item:hover{
box-shadow:
0 20px 60px rgba(0,0,0,0.35),
0 0 40px rgba(103,189,247,0.08);
}

/* =========================================
GALLERY OVERLAY
========================================= */

.gallery-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:24px;
z-index:5;
opacity:0;
transform:translateY(20px);
transition:.45s cubic-bezier(.19,1,.22,1);

pointer-events:none;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
transform:translateY(0);
}

.gallery-title{
font-size:20px;
font-weight:700;
margin-bottom:10px;
color:white;
}

.gallery-category{
display:inline-flex;
padding:10px 14px;
border-radius:999px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(10px);
font-size:12px;
font-weight:700;
color:white;
}

/* =========================================
BUTTON WRAP
========================================= */

.gallery-button-wrap{
display:flex;
justify-content:center;
margin-top:40px;
}

/* =========================================
LIGHTBOX
========================================= */

.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,0.94);

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

opacity:0;
pointer-events:none;

transition:.3s;
z-index:999999;

padding:20px;

overflow:auto;
}

.lightbox.active{
opacity:1;
pointer-events:auto;
}

.lightbox img{
max-width:95vw;
max-height:95vh;

border-radius:24px;

box-shadow:0 30px 80px rgba(0,0,0,0.5);

transition:transform .3s ease;

cursor:zoom-in;
}

.lightbox img.zoomed{
transform:scale(2);
cursor:zoom-out;
}

/* =========================================
LIGHT MODE
========================================= */

.light-mode .filter-btn{
background:white;
border:1px solid rgba(0,0,0,0.08);
color:#111;
}

.light-mode .filter-btn.active{
background:var(--blue);
color:black;
}



/* =========================================
BACK TO TOP
========================================= */

.back-to-top{
position:fixed;
right:24px;
bottom:24px;
width:58px;
height:58px;
border:none;
border-radius:50%;
background:rgba(103,189,247,.95);
color:black;
font-size:18px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;

opacity:0;
visibility:hidden;
transform:translateY(20px);

transition:
opacity .35s ease,
transform .35s ease,
visibility .35s ease,
background .3s ease;

box-shadow:
0 10px 35px rgba(103,189,247,.28),
0 0 0 1px rgba(255,255,255,.08);

backdrop-filter:blur(14px);
}

.back-to-top.show{
opacity:1;
visibility:visible;
transform:translateY(0);
}

.back-to-top:hover{
transform:translateY(-5px);
background:white;
}

.back-to-top i{
pointer-events:none;
}

/* LIGHT MODE */

.light-mode .back-to-top{
background:#111;
color:white;
box-shadow:0 10px 35px rgba(0,0,0,.15);
}

.light-mode .back-to-top:hover{
background:var(--blue);
color:black;
}

/* =========================================
COOKIE BANNER
========================================= */

.cookie-banner{

position:fixed;

left:24px;
right:24px;
bottom:24px;

padding:24px;

border-radius:28px;

background:rgba(10,10,10,.94);

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

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

z-index:999999;

display:flex;
align-items:center;
justify-content:space-between;
gap:30px;

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

/* START HIDDEN */

opacity:0;
visibility:hidden;

transform:translateY(30px);

transition:
opacity .4s ease,
transform .4s ease,
visibility .4s ease;

}

/* SHOW */

.cookie-banner.show{

opacity:1;
visibility:visible;

transform:translateY(0);

}

/* HIDE */

.cookie-banner.hide{

opacity:0;
visibility:hidden;

transform:translateY(20px);

pointer-events:none;

}

/* CONTENT */

.cookie-content{
flex:1;
}

.cookie-content h3{
font-size:24px;
margin-bottom:12px;
letter-spacing:-1px;
}

.cookie-content p{
font-size:15px;
line-height:1.8;
color:#bcbcbc;
max-width:720px;
}

/* LINKS */

.cookie-links{
margin-top:14px;
}

.cookie-links a{
color:var(--blue);
text-decoration:none;
font-size:14px;
font-weight:600;
}

/* ACTIONS */

.cookie-actions{
display:flex;
gap:14px;
flex-shrink:0;
}

/* BUTTON */

.cookie-btn{

padding:14px 24px;

border:none;
border-radius:999px;

font-size:14px;
font-weight:600;

cursor:pointer;

transition:.3s;

}

/* PRIMARY */

.cookie-btn.primary{
background:var(--blue);
color:black;
}

.cookie-btn.primary:hover{
background:white;
transform:translateY(-2px);
}

/* SECONDARY */

.cookie-btn.secondary{
background:rgba(255,255,255,.04);
color:white;
border:1px solid rgba(255,255,255,.08);
}

.cookie-btn.secondary:hover{
transform:translateY(-2px);
background:rgba(255,255,255,.08);
}

/* LIGHT MODE */

.light-mode .cookie-banner{
background:rgba(255,255,255,.96);
border:1px solid rgba(0,0,0,.08);
}

.light-mode .cookie-content h3{
color:#111;
}

.light-mode .cookie-content p{
color:#555 !important;
}

.light-mode .cookie-btn.secondary{
background:#f4f4f4;
color:#111;
border:1px solid rgba(0,0,0,.08);
}


/* =========================================
TABLET
========================================= */

@media(max-width:1200px){

.hero-grid{
grid-template-columns:1fr;
gap:70px;
}

.hero-right{
height:auto;
}

.hero-main-image{
max-width:100%;
height:520px;
}

.hero-floating-card{
left:20px;
bottom:20px;
}

.hero-small-image{
right:20px;
top:-40px;
}

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

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

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

}

/* =========================================
MOBILE
========================================= */

@media(max-width:950px){

/* REMOVE BLUR */

nav,
.mobile-menu,
.hero-floating-card,
.kontakt-card,
.service,
.stat,
.why-card,
.cookie-banner{
backdrop-filter:none !important;
-webkit-backdrop-filter:none !important;
}

/* REMOVE SHADOWS */

.hero-main-image,
.hero-floating-card,
.gallery-item,
.service,
.stat,
.why-card,
.kontakt-card,
.footer-cert{
box-shadow:none !important;
}

/* REMOVE ANIMATIONS */

.hero-main-image,
.hero-floating-card,
.hero-small-image,
.loader-logo{
animation:none !important;
}

/* REMOVE TRANSITIONS */

*{
transition:
background-color .3s ease,
color .3s ease,
opacity .6s ease,
transform .6s ease;
}

/* LIGHTER HOVER */

.gallery-item img{
transform:none !important;
filter:none !important;
}

/* DISABLE SCROLL EFFECTS */

.fade{
opacity:1 !important;
transform:none !important;
}

.cursor{
display:none;
}

.container{
padding-left:22px;
padding-right:22px;
}

section{
padding:56px 0;
}

.nav-links,
.mode-toggle{
display:none;
}

.mobile-menu-btn{
display:flex;
}

.nav-inner{
padding:18px 22px;
}

.logo img{
width:46px;
}

.logo-text h2{
font-size:14px;
letter-spacing:3px;
}

.logo-text p{
font-size:8px;
letter-spacing:4px;
}

.hero{
min-height:auto;
padding-top:92px;
padding-bottom:20px;
}

.hero-grid{
display:flex;
flex-direction:column;
gap:30px;
}

.hero h1{
font-size:clamp(40px, 13vw, 50px);
line-height:0.95;
letter-spacing:-3px;
margin-bottom:24px;
}

.hero p{
font-size:17px;
line-height:1.8;
}

.hero-buttons{
flex-direction:column;
gap:14px;
margin-top:36px;
}

.btn{
width:100%;
text-align:center;
padding:18px 20px;
}

.hero-right{
width:100%;
height:auto;
display:flex;
flex-direction:column;
gap:18px;
position:relative;
overflow:hidden;
}

.hero-main-image{
width:100%;
height:340px;
border-radius:28px;
animation:none;
}

.hero-small-image{
display:none !important;
}

.hero-floating-card{
display:none !important;
}

.hero-floating-card img{
width:48px;
}

.title{
font-size:34px;
letter-spacing:-2px;
}

.text{
font-size:17px;
line-height:1.8;
}

.stats,
.storitve-grid,
.why-grid{
grid-template-columns:1fr;
margin-top:36px;
gap:16px;
}

.stat,
.service,
.why-card{
padding:24px;
border-radius:26px;
}

.service h3,
.stat h3,
.why-card h3{
font-size:24px;
}

.kontakt-cards{
grid-template-columns:1fr;
gap:16px;
margin-top:36px;
}

.kontakt-card{
padding:24px;
border-radius:26px;
gap:18px;
}

.kontakt-icon{
width:58px;
height:58px;
font-size:20px;
border-radius:18px;
}

.kontakt-card h3{
font-size:20px;
}

.kontakt-card p{
font-size:14px;
line-height:1.7;
}

iframe{
height:260px;
border-radius:24px;
margin-top:20px;
margin-bottom:-10px;
}

footer{
padding:42px 0 24px;
}

.footer-inner{
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
gap:30px;
}

.footer-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:14px;
}

.copy{
width:100%;
text-align:center;
margin-top:10px;
line-height:1.6;
}

.social-icons{
display:none;
}

.mobile-socials{
display:flex;
}

.cert-section{
padding:10px 0 0 !important;
}

.footer-cert{
margin-top:0;
padding:24px 20px;
border-radius:28px;
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.06);
backdrop-filter:blur(20px);
box-shadow:0 20px 60px rgba(0,0,0,0.25);

margin-bottom: 50px;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
gap:14px;
}

.cert-image{
width:150px;
margin-bottom:6px;
}

.footer-cert h4{
font-size:22px;
line-height:1.15;
margin-bottom:6px;
letter-spacing:-1px;
max-width:340px;
}

.footer-cert p{
font-size:15px;
line-height:1.8;
color:#8f8f8f;
max-width:320px;
margin:auto;
}

.gallery-filters{
gap:10px;
margin-top:30px;
margin-bottom:24px;
}

.filter-btn{
padding:12px 18px;
font-size:13px;
}

.projekti-gallery{
grid-template-columns:1fr;
}

.gallery-item{
border-radius:24px;
margin-bottom:16px;
}

.gallery-button-wrap{
margin-top:24px;
}

.lightbox{
padding:16px;
}

.lightbox img{
border-radius:18px;
}

.back-to-top{
right:18px;
bottom:18px;
width:52px;
height:52px;
font-size:16px;
}


.cookie-banner{

left:14px;
right:14px;
bottom:14px;

padding:18px;

border-radius:24px;

flex-direction:column;
align-items:flex-start;

gap:18px;

}

.cookie-content{
width:100%;
}

.cookie-content h3{

font-size:20px;

line-height:1.1;

margin-bottom:10px;

}

.cookie-content p{

font-size:14px;

line-height:1.7;

max-width:100%;

}

.cookie-links{

margin-top:12px;

}

.cookie-links a{

font-size:13px;

}

.cookie-actions{

width:100%;

display:flex;

gap:12px;

}

.cookie-btn{

flex:1;

height:52px;

padding:0 18px;

font-size:14px;

border-radius:999px;

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

}

}
