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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#061321;
    color:#fff;
}

.hero{
    min-height:100vh;
    position:relative;
    padding:32px 54px;
    overflow:hidden;
    background:
        linear-gradient(90deg, rgba(3,12,22,.15) 0%, rgba(5,16,28,.32) 38%, rgba(5,15,25,.18) 100%),
        linear-gradient(0deg, rgba(2,8,13,.3) 0%, rgba(2,8,13,0.1) 45%),
        url("images/cover_full.jpg") center bottom / cover no-repeat;
		background-size:2000px 1200px;
}

.nav{
    position:relative;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
width:170px;
 
}

.logo span{
    display:block;
    margin-top:9px;
    font-size:11px;
    font-weight:400;
    letter-spacing:2.5px;
}

.menu{
    display:flex;
    gap:42px;
}

.menu a{
    color:rgba(255,255,255,.8);
    text-decoration:none;
    font-size:14px;
    padding-bottom:13px;
}

.menu a.active{
    color:#fff;
    border-bottom:1px solid #fff;
}

.brochure{
    height:54px;
    padding:0 26px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.28);
    background:rgba(255,255,255,.04);
    color:#fff;
    display:flex;
    align-items:center;
    gap:14px;
    cursor:pointer;
}

.hero-content{
    position:relative;
    z-index:5;
 min-height:550px;
    display:flex;
    align-items:center;
	margin-top:210px;
 
}

.left{
 
}

.left h4{
    font-size:22px;
    font-weight:300;
    margin-bottom:10px;
}

 

.desc{
    margin-top:28px;
    width:275px;
    font-size:19px;
    line-height:1.65;
    color:rgba(255,255,255,.82);
}

.stats{
    margin-top:42px;
    display:grid;
    gap:28px;
}

.stat{
    display:flex;
    align-items:center;
    gap:18px;
}

.stat i{
    width:40px;
    font-size:31px;
    color:rgba(255,255,255,.9);
}

.stat strong{
    display:block;
    font-size:22px;
}

.stat span{
    font-size:14px;
    color:rgba(255,255,255,.75);
}

/* INTERAKTIVNI SPRATOVI */
.floor-lines{
    position:absolute;
    z-index:6;
    right:70px;
    top:210px;
    width:700px;
}

.floor{
    position:absolute;
    right:0;
    width:100%;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    cursor:pointer;
}

.floor::before{
    content:"";
    position:absolute;
    right:190px;
    left:0;
    height:2px;
    background:linear-gradient(90deg, rgba(60,150,255,.15), rgba(87,170,255,.9));
    box-shadow:0 0 16px rgba(74,157,255,.8);
    opacity:.75;
}

.floor::after{
    content:"";
    position:absolute;
    right:185px;
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid #9fd0ff;
    background:#0f2a45;
    box-shadow:0 0 15px rgba(90,170,255,.9);
}

.floor-label{
    width:175px;
    min-height:64px;
    padding:13px 18px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(15,30,45,.58);
    backdrop-filter:blur(14px);
    transition:.35s ease;
}

.floor-label strong{
    display:block;
    font-size:18px;
    margin-bottom:5px;
}

.floor-label span{
    font-size:13px;
    color:rgba(255,255,255,.78);
}

.floor:hover .floor-label,
.floor.active .floor-label{
    background:linear-gradient(135deg, rgba(20,120,255,.95), rgba(20,95,210,.88));
    border-color:rgba(150,210,255,.8);
    box-shadow:0 0 35px rgba(50,130,255,.55);
    transform:translateX(-8px);
}

.floor:hover::before,
.floor.active::before{
    opacity:1;

    height:3px;
}

.f6{ top:0; }
.f5{ top:82px; }
.f4{ top:164px; }
.f3{ top:246px; }
.f2{ top:328px; }
.f1{ top:410px; }
.f0{ top:492px; }

.info-bar{
    position:absolute;
    z-index:8;
    left:145px;
    bottom:70px;
    width:66%;
    max-width:1100px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:rgba(255,255,255,.11);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(20px);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.3);
}

.info{
    padding:25px 32px;
    border-right:1px solid rgba(255,255,255,.16);
}

