/* ================================
   TOP CONTACT BAR
================================ */
.top-bar {
  background: #3a3a3a;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.top-bar-inner {
  width: 95%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  color: #ffffff;
  font-size: 13px;
}

.top-bar-inner i {
  margin-right: 6px;
  font-size: 14px;
}

.top-bar-inner span:hover {
  color: #d4af37; /* Gold hover */
  cursor: pointer;
  transition: 0.3s ease;
}

.top-bar .social-icons a i {
  color: #ffffff !important;  /* Make icons white */
  font-size: 18px;
  margin-left: 10px;
  transition: 0.3s ease-in-out;
}

.top-bar .social-icons a i:hover {
  color: #ffcc00 !important; /* Gold highlight on hover */
  transform: scale(1.2);
}


/* Mobile Top Bar */
@media(max-width: 768px){
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}


/* ================================
   HEADER SECTION
================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
  padding: 12px 0;
}

.header-inner {
  width: 95%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.brand .logo {
  height: 60px;
  transition: 0.2s;
}

.brand .logo:hover {
  transform: scale(1.05);
}


/* ================================
   NAV MENU (Desktop)
================================ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  color: #303030;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.site-nav a:hover {
  color: #d4af37;
}

/* Animated gold underline */
.site-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d4af37;
  border-radius: 50px;
}


/* ================================
   MOBILE MENU
================================ */
.mobile-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

/* When screen is mobile */
@media(max-width: 768px) {

  .mobile-toggle {
    display: block;
  }

  .site-nav {
    display: none; /* hidden default */
    position: absolute;
    right: 15px;
    top: 120px;
    width: 220px;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.15);
    z-index: 99999;
  }

  .site-nav a {
    margin: 10px 0;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Show menu when toggled (JS adds this class) */
.site-nav.active {
  display: flex ;
}



