/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #111;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  padding: 100px 20px 80px;
  text-align: center;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

header .tagline {
  font-size: 1.2em;
  color: #f0c040;
}

/* Services */
#services {
  padding: 80px 20px;
  background: #fff;
}

#services h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #111;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-box {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-box h3 {
  margin-top: 15px;
  color: #111;
}

.service-box p {
  margin-bottom: 0;
  color: #555;
}

/* Accent Line under Service Titles */
.accent-line {
  width: 50px;
  height: 3px;
  background-color: #f0c040; /* golden accent */
  margin: 8px auto 15px;
  border-radius: 2px;
}

/* Service Icons */
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* Contact */
#contact {
  padding: 80px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

#contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #f0c040;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #e0b030;
}

/* Footer */
footer {
  padding: 30px 20px;
  text-align: center;
  background: #222;
  color: #fff;
}