.info:last-child{
    border-right:0;
}

.info i{
    font-size:26px;
    margin-bottom:12px;
}

.info h5{
    font-size:13px;
    margin-bottom:14px;
    font-weight:500;
}

.info p{
    color:rgba(255,255,255,.82);
    line-height:1.65;
    font-size:15px;
}

.down{
    position:absolute;
    z-index:9;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(8px);
}

@media(max-width:1200px){
    .floor-lines{
        right:25px;
        width:520px;
    }

    .info-bar{
        left:54px;
        width:75%;
    }
}

@media(max-width:900px){
    .hero{
        padding:24px;
    }

    .menu,
    .brochure{
        display:none;
    }

    .hero-content{
        align-items:flex-start;
        padding-top:70px;
    }

    .left h1{
        font-size:100px;
    }

    .floor-lines{
        position:relative;
        top:auto;
        right:auto;
        width:100%;
        margin-top:40px;
    }

    .floor{
        position:relative;
        top:auto !important;
        margin-bottom:12px;
    }

    .floor::before{
        display:none;
    }

    .floor::after{
        display:none;
    }

    .floor-label{
        width:100%;
    }

    .info-bar{
        position:relative;
        left:auto;
        bottom:auto;
        width:100%;
        margin-top:40px;
        grid-template-columns:1fr;
    }

    .info{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.16);
    }
}

.hero-title{
    font-size:90px;
    font-weight:700;
    line-height:74px;
    letter-spacing:-2px;
    color:rgba(255,255,255,0.8);
    margin:0 0 15px;
    text-shadow:0 10px 30px rgba(0,0,0,.35);
 
}


.hero-title2{
    font-size:63px;
    font-weight:700;
    line-height:74px;
    letter-spacing:-2px;
    color:#A47C3C;
    margin:0 0 15px;
    text-shadow:0 10px 30px rgba(0,0,0,.35);
 
}

.hero-subtitle{
    max-width:560px;
    font-size:20px;
    line-height:1.3;
    font-weight:300;
    color:rgba(255,255,255,.92);
    text-shadow:0 4px 15px rgba(0,0,0,.3);
}









.ms-section-about,
.ms-section-location{
  padding:80px 5%;
  background:#f7f9fc;
  font-family:Arial, sans-serif;
}

.ms-section-apartments{
  padding:80px 5%;
  background:linear-gradient(135deg,#07131d,#102333);
  color:#fff;
  font-family:Arial, sans-serif;
}

.ms-section-wrap{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:60px;
  align-items:center;
}

.ms-section-text span{
  color:#2f75bd;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
}

.ms-section-text h2{
  font-size:38px;
  line-height:1.15;
  margin:14px 0 22px;
  color:inherit;
}

.ms-section-text p{
  font-size:16px;
  line-height:1.8;
  color:rgba(20,30,40,.75);
}

.ms-section-apartments .ms-section-text p{
  color:rgba(255,255,255,.75);
}

.ms-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin:35px 0;
}

.ms-feature-grid div{
  padding:16px 18px;
  border:1px solid rgba(47,117,189,.2);
  border-radius:14px;
  background:rgba(255,255,255,.65);
  font-size:14px;
}

.ms-btn{
  display:inline-flex;
  padding:15px 28px;
  border:1px solid #2f75bd;
  border-radius:8px;
  color:#2f75bd;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
  transition:.3s;
}

.ms-btn:hover{
  background:#2f75bd;
  color:#fff;
}

.ms-btn.dark{
  color:#fff;
  border-color:rgba(255,255,255,.35);
}

.ms-section-image img,
.ms-map-box img{
  width:100%;
  border-radius:18px;
  display:block;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.ms-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.ms-flat-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:28px;
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(10px);
    transition:all .4s ease;
}

.ms-flat-card img{
    width:100%;
    transition:all .5s ease;
}

.ms-flat-card h3,
.ms-flat-card p,
.ms-flat-card a{
    transition:all .4s ease;
}

.ms-flat-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-150%;
    width:80%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transition:.8s;
}

.ms-flat-card:hover::before{
    left:150%;
}
/* Hover */

