:root {
  --primary: #caa227;
  --dark: #111827;
  --muted: #6c757d;
  --surface: #ffffff;
  --surface-soft: #f8f9fa;
  --border: #e9ecef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background: #fff;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.logo-img {
  width: 56px;
  height: auto;
  object-fit: contain;
}

.hero-section,
.page-hero {
  background: var(--surface-soft);
}

.page-hero .page-label,
.hero-copy .eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.hero-copy h1,
.page-hero h1,
.section-title h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead,
.page-text,
.page-intro {
  color: #444;
  max-width: 44rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title i {
  color: var(--primary);
}

.feature-card,
.service-card,
.info-card,
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.service-card:hover,
.info-card:hover,
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.feature-icon,
.service-icon,
.info-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(202, 162, 39, 0.12);
  color: var(--primary);
  font-size: 1.4rem;
}

.feature-card h5,
.service-card h5,
.info-card h5 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.feature-card p,
.service-card p,
.info-card p,
.page-text,
.contact-details p,
.contact-card p,
.about-panel p {
  color: #495057;
}

.site-footer {
  background: #111827;
  color: #f8f9fa;
}

.site-footer p {
  margin: 0;
  color: #ced4da;
}

.content-card {
  padding: 1.8rem;
}

.page-hero {
  padding: 4rem 0;
}

.page-hero .hero-image {
  text-align: center;
}

.page-hero .hero-image img {
  border-radius: 1rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.contact-section {
  padding: 4rem 0;
}

.contact-card {
  padding: 2rem;
}

.contact-details {
  gap: 1.25rem;
}

.contact-details .info-card {
  padding: 1.5rem;
}

.form-control,
.form-control:focus {
  border-color: var(--border);
  box-shadow: none;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #a67c00;
  border-color: #a67c00;
}

@media (max-width: 991.98px) {
  .hero-copy,
  .page-hero .hero-copy,
  .page-hero .page-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .navbar-nav {
    gap: 0.75rem;
  }

  .navbar-nav .nav-link {
    padding: 0.35rem 0;
  }
}
