:root {
  --gold: #c9a24d;
  --gold-dark: #b18c3f;
  --dark: #1c1c1c;
  --light: #f5f6f7;
  --white: #ffffff;
  --muted: #666;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  color: #333;
  background: var(--white);
}

a {
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.navbar-brand img {
  height: 45px;
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
}

.nav-link {
  color: #444 !important;
  font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
  color: var(--gold) !important;
}

/* HERO */
.hero-section {
  padding: 120px 15px;
  background: linear-gradient(135deg, #fafafa, #eeeeee);
  text-align: center;
}

.hero-section img {
  max-width: 180px;
  margin-bottom: 25px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: auto;
}

/* BUTTON */
.btn-custom {
  background: var(--gold);
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 600;
  border: none;
}

.btn-custom:hover {
  background: var(--gold-dark);
}

/* SERVICES */
#services {
  background: var(--light);
}

section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

/* CONTACT */
.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  border: 1px solid #ddd;
}

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

/* FOOTER */
footer {
  background: #111;
  color: #bbb;
  padding: 40px 0;
}

footer img {
  max-width: 120px;
  margin-bottom: 12px;
}

footer a {
  color: var(--gold);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }
}