.ms-flat-card:hover{
    transform:translateY(-12px);
    border-color:rgba(76,145,255,.45);
    box-shadow:
    0 25px 50px rgba(0,0,0,.35),
    0 0 30px rgba(76,145,255,.15);
    background:rgba(255,255,255,.06);
}

.ms-flat-card:hover img{
    transform:scale(1.08) rotate(1deg);
}

.ms-flat-card:hover h3{
    color:#6ea8ff;
}

.ms-flat-card:hover a{
    color:#6ea8ff;
    padding-left:8px;
}

.ms-flat-card p{
  color:rgba(255,255,255,.7);
  font-size:14px;
}

.ms-flat-card a{
  color:#69a9e8;
  text-decoration:none;
  font-size:13px;
  text-transform:uppercase;
}

.ms-location-list{
  padding:0;
  margin:30px 0 0;
  list-style:none;
}

.ms-location-list li{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  font-size:15px;
}

.ms-location-list span{
  color:#2f75bd;
  font-weight:700;
}

.ms-brochure{
  max-width:1280px;
  margin:0 auto 70px;
  padding:34px 48px;
  border-radius:18px;
  background:linear-gradient(135deg,#0b2944,#123d63);
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:Arial, sans-serif;
}

.ms-brochure h2{
  margin:0 0 8px;
  font-size:28px;
}

.ms-brochure p{
  margin:0;
  color:rgba(255,255,255,.75);
}

.ms-brochure-btn{
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
  padding:16px 34px;
  border-radius:8px;
  text-decoration:none;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
}

@media(max-width:900px){
  .ms-section-wrap{
    grid-template-columns:1fr;
  }

  .ms-card-grid{
    grid-template-columns:1fr;
  }

  .ms-brochure{
    margin:0 5% 50px;
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
  }

  .ms-section-text h2{
    font-size:30px;
  }
}







.ms-footer{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,
    rgba(34,95,170,.25),
    transparent 40%),
    linear-gradient(135deg,#07131d,#0d2233);
    color:#fff;
    font-family:Arial,sans-serif;
}

.ms-footer-container{
    max-width:1280px;
    margin:auto;
    padding:80px 5%;
    display:grid;
    grid-template-columns:2fr 1fr 1fr ;
    gap:60px;
}

.ms-footer-logo{
    width:110px;
    margin-bottom:25px;
}

.ms-footer-about p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    max-width:340px;
}

.ms-footer-col h4{
    font-size:18px;
    margin-bottom:25px;
    color:#fff;
}

.ms-footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.ms-footer-col ul li{
    margin-bottom:14px;
    color:rgba(255,255,255,.75);
    line-height:1.6;
}

.ms-footer-col ul li i{
    width:20px;
    color:#A47C3C;
}

.ms-footer-col a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.ms-footer-col a:hover{
    color:#6da7e8;
}

.ms-footer-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.ms-footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    transition:.3s;
}

.ms-footer-social a:hover{
    transform:translateY(-3px);
    background:#2f75bd;
}

.ms-footer-bottom{
    max-width:1280px;
    margin:auto;
    padding:25px 5%;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:rgba(255,255,255,.55);
    font-size:14px;
}

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

.ms-footer-links a{
    color:rgba(255,255,255,.55);
    text-decoration:none;
}

.ms-footer-links a:hover{
    color:#fff;
}

