    nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;height:108px;
  background:rgba(20,20,20,0.97);
  border-bottom:1px solid rgba(201,168,76,0.25);
  backdrop-filter:blur(12px);
  transition:all 0.3s;
}
.nav-brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;
}
.nav-brand-logo{
  margin-top:15px;
  margin-bottom: 10px;
  width:118px;height:88px;border-radius:6px;
  object-fit:contain;
  background:transparent;
  flex-shrink:0;
}

.nav-logo{
  font-family:'Playfair Display',serif;
  font-size:1.4rem;font-weight:900;
  color:var(--gold);
  letter-spacing:1px;
  line-height:1;
  display:block;
}
.nav-logo span{
  display:block;
  font-family:'Rajdhani',sans-serif;
  font-size:15px;font-weight:600;
  letter-spacing:3.5px;color:var(--text-muted);
  text-transform:uppercase;margin-top:2px;
}
.nav-links{display:flex;gap:2rem;list-style:none;}
.nav-links a{
  font-family:'Rajdhani',sans-serif;
  font-size:0.93rem;font-weight:600;letter-spacing:2px;
  text-transform:uppercase;color:var(--off-white);
  text-decoration:none;transition:color 0.2s;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;height:1px;
  background:var(--gold);transform:scaleX(0);transition:transform 0.3s;
}
.nav-links a:hover{color:var(--gold);}
.nav-links a:hover::after{transform:scaleX(1);}
.nav-cta{
  background:var(--gold);color:var(--charcoal);
  font-family:'Rajdhani',sans-serif;font-size:0.85rem;font-weight:700;
  letter-spacing:2px;text-transform:uppercase;
  padding:10px 22px;border-radius:2px;
  text-decoration:none;transition:background 0.2s,transform 0.2s;
}
.nav-cta:hover{background:var(--gold-light);transform:translateY(-1px);}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background: transparent;
  border: none;
  outline: none;}
.hamburger span{display:block;width:26px;height:2px;background:var(--gold);}
/* ✅ MOBILE HEADER CLEAN FIX */
#navbar {
  width: 100%;
}
/*footer*/
footer{background:#0e0e0e;border-top:1px solid var(--charcoal-border);padding:50px 5% 30px;}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;padding-bottom:2.5rem;border-bottom:1px solid var(--charcoal-border);margin-bottom:2rem;}
.footer-logo{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:900;color:var(--gold);display:block;margin-bottom:0.3rem;}
.footer-tagline{font-family:'Rajdhani',sans-serif;font-size:0.75rem;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:var(--text-muted);margin-bottom:1rem;}
.footer-desc{font-size:0.9rem;line-height:1.8;color:var(--text-muted);max-width:300px;}
.footer-col-title{font-family:'Rajdhani',sans-serif;font-size:0.8rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:1.2rem;}
.footer-links{display:flex;flex-direction:column;gap:0.6rem;list-style:none;}
.footer-links a{font-size:0.9rem;color:var(--text-muted);text-decoration:none;transition:color 0.2s;}
.footer-links a:hover{color:var(--gold);}
.footer-bottom{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;font-size:0.85rem;color:var(--text-muted);flex-wrap:wrap;gap:0.5rem;}
.footer-bottom span{color:var(--gold);}

/*floating-buttons*/
.float-phone{
  position:fixed;left:22px;bottom:30px;z-index:999;width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,#1a73e8,#0d47a1);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(26,115,232,0.5);text-decoration:none;
  transition:transform 0.3s,box-shadow 0.3s;animation:floatIn 1s 1s ease both;
}
.float-phone:hover{transform:scale(1.12);box-shadow:0 8px 30px rgba(26,115,232,0.7);}
.float-wa{
  position:fixed;right:22px;bottom:30px;z-index:999;width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,#25d366,#128c7e);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.5);text-decoration:none;
  transition:transform 0.3s,box-shadow 0.3s;animation:floatIn 1s 1.2s ease both;
}
.float-wa:hover{transform:scale(1.12);box-shadow:0 8px 30px rgba(37,211,102,0.7);}
.float-phone svg,.float-wa svg{width:26px;height:26px;fill:#fff;}
@keyframes floatIn{from{opacity:0;transform:scale(0.5);}to{opacity:1;transform:scale(1);}}
.float-label{
  position:absolute;background:rgba(20,20,20,0.92);color:#fff;
  font-family:'Rajdhani',sans-serif;font-size:0.75rem;font-weight:600;letter-spacing:1px;
  padding:5px 10px;border-radius:3px;white-space:nowrap;bottom:110%;opacity:0;pointer-events:none;transition:opacity 0.2s;
}
.float-phone:hover .float-label,.float-wa:hover .float-label{opacity:1;}

/* ─── SCROLL TO TOP ─── */
/* ─── SCROLL TO TOP ─── */
#scrollTop {
  position: fixed !important;
  right: 22px !important;
  bottom: 105px !important;
  z-index: 99999 !important;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 18px rgba(201,168,76,0.45);
}

#scrollTop.show {
  display: flex !important;
}

