/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body { font-family: Arial, sans-serif; line-height:1.6; color:#333; background:#f9f9f9; }

/* Layout */
.container { width:90%; max-width:1200px; margin:auto; padding:40px 0; }

/* Hero Section with full-width image */
.hero {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ddd;
}

.hero nav {
  margin: 20px 0;
}

.hero nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero nav a:hover {
  color: #0fbf8f;
}

/* Buttons */
.btn-primary { display:inline-block; background:#0fbf8f; color:#fff; padding:12px 20px; border-radius:6px; text-decoration:none; font-weight:bold; }
.btn-primary:hover { background:#0aa37c; }

/* Services */
.grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:20px; }
.card { background:#fff; padding:20px; border-radius:8px; box-shadow:0 2px 6px rgba(0,0,0,0.1); }
.card h3 { margin-bottom:10px; }

/* About */
.about { background:#fff; padding:40px 0; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.contact-form input, .contact-form textarea { width:100%; padding:10px; margin-bottom:10px; border:1px solid #ccc; border-radius:6px; }
.contact-form button { width:100%; }
.map { margin-top:20px; }

/* Footer */
footer { background:#111; color:#ccc; text-align:center; padding:20px; margin-top:40px; }

/* Responsive */
@media(max-width:768px){
  .contact-grid { grid-template-columns:1fr; }
}