/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

header {
  background: #fff;
  color: #222;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.logo img {
  height: 100px;
  width: 130px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link.active,
.nav-link:hover {
  color: #f7c873;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(34,34,34,0.7), rgba(34,34,34,0.7)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  max-width: 600px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #f7c873;
  color: #222;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #fff;
  color: #222;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #222;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  text-align: center;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 10px;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
}
.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: #f7f7f7;
}
.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #222;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}
.contact-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 500;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form textarea {
  height: 120px;
  resize: vertical;
}
.contact-form button {
  background: #f7c873;
  color: #222;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #e6b866;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services h2,
  .contact h2 {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .navbar {
    padding: 0.7rem 0;
  }
  .container {
    padding: 0 1rem;
  }
}