@media(max-width:1000px){

    .ms-footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media(max-width:700px){

    .ms-footer-container{
        grid-template-columns:1fr;
    }

    .ms-footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}



.ms-info-bar{
    position:absolute;
    left:50%;
    bottom:40px;
    transform:translateX(-50%);

    width:1100px;
    max-width:90%;

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

    background:rgba(8,22,40,.55);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

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

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.ms-info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:30px;
    color:#fff;
    position:relative;
}

.ms-info-item:not(:last-child){
    border-right:1px solid rgba(255,255,255,.08);
}

.ms-info-icon{
    width:58px;
    height:58px;

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

    border-radius:16px;

    background:rgba(53,124,255,.12);
    border:1px solid rgba(53,124,255,.2);

    color:#A47C3C;
    font-size:24px;

    box-shadow:0 0 25px rgba(53,124,255,.15);
}

.ms-info-title{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:rgba(255,255,255,.65);
    margin-bottom:8px;
}

.ms-info-text{
    font-size:24px;
    font-weight:700;
    line-height:1.1;
}

.ms-info-sub{
    font-size:15px;
    color:rgba(255,255,255,.75);
    margin-top:4px;
}






.ms-top-header{
    position:absolute;
    top:38px;
    left:0;
    width:100%;
    z-index:50;
    display:flex;
    align-items:flex-start;
    padding:0 55px;
    box-sizing:border-box;
}

.ms-header-logo img{
    width:205px;
    display:block;
}

.ms-glass-menu{
    margin-left:auto;
    width:900px;
    max-width:60vw;
    height:60px;

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

    padding:0 24px 0 38px;
    box-sizing:border-box;

    border-radius:28px;

    background:rgba(7,17,30,.26);
    border:1px solid rgba(255,255,255,.13);

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

    box-shadow:
        0 18px 55px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.10);
}

.ms-glass-menu nav{
    display:flex;
    align-items:center;
    gap:42px;
}

.ms-glass-menu nav a{
    position:relative;
    color:rgba(255,255,255,.72);
    text-decoration:none;
    text-transform:uppercase;
    font-size:12px;
    font-weight:500;
    letter-spacing:.03em;
    padding:31px 0;
    transition:.3s ease;
}

.ms-glass-menu nav a:hover,
.ms-glass-menu nav a.active{
    color:#fff;
}

.ms-glass-menu nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:17px;
    width:100%;
    height:2px;
    border-radius:5px;
    background:#4f8cff;
    box-shadow:0 0 14px rgba(79,140,255,.9);
}

.ms-download-btn{
    height:50px;
    padding:0 22px;

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

    color:#fff;
    text-decoration:none;
    text-transform:uppercase;

    font-size:12px;
    font-weight:400;

    border-radius:18px;
    border:1px solid rgba(94,151,255,.45);
    background:rgba(12,31,58,.38);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.04),
        0 0 24px rgba(45,110,220,.12);

    transition:.35s ease;
}

.ms-download-btn:hover{
    background:rgba(55,120,240,.22);
    border-color:rgba(120,170,255,.75);
    transform:translateY(-2px);
}







.headlogo{width:140px !important;}







@media(max-width:1000px){
.hero-title{
    font-size:34px !important;
    font-weight:700;
    line-height:30px !important;
    letter-spacing:-2px;
    color:rgba(255,255,255,0.8);
    margin:0 0 15px;
    text-shadow:0 10px 30px rgba(0,0,0,.35);
 
}


 

.hero-title2{
  font-size:34px !important;
    font-weight:700;
    line-height:40px !important;
    letter-spacing:-2px;
  
    margin:0 0 15px;
    text-shadow:0 10px 30px rgba(0,0,0,.35);
 
}

.hero-subtitle{
    max-width:560px;
    font-size:14px;
    line-height:1.3;
    font-weight:300;
    color:rgba(255,255,255,.92);
    text-shadow:0 4px 15px rgba(0,0,0,.3);
}



.hero-content{
    position:relative;
    z-index:5;
 min-height:350px;
    display:flex;
    align-items:center;
	margin-top:60px;
 
}

.left{
 
}

.left h4{
    font-size:16px;
    font-weight:300;
    margin-bottom:10px;
}

 
 
.ms-top-header{
    position:absolute;
    top:18px;
    left:0;
    width:100%;
    z-index:50;
    display:flex;
    align-items:flex-start;
    padding:0 15px;
    box-sizing:border-box;
}

 
 
.headlogo{width:100px !important;  } 




.ms-info-bar{display:none;}









.hero{
    min-height:100vh;
    position:relative;
    padding:32px 54px;
    overflow:hidden;
    background:
        linear-gradient(90deg, rgba(3,12,22,.15) 0%, rgba(5,16,28,.32) 38%, rgba(5,15,25,.18) 100%),
        linear-gradient(0deg, rgba(2,8,13,.3) 0%, rgba(2,8,13,0.1) 45%),
        url("images/cover_mobil.jpg")  no-repeat;
		background-size:100% auto;
}







}