#scrollTop:hover {
  transform: translateY(-3px);
}
/* Hide mobile menu by default */
.mobile-menu {
  display: none;
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(20, 20, 20, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 18px 5%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Show menu when JS adds inline display:block OR class */
.mobile-menu.is-open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu li:last-child {
  border-bottom: none;
  padding-top: 12px;
}

.mobile-menu a {
  display: block;
  width: 100%;
  padding: 13px 0;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5f0e8;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-call-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  background: #C9A84C;
  color: #1a1a1a !important;
  padding: 11px 18px !important;
  border-radius: 3px;
  font-weight: 800 !important;
}

/*image carousel*/
/* ===== FEATURED PROJECT CAROUSEL ===== */
.eme-project-carousel {
  background: #151515;
  padding: 80px 5%;
  color: var(--off-white);
  overflow: hidden;
}

.eme-carousel-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.eme-carousel-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.eme-carousel-kicker {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.eme-carousel-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.eme-carousel-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.eme-carousel-box {
  position: relative;
}

.eme-carousel-viewport {
  overflow: hidden;
  border-radius: 10px;
}

.eme-carousel-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.eme-carousel-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  position: relative;
}

.eme-carousel-slide img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--charcoal-mid);
}

.eme-slide-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  padding: 45px 16px 15px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eme-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(20, 20, 20, 0.85);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.eme-carousel-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.eme-carousel-prev {
  left: -20px;
}

.eme-carousel-next {
  right: -20px;
}

.eme-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.eme-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(201, 168, 76, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.eme-carousel-dot.active {
  width: 28px;
  border-radius: 20px;
  background: var(--gold);
}

/* Mobile View */
@media (max-width: 900px) {
  .eme-carousel-slide {
    flex: 0 0 50%;
  }

  .eme-carousel-slide img {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .eme-project-carousel {
    padding: 60px 5%;
  }

  .eme-carousel-header {
    margin-bottom: 28px;
  }

  .eme-carousel-kicker {
    font-size: 0.68rem;
    letter-spacing: 3px;
  }

  .eme-carousel-header h2 {
    font-size: 1.9rem;
  }

  .eme-carousel-header p {
    font-size: 0.92rem;
  }

  .eme-carousel-slide {
    flex: 0 0 100%;
    padding: 0 4px;
  }

  .eme-carousel-slide img {
    height: 240px;
  }

  .eme-slide-caption {
    left: 14px;
    right: 14px;
    font-size: 0.78rem;
    letter-spacing: 1.3px;
  }

  .eme-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .eme-carousel-prev {
    left: 4px;
  }

  .eme-carousel-next {
    right: 4px;
  }
}

/* Mobile header height adjustment */
@media (max-width: 768px) {
  nav {
    height: 78px !important;
    padding: 0 4% !important;
  }

  .nav-brand {
    gap: 8px;
    max-width: calc(100% - 54px);
  }

  .nav-brand-logo {
    width: 72px !important;
    height: 54px !important;
    margin: 0 !important;
  }

  .nav-logo {
    font-size: 0.95rem !important;
    line-height: 1.05 !important;
  }

  .nav-logo span {
    font-size: 8px !important;
    letter-spacing: 1.4px !important;
    line-height: 1.2 !important;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    outline: none;
    flex-shrink: 0;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
  }

  .mobile-menu {
    top: 78px !important;
  }

  .hero-content {
    padding: 115px 5% 60px !important;
  }
  .footer-inner{grid-template-columns:1fr;}
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}