body{
      font-family: 'Montserrat', sans-serif;
      background:
        radial-gradient(circle at 10% 10%, rgba(181,154,90,0.08), transparent 35%),
        radial-gradient(circle at 90% 30%, rgba(0,0,0,0.04), transparent 40%),
        linear-gradient(180deg,#ffffff 0%,#f6f7f9 45%,#ffffff 100%);
      color:#222;
    }
    .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}
.popup-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 90%;
  width: 400px;
  transform: translate(-50%, -50%) perspective(800px) rotateX(0deg) scale(1);
  z-index: 9999;
  padding: 1.5rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}
.popup-alert:hover {
  transform: translate(-50%, -50%) perspective(800px) rotateX(8deg) scale(1.03);
}

.popup-success {
  background: #22C55E;
  color: white;
}

.popup-fail {
  background: #222;
  color: white;
}

.popup-warning {
  background: #ffc107;
  color: #000;
}

.popup-alert i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.popup-alert button {
  margin-top: 15px;
  background-color: white;
  color: #B59A5A;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.popup-alert button:hover {
  transform: scale(1.05);
}

/* Container Floating sosmed*/
.social-floating {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.social-floating ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-floating ul li {
  margin: 5px 0;
}

.social-floating ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #B59A5A; 
  color: white;
  text-decoration: none;
  border-radius: 5px 0 0 5px;
  transition: all 0.3s ease;
  font-size: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.social-floating ul li a:hover {
  background-color: #000000; 
  color: #d2b670;
  transform: translateX(-5px);
}
/* End social floating */


    .btn-gold{
      background:#B59A5A;
      color:#000;
      border:none;
      padding:12px 28px;
    }
    .btn-gold:hover{ background:#d2b670; }
    h1,h2,h3{ font-family: 'Playfair Display', serif; }
    .accent{ color:#B59A5A; }

    /* decorative line */
    .line-accent{
      width:80px;
      height:3px;
      background:#B59A5A;
      margin:20px 0;
    }

    /* floating shape */
    .shape{
      position:absolute;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(181,154,90,0.08);
      filter:blur(60px);
      z-index:0;
    }

    /* HEADER */
    .navbar{
      background:rgba(255,255,255,0.88);
      backdrop-filter: blur(8px);
      box-shadow:0 4px 20px rgba(0,0,0,0.05);
    }

    /* HERO */
    .hero-slide{ height:100vh; background-size:cover; background-position:center; }
    .carousel-item::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,0.25),rgba(0,0,0,0.45));
    }

    /* MITRA */
    /* Mitra */
    .marquee {
        width: 100%;
        overflow: hidden;
        background: #fff;
        padding: 20px 0;
        position: relative;
    }
    .marquee-track {
        display: flex;
        align-items: center;
        gap: 50px;
        width: max-content;
        animation: marquee 40s linear infinite;
        will-change: transform;
    }

    .marquee-track img {
        height: 80px;
        flex-shrink: 0;
        object-fit: contain;
    }

    .marquee:hover .marquee-track {
        animation-play-state: paused;
    }

    /* animasi */
    @keyframes marquee {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    /* PORTFOLIO */
    .portfolio img{
      width:100%; height:280px; object-fit:cover;
      filter:grayscale(100%);
      transition:.4s;
    }
    .portfolio img:hover{ filter:none; transform:scale(1.03); }

    /* About us pages */
    .page-header{
      padding:140px 0 100px;
      background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),url('images/header-about-us.jpg') center/cover no-repeat;
      color:#fff;
      text-align:center;
    }

    .why-box{
      background:#fff;
      padding:25px;
      border-radius:8px;
      box-shadow:0 10px 30px rgba(0,0,0,.06);
      height:100%;
    }
    .why-box h6{
      background:#2f3542;
      color:#fff;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:6px 12px;
      border-radius:4px;
      font-size:.9rem;
      margin-bottom:12px;
    }

    .strength-header{
      background:linear-gradient(120deg,rgba(0,0,0,.55),rgba(0,0,0,.35)),url('images/header-our-strength.jpg') center/cover no-repeat;
      color:#fff;
      padding:110px 0;
    }
    .strength-accent{
      position:absolute;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(181,154,90,0.35), rgba(181,154,90,0.05));
      top:-180px;
      right:-160px;
      filter:blur(40px);
    }
    .strength-card{
      background:#ffffff;
      padding:35px 28px;
      border-radius:14px;
      text-align:center;
      box-shadow:0 20px 40px rgba(0,0,0,0.08);
      height:100%;
      transition:.4s ease;
    }
    .strength-card i{
      font-size:2.2rem;
      color:#B59A5A;
      margin-bottom:18px;
    }
    .strength-card:hover{
      transform:translateY(-8px);
      box-shadow:0 28px 60px rgba(0,0,0,0.12);
    }

    .strength-item{
      padding:25px;
    }
    

    /* Our Services */
    .page-header-services{
      padding:140px 0 110px;
      background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
      url('images/services.jpg') center/cover no-repeat;
      color:#fff;
      text-align:center;
    }

    .service-card{
      background:#fff;
      padding:40px 30px;
      border-radius:16px;
      box-shadow:0 18px 40px rgba(0,0,0,.08);
      height:100%;
      transition:.4s ease;
    }
    .service-card:hover{
      transform:translateY(-8px);
      box-shadow:0 28px 60px rgba(0,0,0,.12);
    }
    .service-card i{
      font-size:2.4rem;
      color:#B59A5A;
      margin-bottom:18px;
    }

    .process-card{
      background:#fff;
      padding:35px 28px;
      border-radius:14px;
      box-shadow:0 18px 40px rgba(0,0,0,.08);
      height:100%;
    }

    /* Portfolio */
    .portfolio-hero{
      height:70vh;
      background:url('images/portfolio.jpg') center/cover no-repeat;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .portfolio-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.45);
    }
    .portfolio-hero h1{
      position:relative;
      color:#fff;
      font-size:3rem;
      letter-spacing:2px;
    }

    /* SECTION BG */
    .portfolio-section{
      background:
        radial-gradient(circle at 20% 20%, rgba(181,154,90,.15), transparent 40%),
        linear-gradient(180deg,#ffffff 0%,#f7f8fa 100%);
    }

    /* CARD */
    .portfolio-masonry{
      column-count:3;
      column-gap:1.5rem;
    }

    .portfolio-item{
      break-inside:avoid;
      margin-bottom:1.5rem;
    }

    .portfolio-card{
      position:relative;
      overflow:hidden;
      border-radius:18px;
      box-shadow:0 15px 40px rgba(0,0,0,.08);
      transition:.5s ease;
      background:#fff;
    }
    .portfolio-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.6s ease;
    }
    .portfolio-card:hover img{
      transform:scale(1.1);
    }

    .portfolio-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(0,0,0,.75),transparent 60%);
      display:flex;
      align-items:flex-end;
      padding:20px;
      opacity:1;
      transition:.5s ease;
    }
    .portfolio-card:hover .portfolio-overlay{
      opacity:1;
    }
    .portfolio-overlay h2{
      color:#fff;
      margin:0;
      font-size: 1.25rem;
      font-family: 'Montserrat', sans-serif;
    }
    .portfolio-overlay span{
      font-size:14px;
      color:#d9c17a;
    }



    /* contact */
    /* HERO */
    .contact-hero{
      height:55vh;
      background:url('https://images.unsplash.com/photo-1524758631624-e2822e304c36') center/cover no-repeat;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
    }
    .contact-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:rgba(0,0,0,.45);
    }
    .contact-hero h1,
    .contact-hero p{
      position:relative;
      color:#fff;
    }

    /* SECTION */
    .contact-section{
      background:
        radial-gradient(circle at 15% 20%, rgba(181,154,90,.15), transparent 40%),
        linear-gradient(180deg,#ffffff 0%,#f7f8fa 100%);
    }

    /* FORM */
    .form-control{
      border-radius:12px;
      padding:14px 16px;
    }

    /* CONTACT INFO */
    .contact-info{
      background:#fff;
      border-radius:18px;
      padding:34px 32px;
      box-shadow:0 20px 40px rgba(0,0,0,.08);
      position:relative;
      overflow:hidden;
    }
    .contact-info::before{
      content:'';
      position:absolute;
      width:200px;
      height:200px;
      background:radial-gradient(circle, rgba(181,154,90,.25), transparent 70%);
      top:-70px;
      right:-70px;
    }

    .info-divider{
      width:50px;
      height:3px;
      background:#b59a5a;
      border-radius:10px;
    }

    .info-item{
      background:#f7f8fa;
      border-radius:14px;
      padding:14px 16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition:.35s ease;
    }
    .info-item:hover{
      background:#fff;
      box-shadow:0 12px 28px rgba(0,0,0,.08);
    }

    .info-item i{
      width:42px;
      height:42px;
      background:rgba(181,154,90,.18);
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#b59a5a;
      font-size:18px;
      flex-shrink:0;
    }

    .social-icons a{
      width:42px;
      height:42px;
      background:#f1f2f4;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.3s ease;
      color:#2a2a2a;
      text-decoration: none;
    }
    .social-icons a:hover{
      background:#b59a5a;
      color:#fff;
    }
    .social-icons a:hover i{
      color:#fff;
    }
    .contact-info i{
      font-size:20px;
      color:#b59a5a;
    }

    footer{ background:#f5f6f8; }

    @media(min-width:992px){
      .menu-mobile {
        display:none !important;
      }
    }

    @media(max-width:998px){
        [data-aos="fade-left"],
        [data-aos="fade-right"] {
            transform: none !important;
            opacity: 1 !important;
        }
    }

    @media(max-width:768px){
        h1{ font-size:1.9rem; }
        h2{ font-size:1.4rem; }
        p{ font-size:0.95rem; }
        .shape{ display:none; }
        .hero-slide{ height:85vh; }
        .navbar{height:80px;}
        .navbar-brand img{ height:36px; }
        section{ padding-left:10px; padding-right:10px; }
        .portfolio img{ height:220px; }
        .portfolio-masonry{
          column-count:1;
        }
        .page-header-services{ padding:110px 20px 90px; }
        .portfolio-hero h1{
          font-size:2rem;
          text-align:center;
        }
        footer small{ font-size:0.85rem; }
    }
      .shape{ display:none; }