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

html{
  scroll-behavior:smooth;
}

body{
  background:#020817;
  color:white;
  font-family:Georgia, serif;
  letter-spacing:0.2px;
  text-rendering:optimizeLegibility;
}

h1,h2,h3{
  font-weight:500;
  letter-spacing:-1px;
}

.hero{
  height:100vh;
  background:url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(3,7,18,0.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-inner{
  gap:20px;
  max-width:1400px;
  margin:auto;
  padding:22px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{
  height:90px !important;
  width:auto !important;
  display:block !important;
  object-fit:contain !important;
}

.brand{
  min-width:260px;
  display:flex;
  align-items:center;
}

nav{
  display:flex;
  gap:40px;
}

nav a{
  color:white;
  text-decoration:none;
  font-size:16px;
  transition:0.3s;
  letter-spacing:0.5px;
}

nav a:hover{
  color:#caa15f;
  opacity:0.8;
}

.phone{
  color:#caa15f;
  font-size:18px;
}

.hero{
  position:relative;
  display:flex;
  align-items:center;
  padding-left:120px;
  min-height:110vh;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(2,8,23,0.92) 0%,
    rgba(2,8,23,0.78) 35%,
    rgba(2,8,23,0.35) 100%
  );
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:700px;
  padding-top:40px;
}

.hero-content h1{
  font-size:86px;
  line-height:1;
  margin-bottom:28px;
  letter-spacing:-2px;
  max-width:900px;
}

.hero-content p{
  font-size:21px;
  font-weight:300;
  line-height:1.8;
  color:#d7d7d7;
  margin-bottom:40px;
  max-width:700px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.hero-buttons a{
  padding:16px 30px;
  border-radius:999px;
  text-decoration:none;
  transition:0.3s;
  letter-spacing:0.5px;
  font-weight:600;
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.hero-buttons a:first-child{
  background:#caa15f;
  color:#020817;
}

.hero-buttons a:last-child{
  border:1px solid rgba(255,255,255,0.25);
  color:white;
}

.hero-buttons a:hover{
  transform:translateY(-4px);
  box-shadow:0 25px 45px rgba(0,0,0,0.35);
}

.hero{
  justify-content:space-between;
  padding-right:120px;
}

.hero-card{
  position:relative;
  z-index:5;
  width:380px;
  padding:50px;
  border-radius:30px;
  background:rgba(10,15,28,0.7);
  backdrop-filter:blur(18px);
  border:1px solid rgba(202,161,95,0.25);
  box-shadow:0 30px 80px rgba(0,0,0,0.45);
  margin-left:60px;
}

.card-icon{
  width:100px;
  height:100px;
  border-radius:24px;
  background:#caa15f;
  color:#020817;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  font-weight:bold;
  margin-bottom:30px;
}

.hero-card h2{
  font-size:36px;
  margin-bottom:18px;
}

.hero-card p{
  color:#d2d2d2;
  line-height:1.8;
  font-size:18px;
}

@media(max-width:1100px){

  .hero{
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:140px 40px 80px 40px;
    gap:50px;
  }

  .hero-content h1{
    font-size:58px;
  }

  .hero-card{
    width:100%;
    max-width:420px;
  }

  .nav-inner{
    flex-direction:column;
    gap:20px;
  }

  nav{
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
  }
}

@media(max-width:700px){

  .hero{
    padding:140px 24px 60px 24px;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-content p{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
    width:100%;
  }

  .hero-buttons a{
    text-align:center;
  }

  .brand{
    font-size:28px;
  }

  nav{
    display:none;
  }

  .phone{
    display:none;
  }

  .hero-card{
    padding:35px;
  }
}

.services{
  padding:140px 100px;
  background:#07111f;
}

.services-top{
  margin-bottom:60px;
}

.services-subtitle{
  color:#caa15f;
  letter-spacing:4px;
  font-size:14px;
  margin-bottom:20px;
}

.services-top h2{
  font-size:56px;
  max-width:700px;
}

.services-grid{
  align-items:stretch;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  box-shadow:0 20px 45px rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
  background:#0b1728;
  padding:40px;
  border-radius:32px;
  border:1px solid rgba(255,255,255,0.06);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.45);
  border-color:#caa15f;
}

.service-card h3{
  font-size:30px;
  letter-spacing:0.5px;
  margin-bottom:18px;
}

.service-card p{
  color:#d6d6d6;
  line-height:1.9;
  font-size:17px;  
}

@media(max-width:900px){

  .services{
    padding:80px 24px;
  }

  .services-top h2{
    font-size:38px;
  }

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

}

.about{
  padding:120px 80px;
  background:#020817;
}

.about-content{
  max-width:900px;
}

.about-subtitle{
  color:#caa15f;
  letter-spacing:4px;
  font-size:14px;
  margin-bottom:20px;
}

.about h2{
  font-size:58px;
  line-height:1.2;
  margin-bottom:30px;
}

.about p{
  font-size:20px;
  line-height:1.9;
  color:#d2d2d2;
  max-width:820px;
}

.page-hero{
  margin-top:90px;
  margin-bottom:70px;
}

.page-hero h1{
  font-size:72px;
  line-height:1;
}

.footer{
  padding:100px 24px 80px;
  text-align:center;
  background:#020817;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-logo{
  white-space:nowrap;
  font-size:34px;
  letter-spacing:3px;
  margin-bottom:20px;
}

.footer p{
  color:#cfcfcf;
  margin-bottom:24px;
  font-size:18px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.8;
}

.footer-copy{
  color:#8d8d8d;
  font-size:14px;
}

.menu-toggle{
  display:none;
  font-size:34px;
  color:white;
  cursor:pointer;
}

@media(max-width:700px){

  .menu-toggle{
    display:block;
  }

}

@media(max-width:700px){

  nav{
    position:absolute;
    top:100px;
    left:24px;
    right:24px;
    background:#08111f;
    border-radius:20px;
    padding:24px;
    flex-direction:column;
    gap:24px;
    display:none;
    border:1px solid rgba(255,255,255,0.08);
  }

  nav.mobile-nav{
    display:flex;
  }

}

.whatsapp-button{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;

  background:#25D366;
  color:white;

  width:72px;
  height:72px;

  border-radius:50%;

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

  text-decoration:none;
  font-weight:600;
  letter-spacing:0.5px;

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

  transition:0.3s;
}

.whatsapp-button:hover{
  transform:translateY(-5px) scale(1.05);
}

.contact-form{
  margin-top:60px;
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:700px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}

.contact-form input,
.contact-form textarea{
  background:#0b1728;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:20px;
  color:white;
  font-size:16px;
  outline:none;
  backdrop-filter:blur(8px);
}

.contact-form textarea{
  min-height:180px;
  resize:none;
}

.contact-form button{
  background:#caa15f;
  color:#020817;
  border:none;
  border-radius:999px;
  padding:18px;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
  letter-spacing:0.5px;
  box-shadow:0 15px 35px rgba(202,161,95,0.25);
}

.contact-form button:hover{
  transform:translateY(-4px);
  box-shadow:0 25px 45px rgba(202,161,95,0.35);
}

.map-box{
  margin-top:80px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
}

.map-box iframe{
  width:100%;
  height:500px;
  border:none;
}

.hero-content,
.hero-card,
.service-card,
.about-content{
  animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{

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

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

}

.blog-link{
  text-decoration:none;
  color:inherit;
}

.lang-switch{
  display:flex;
  align-items:center;
}

.lang-switch a{
  color:#caa15f;
  border:1px solid rgba(202,161,95,0.45);
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.lang-switch a:hover{
  background:#caa15f;
  color:#020817;
}

.form-success{
  background:#14532d;
  color:#dcfce7;
  padding:14px 18px;
  border-radius:12px;
  margin-bottom:20px;
  border:1px solid #22c55e;
}

.form-error{
  background:#7f1d1d;
  color:#fee2e2;
  padding:14px 18px;
  border-radius:12px;
  margin-bottom:20px;
  border:1px solid #ef4444;
}

.header-contact{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;

  font-size:14px;
  line-height:1.4;

  color:white;
}

.header-contact div:last-child{
  color:#caa15f;
  font-size:13px;
  opacity:0.85;
  letter-spacing:0.3px;
}

.header-contact div:first-child{
  font-size:14px;
  letter-spacing:0.4px;
}

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

.footer-links a{
  color:#caa15f;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.footer-links a:hover{
  opacity:0.8;
}

.blog-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

@media(max-width:768px){

  .nav-inner{
    padding:20px;
    flex-wrap:wrap;
    gap:20px;
  }

  nav{
    width:100%;
    display:none;
    flex-direction:column;
    gap:18px;
    padding-top:20px;
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .header-contact{
    display:none;
  }

  .hero{
    padding:140px 24px 80px;
    min-height:auto;
  }

  .hero-content h1{
    font-size:48px;
    line-height:1.1;
  }

  .hero-card{
    width:100%;
    margin-left:0;
    margin-top:40px;
    padding:32px;
  }

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

  .about-content{
    padding:0 24px;
  }

  .page-hero h1{
    font-size:42px;
  }

  .footer{
    padding:80px 24px 60px;
  }

}

@media(max-width:768px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .site-header{
    position:relative;
  }

  .nav-inner{
    width:100%;
    padding:14px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .menu-toggle{
    display:block;
    font-size:30px;
  }

  nav{
    width:100%;
    display:none;
    flex-direction:column;
    gap:16px;
    padding:18px 0 6px;
  }

  nav.active{
    display:flex;
  }

  .header-contact,
  .phone,
  .lang-switch{
    display:none;
  }

  .hero{
    width:100%;
    min-height:auto;
    padding:70px 20px 60px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
  }

  .hero-content{
    width:100%;
    max-width:100%;
    padding-top:0;
  }

  .hero-content h1{
    font-size:40px;
    line-height:1.12;
    letter-spacing:-1px;
  }

  .hero-content p{
    font-size:17px;
    line-height:1.7;
    max-width:100%;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
  }

  .hero-buttons a{
    width:100%;
    text-align:center;
  }

  .hero-card{
    width:100%;
    max-width:100%;
    margin-left:0;
    margin-top:32px;
    padding:28px;
  }

  .services,
  .about{
    width:100%;
    padding:70px 20px;
  }

  .services-grid{
    width:100%;
    grid-template-columns:1fr;
    gap:22px;
  }

  .service-card{
    width:100%;
    max-width:100%;
    padding:28px;
  }

  .page-hero{
    margin-top:40px;
    margin-bottom:45px;
  }

  .page-hero h1{
    font-size:38px;
    line-height:1.15;
    word-break:normal;
  }

  .about-content{
    width:100%;
    max-width:100%;
    padding:0;
  }

  .about h2{
    font-size:36px;
    line-height:1.2;
  }

  .about p,
  .service-card p{
    font-size:16px;
    line-height:1.75;
  }

  .footer-logo{
    white-space:normal;
    font-size:24px;
  }

  .whatsapp-button{
    width:60px;
    height:60px;
    right:16px;
    bottom:16px;
    font-size:12px;
  }

}

@media(max-width:768px){

  .site-header{
    position:relative;
    z-index:9999;
  }

  .hero{
    padding-top:40px;
  }

  .services,
  .about{
    padding-top:40px;
  }

  .nav-inner{
    position:relative;
  }

  nav.active{
    display:flex !important;
  }

}

@media(max-width:768px){

  .site-header{
    position:static !important;
    width:100% !important;
  }

  .hero,
  .services,
  .about{
    margin-top:0 !important;
    padding-top:45px !important;
  }

  .nav-inner{
    display:flex !important;
    flex-wrap:wrap !important;
  }

  .menu-toggle{
    display:block !important;
  }

  nav{
    display:none !important;
    width:100% !important;
  }

  nav.active{
    display:flex !important;
  }

}

@media(max-width:768px){

  .site-header{
    position:relative !important;
    z-index:99999 !important;
  }

  .nav-inner{
    position:relative !important;
  }

  .menu-toggle{
    display:block !important;
    z-index:100000 !important;
  }

  nav{
    position:absolute !important;
    top:100% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;

    background:#020817 !important;
    border:1px solid rgba(202,161,95,0.25);
    border-radius:0 0 22px 22px;

    padding:22px !important;
    display:none !important;
    flex-direction:column !important;
    gap:18px !important;

    z-index:99998 !important;
  }

  nav.active{
    display:flex !important;
  }

  nav a{
    display:block !important;
    padding:12px 0 !important;
  }

  .hero,
  .services,
  .about{
    padding-top:60px !important;
  }

}

@media(max-width:768px){

.hero{
  padding-top:165px !important;
}

.page-hero{
  padding-top:145px !important;
}

}

@media(max-width:768px){

  .lang-switch{
    display:flex !important;
    align-items:center;
  }

  .lang-switch a{
    display:inline-block !important;
    font-size:13px;
    padding:7px 11px;
  }

}

.hero-buttons a,
.hero-buttons a.primary-btn,
.hero-buttons a.secondary-btn,
.hero-buttons a:first-child,
.hero-buttons a:last-child{
  background:#caa15f !important;
  color:#020817 !important;
  border:1px solid #caa15f !important;
}

.hero-buttons a:hover,
.hero-buttons a.primary-btn:hover,
.hero-buttons a.secondary-btn:hover{
  background:#d7b06f !important;
  color:#020817 !important;
  border-color:#d7b06f !important;
}

@media(max-width:768px){

  .hero{
    padding-top:190px !important;
  }

  .page-hero{
    padding-top:165px !important;
  }

  .hero-buttons{
    gap:14px !important;
  }

  .hero-buttons a{
    width:100% !important;
    min-height:52px;
  }

}

@media(max-width:768px){

  .hero{
    padding-top:230px !important;
    padding-bottom:70px !important;
    align-items:flex-start !important;
  }

  .hero-content{
    margin-top:0 !important;
    padding-top:0 !important;
  }

  .hero-content h1{
    font-size:36px !important;
    line-height:1.18 !important;
    margin-top:0 !important;
    margin-bottom:22px !important;
  }

  .hero-content p{
    font-size:16px !important;
    line-height:1.7 !important;
  }

}

@media(max-width:768px){

  .hero-content{
    margin-top:80px !important;
  }

}

.form-mail-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:100%;
  padding:18px 24px;

  background:#caa15f;
  color:#020817;

  border-radius:16px;
  text-decoration:none;

  font-weight:600;
  transition:0.3s;
}

.form-mail-button:hover{
  transform:translateY(-2px);
  opacity:0.92;
}

.footer-social{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-social a{
  color:#caa15f;
  text-decoration:none;
  transition:0.3s;
  font-size:14px;
}

.footer-social a:hover{
  opacity:0.8;
}

.brand img{
  height:90px !important;
  width:auto !important;
  max-width:320px !important;
  display:block !important;
  object-fit:contain !important;
}

@media(max-width:768px){
  .brand img{
    height:64px !important;
    max-width:240px !important;
  }
}

/* RESTORE FIX - 2026-05-21
   Keep this as the very last block in style.css */

/* Hide the old right-side hero card on all pages */
.hero-card,
.card-icon{
  display:none !important;
}

/* Restore homepage hero spacing */
.hero{
  justify-content:flex-start !important;
}

/* Restore homepage buttons: first gold, second transparent */
.hero-buttons{
  display:flex !important;
  gap:20px !important;
}

.hero-buttons a:first-child{
  background:#caa15f !important;
  color:#020817 !important;
  border:1px solid #caa15f !important;
}

.hero-buttons a:last-child{
  background:transparent !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.25) !important;
}

/* Keep inner page heroes in their original text-only layout */
.page-hero{
  margin-top:90px !important;
  margin-bottom:70px !important;
  padding:0 !important;
  background:none !important;
  min-height:auto !important;
  height:auto !important;
  display:block !important;
}

.page-hero::before{
  display:none !important;
  content:none !important;
}

/* Final logo sizing */
.brand{
  display:flex !important;
  align-items:center !important;
  min-width:auto !important;
  flex-shrink:0 !important;
}

.brand img{
  height:84px !important;
  width:auto !important;
  max-width:340px !important;
  display:block !important;
  object-fit:contain !important;
}

@media(max-width:768px){
  .brand img{
    height:58px !important;
    max-width:230px !important;
  }

  .hero-buttons{
    flex-direction:column !important;
    width:100% !important;
  }

  .hero-buttons a{
    width:100% !important;
    text-align:center !important;
  }

  .page-hero{
    margin-top:40px !important;
    margin-bottom:45px !important;
    padding:0 24px !important;
  }
}

.hero-buttons a:last-child{
  background:#caa15f !important;
  color:#020817 !important;
  border:1px solid #caa15f !important;
}

.contact-hero{
  padding-top:180px !important;
}

@media(max-width:768px){
  .contact-hero{
    padding-top:150px !important;
  }
}

/* CONTACT HERO - FINAL */
.contact-hero{
  min-height:520px !important;
  padding:220px 100px 120px !important;
  margin:0 !important;

  background:
    linear-gradient(
      90deg,
      rgba(2,8,23,0.82),
      rgba(2,8,23,0.42)
    ),
    url("/assets/hero.jpg") center/cover no-repeat !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:center !important;
}

.contact-hero .hero-content,
.contact-hero .page-hero-subtitle,
.contact-hero h1{
  max-width:1200px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}

.contact-hero .page-hero-subtitle,
.contact-hero .services-subtitle{
  color:#caa15f;
  letter-spacing:4px;
  font-size:14px;
  margin-bottom:18px;
}

.contact-hero h1{
  font-size:58px;
  line-height:1.1;
}

@media(max-width:768px){
  .contact-hero{
    min-height:420px !important;
    padding:180px 24px 90px !important;
  }

  .contact-hero h1{
    font-size:38px;
  }
}

.contact-hero .hero-overlay{
  display:none !important;
}

/* MOBILE HOME HERO BUTTON FIX */
@media(max-width:768px){

  .hero-content{
    margin-top:0 !important;
  }

  .hero-content p{
    margin-bottom:28px !important;
  }

  .hero-buttons{
    position:relative !important;
    z-index:5 !important;
    margin-top:22px !important;
    display:flex !important;
    flex-direction:column !important;
    gap:14px !important;
  }

  .hero-buttons a{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:54px !important;
  }
}

/* PREMIUM FOOTER POLISH */
.footer{
  position:relative;
  overflow:hidden;
}

.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:140px;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    #caa15f,
    transparent
  );
  opacity:0.9;
}

.footer-logo{
  letter-spacing:4px;
  font-size:36px;
  margin-bottom:26px;
}

.footer p{
  opacity:0.88;
}

.footer-social a,
.footer-links a{
  position:relative;
}

.footer-social a::after,
.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:#caa15f;
  transition:0.3s;
}

.footer-social a:hover::after,
.footer-links a:hover::after{
  width:100%;
}

.footer-copy{
  margin-top:28px;
  opacity:0.75;
}

@media(max-width:768px){

  .footer{
    padding-top:90px;
  }

  .footer-logo{
    font-size:28px;
    line-height:1.3;
  }

}

/* PREMIUM MOBILE MENU POLISH */
@media(max-width:768px){

  nav.active{
    background:rgba(2,8,23,0.96) !important;
    backdrop-filter:blur(14px);
    border:1px solid rgba(202,161,95,0.22) !important;
    box-shadow:0 24px 60px rgba(0,0,0,0.45);
  }

  nav.active a{
    color:#ffffff !important;
    font-size:15px;
    letter-spacing:0.6px;
    border-bottom:1px solid rgba(255,255,255,0.06);
  }

  nav.active a:last-child{
    border-bottom:none;
  }

  .menu-toggle{
    color:#caa15f !important;
  }
}