:root{
  --brand:#00008b;
  --bg:#000;
  --text:#fff;
  --card:#fff;
  --cardText:#000;
  --muted: rgba(255,255,255,.85);
  --max: 1100px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Frank Ruhl Libre", serif;
  color:#111;
  background:#f5f6fb;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Top nav */
.nav{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
}
.brand-mark{
  width:28px; height:28px; border-radius:6px;
  background:var(--brand);
  flex:0 0 auto;
}
.menu{display:flex; gap:16px; flex-wrap:wrap}
.menu a{
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  padding:6px 8px;
  border-radius:8px;
}
.menu a:hover{background:rgba(0,0,0,.05)}

/* Sections */
section{scroll-margin-top:80px}
.hero{
  min-height:75vh;
  position:relative;
  display:flex;
  align-items:center;
  text-align:center;
  color:var(--text);
  background:var(--bg);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55)),
    url("https://files.cdn-files-a.com/uploads/11576904/2000_gi-69696bfd70afe.jpg") center/cover no-repeat;
  transform:scale(1.02);
}
.hero .container{
  position:relative; z-index:1;
  padding:64px 18px;
}
.hero h1{
  margin:0 0 16px;
  font-size: clamp(34px, 5vw, 70px);
  line-height:1.05;
  font-weight:700;
}
.hero .line{
  width:120px; height:3px; background:#fff; margin:0 auto 18px;
  opacity:.9;
}
.hero h2{
  margin:0;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight:400;
  color:var(--muted);
}

.split{
  background:var(--brand);
  color:#fff;
  padding:70px 0;
}
.split-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:26px;
  align-items:center;
}
.split-img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  min-height:360px;
  background:
    url("https://files.cdn-files-a.com/uploads/11576904/2000_gi-69696bfe35b80.jpg") center/cover no-repeat;
}
.split h3{
  margin:0 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight:700;
}
.split .line{
  width:90px; height:3px; background:#fff; margin:0 0 16px; opacity:.9;
}
.split p{
  margin:0;
  font-size:18px;
  line-height:1.65;
  color:rgba(255,255,255,.9);
}

.parallax{
  position:relative;
  min-height:65vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:#000;
  overflow:hidden;
}
.parallax::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("https://files.cdn-files-a.com/uploads/11576904/2000_gi-69696bfed87a9.jpg") center/cover no-repeat;
  background-attachment: fixed; /* pe mobil e dezactivat mai jos */
  transform:scale(1.02);
}
.parallax .container{position:relative; z-index:1}
.parallax .box{
  max-width:720px;
  margin-left:auto;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
  backdrop-filter: blur(4px);
}
.parallax h3{
  margin:0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight:700;
}
.parallax .line{
  width:90px; height:3px; background:#fff; margin:0 0 14px; opacity:.9;
}
.parallax p{
  margin:0;
  font-size:20px;
  color:rgba(255,255,255,.92);
}

.services{
  background:var(--brand);
  padding:70px 0;
  color:#fff;
}
.section-title{
  text-align:center;
  margin:0 0 24px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight:700;
}
.section-hr{
  width:80px; height:3px; background:#fff; opacity:.9;
  margin:0 auto 28px;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:var(--card);
  color:var(--cardText);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  min-height:320px;
}
.card .img{
  height:200px;
  background:center/cover no-repeat;
}
.card .body{padding:18px}
.card h4{
  margin:0 0 8px;
  font-size:20px;
  font-weight:700;
}
.card p{
  margin:0;
  font-size:16px;
  line-height:1.55;
  color:rgba(0,0,0,.75);
}

.contact{
  padding:70px 0;
  background:#fff;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:22px;
  align-items:start;
}
.contact-box{
  padding:16px 0;
  text-align:center;
}
.contact-list{
  list-style:none; padding:0; margin:0;
  display:grid; gap:10px;
  font-size:18px;
}
.contact-list a{ text-decoration:none }
.contact-list a:hover{ text-decoration:underline }

/* Contact title colors */
.contact-title{color:#111}
.contact-hr{background:rgba(0,0,0,.15)}

/* Google Maps embed */
.map{
  background:#f5f6fb;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.map-wrap{
  position:relative;
  width:100%;
  padding-top: 62.5%;
  background:#f5f6fb;
}
.map-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.map-note{
  padding:12px 14px;
  font-size:14px;
  color:rgba(0,0,0,.70);
  border-top:1px solid rgba(0,0,0,.08);
  background:#fff;
}

footer{
  background:#010132;
  color:#fff;
  padding:26px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-name{font-weight:700}
.footer-copy{opacity:.9}
.footer-menu{display:flex; gap:14px; flex-wrap:wrap}
.footer-menu a{color:#fff; text-decoration:none}
.footer-menu a:hover{text-decoration:underline}

/* Go top */
.toTop{
  position:fixed;
  right:16px; bottom:16px;
  width:44px; height:44px;
  border-radius:12px;
  border:0;
  background:var(--brand);
  color:#fff;
  cursor:pointer;
  display:none;
  box-shadow:var(--shadow);
  font-weight:900;
  font-size:18px;
}

/* Responsive */
@media (max-width: 920px){
  .split-grid{grid-template-columns:1fr}
  .parallax .box{margin:0}
  .cards{grid-template-columns:1fr; max-width:560px; margin:0 auto}
  .contact-grid{grid-template-columns:1fr}
  .parallax::before{background-attachment: scroll;}
}
