* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Arial, sans-serif;
}

body {
  background: #f4f4f4;
}

/* ===== FULL WIDTH NAVBAR ===== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.97);
}

/* INNER WRAPPER */
.navbar-inner {
  max-width: 1400px;   /* controls stretch on big screens */
  margin: auto;
  padding: 14px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 55px;
}

.nav-logo span {
  color: #C8A951;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #C8A951;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
}

/* HOVER LINE */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #C8A951;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}

/* CONTACT BUTTON */
.nav-btn {
  background: linear-gradient(45deg,#C8A951,#f3d88f);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-btn::after {
  display: none;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #C8A951;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }
}

/* TITLE */
.page-title {
  text-align: center;
  color: #C8A951;
  margin: 50px 0;
  font-size: 2.8rem;
}

/* SERVICES */
.services-section {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #000;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(200,169,81,0.5);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-content h3 {
  color: #C8A951;
  margin-bottom: 10px;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}
