/* RESET */

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

html{
  scroll-behavior:smooth;
}

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

body{
  background:#080808;
  color:#fff;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  line-height:1.7;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(180,140,80,0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(120,120,120,0.08), transparent 30%);
  z-index:-2;
}

.container{
  width:min(1200px,90%);
  margin:auto;
}

/* HEADER */

header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  backdrop-filter:blur(18px);
  background:rgba(0,0,0,0.45);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  gap:20px;
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:16px;
  flex:1;
  min-width:0;
}

.logo-img{
  width:58px;
  height:58px;
  object-fit:contain;
  flex-shrink:0;
  filter:drop-shadow(0 0 12px rgba(212,176,122,0.15));
}

.logo-text{
  overflow:hidden;
}

.logo-text strong{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  letter-spacing:0.12em;
  color:#d4b07a;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  display:block;
}

/* MENU */

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

.menu a{
  color:white;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:0.85rem;
  position:relative;
  transition:0.35s ease;
}

.menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:1px;
  background:#d4b07a;
  transition:0.35s ease;
}

.menu a:hover{
  color:#d4b07a;
}

.menu a:hover::after{
  width:100%;
}

/* FACEBOOK */

.facebook-btn{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:#d4b07a;
  font-size:1.5rem;
  font-weight:700;
  transition:0.35s ease;
  flex-shrink:0;
}

.facebook-btn:hover{
  transform:translateY(-4px);
  background:#1877f2;
  border-color:#1877f2;
  color:white;
}

/* BUTTONS */

.call-btn{
  text-decoration:none;
  color:#fff;
  padding:14px 26px;
  border-radius:18px;
  background:linear-gradient(135deg,#a98857,#d4b07a);
  transition:0.4s ease;
  font-weight:500;
  box-shadow:0 10px 40px rgba(212,176,122,0.18);
}

.call-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 50px rgba(212,176,122,0.3);
}

.outline-btn{
  text-decoration:none;
  color:white;
  padding:14px 28px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.05);
  transition:0.4s ease;
}

.outline-btn:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,0.1);
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  text-align:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.82)),
    url('../service-support.webp') center/cover;

  transform:scale(1.05);
  animation:slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom{
  from{transform:scale(1.05)}
  to{transform:scale(1.12)}
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  animation:fadeUp 1.5s ease forwards;
max-width:900px;
  margin:auto;
}

.subtitle{
  color:#d4b07a;
  text-transform:uppercase;
  letter-spacing:0.45em;
  margin-bottom:24px;
  font-size:0.8rem;
}

.hero h1{
  letter-spacing:-0.03em;
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2rem,4vw,4rem);
  line-height:1.02;
  margin-bottom:28px;
  font-weight:600;
  text-wrap:balance;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:55px;
  flex-wrap:wrap;
}

/* SECTIONS */

section{
  padding:120px 0;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  display:block;
  color:#d4b07a;
  letter-spacing:0.4em;
  text-transform:uppercase;
  font-size:0.8rem;
  margin-bottom:20px;
}

.section-title h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,6vw,5rem);
  font-weight:600;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image{
  height:600px;
  border-radius:40px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.82) saturate(0.9);
  transition:1s ease;
}

.about-image:hover img{
  transform:scale(1.08);
}

.about-text h3{
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;
  margin-bottom:25px;
  color:#d4b07a;
}

.about-text p{
  color:rgba(255,255,255,0.72);
  margin-bottom:20px;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  cursor:pointer;
  position:relative;
  border-radius:32px;
  overflow:hidden;
  min-height:420px;
  border:1px solid rgba(255,255,255,0.06);
}

.service-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.75);
  transition:1.2s ease;
}

.service-card:hover img{
  transform:scale(1.08);
}

.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.45), rgba(0,0,0,0.15));
}

.service-content{
  position:absolute;
  bottom:0;
  z-index:2;
  padding:38px;
}

.service-content h3{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;
  margin-bottom:14px;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
}

.gallery-item{
  height:420px;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.8);
  transition:1s ease;
  cursor:pointer;
}

.gallery-item:hover img{
  transform:scale(1.08);
}
/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;

  width:100vw;
  height:100vh;

  background:rgba(0,0,0,0.96);

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

  overflow:hidden;

  z-index:999999999;

  padding:20px;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  width:auto;
  height:auto;

  max-width:88vw;
  max-height:82vh;

  object-fit:contain;

  border-radius:22px;

  box-shadow:0 20px 80px rgba(0,0,0,0.45);
}

.close-lightbox{
  position:absolute;
  top:16px;
  right:18px;

  font-size:2.5rem;
  color:white;
  cursor:pointer;

  z-index:20;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:56px;
  height:56px;

  border-radius:50%;

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

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

  backdrop-filter:blur(10px);

  color:white;

  font-size:1.6rem;

  cursor:pointer;

  z-index:20;
}

.lightbox-arrow.left{
  left:12px;
}

.lightbox-arrow.right{
  right:12px;
}
/* QUOTE SECTION */

.quote-section{
  position:relative;
  text-align:center;
  overflow:hidden;
}

.quote-bg{
  position:absolute;
  inset:0;

  background:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.88)),
    url('../griefing.webp') center/cover fixed;

  z-index:-1;
}

blockquote{
  font-family:'Cormorant Garamond',serif;

  font-size:clamp(2.5rem,5vw,4.5rem);

  line-height:1.2;

  max-width:1000px;

  margin:auto;

  color:#f2e6d5;
}
/* CONTACT */

.contact-box{
  border:1px solid rgba(255,255,255,0.08);
  border-radius:40px;
  background:rgba(255,255,255,0.03);
  padding:70px;
  backdrop-filter:blur(14px);
  text-align:center;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:35px;
  margin-top:50px;
}

/* PREMIUM CONTACT LINKS */

.contact-grid a:not(.social-btn){
  position:relative;
  color:rgba(255,255,255,0.88);
  text-decoration:none;
  font-weight:500;
  transition:color 0.35s ease;
}

.contact-grid a:not(.social-btn)::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:#d4b07a;
  transition:width 0.35s ease;
}

.contact-grid a:not(.social-btn):hover{
  color:#d4b07a;
}

.contact-grid a:not(.social-btn):hover::after{
  width:100%;
}

/* SOCIAL BUTTONS */

.social-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.social-btn{
  width:68px;
  height:68px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  color:white;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.social-btn:hover{
  transform:translateY(-6px);
}

.social-btn i{
  font-size:1.7rem;
}

.instagram-btn:hover{
  background:#E1306C;
  border-color:#E1306C;
  box-shadow:0 10px 35px rgba(225,48,108,0.35);
}

.whatsapp-btn:hover{
  background:#25D366;
  border-color:#25D366;
  box-shadow:0 10px 35px rgba(37,211,102,0.35);
}

.viber-btn:hover{
  background:#7360F2;
  border-color:#7360F2;
  box-shadow:0 10px 35px rgba(115,96,242,0.35);
}
/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(70px);
  transition:1.2s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}
/* LOGIN BUTTON */

.login-btn{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#a98857,#d4b07a);
  color:white;
  text-decoration:none;
  font-size:1.4rem;
  box-shadow:0 10px 35px rgba(212,176,122,0.35);
  z-index:9999;
  transition:0.35s ease;
}

.login-btn:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 15px 45px rgba(212,176,122,0.45);
}

/* FOOTER */

footer{
  padding:40px 0;
  text-align:center;
  color:rgba(255,255,255,0.45);
  border-top:1px solid rgba(255,255,255,0.06);
}

/* MOBILE */

@media(max-width:900px){

  .container{
    width:92%;
  }

  nav{
    padding:14px 0;
    gap:10px;
  }

  .logo-wrap{
    gap:10px;
    flex:1;
    overflow:hidden;
  }

  .logo-img{
    width:42px;
    height:42px;
  }

  .logo-text strong{
    font-size:1.15rem;
    letter-spacing:0.05em;
  }

  .hero{
    padding-top:120px;
  }

  .hero h1{
    font-size:2.9rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

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

  .about-grid,
  .services-grid,
  .gallery-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-box{
    padding:40px 24px;
  }

}




/* PREMIUM SOCIAL BUTTONS */

.social-btn{
  width:68px;
  height:68px;

  border-radius:22px;

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

  text-decoration:none;

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

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

  color:white;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.social-btn:hover{
  transform:translateY(-6px);
}

.social-btn i{
  font-size:1.7rem;
}

/* INSTAGRAM */

.instagram-btn:hover{
  background:#E1306C;
  border-color:#E1306C;

  box-shadow:0 10px 35px rgba(225,48,108,0.35);
}

/* WHATSAPP */

.whatsapp-btn:hover{
  background:#25D366;
  border-color:#25D366;

  box-shadow:0 10px 35px rgba(37,211,102,0.35);
}

/* VIBER */

.viber-btn:hover{
  background:#7360F2;
  border-color:#7360F2;

  box-shadow:0 10px 35px rgba(115,96,242,0.35);
}

/* MOBILE */

@media(max-width:900px){

  .container{
    width:92%;
  }

  nav{
    padding:14px 0;
    gap:10px;
  }

  .logo-wrap{
    gap:10px;
    flex:1;
    overflow:hidden;
  }

  .logo-img{
    width:42px;
    height:42px;
  }

  .logo-text strong{
    font-size:1.15rem;
    letter-spacing:0.05em;
  }

  .facebook-btn{
    width:42px;
    height:42px;
    font-size:1.2rem;
    border-radius:12px;
  }

  .menu{
    position:absolute;
    top:82px;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.96);
    border-radius:24px;
    padding:24px;
    display:none;
    flex-direction:column;
    gap:22px;
  }

  .menu.active{
    display:flex;
  }

  .hamburger{
    width:44px;
    height:44px;
    border-radius:14px;

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

    gap:5px;

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

    cursor:pointer;

    flex-shrink:0;
  }

  .hamburger span{
    width:20px;
    height:2px;
    background:#d4b07a;
  }

  .hero{
    padding-top:120px;
  }

  .hero h1{
  font-size:2.1rem;
  line-height:1.05;
}

  .subtitle{
    font-size:0.72rem;
    letter-spacing:0.3em;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:14px;
    margin-top:40px;
  }

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

  .about-grid,
  .services-grid,
  .gallery-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .about-image{
    height:420px;
  }

  .gallery-item{
    height:320px;
  }

  .contact-box{
    padding:40px 24px;
  }

  .social-links{
    justify-content:center;
  }

  .social-btn{
    width:58px;
    height:58px;
    border-radius:18px;
  }

  .social-btn i{
    font-size:1.4rem;
  }

  .login-btn{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
    font-size:1.2rem;
  }

  .lightbox{
    padding:10px;
  }

  .lightbox img{
    max-width:100%;
    max-height:74vh;
    border-radius:16px;
  }

  .lightbox-arrow{
    width:42px;
    height:42px;
    font-size:1.1rem;
  }

  .lightbox-arrow.left{
    left:4px;
  }

  .lightbox-arrow.right{
    right:4px;
  }

  .close-lightbox{
    top:8px;
    right:14px;
    font-size:2rem;
  }

  .service-content h3{
    font-size:1.9rem;
  }

  .service-content p{
    font-size:0.95rem;
    line-height:1.5;
  }

}