* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #f26522;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
}

.nav a.active,
.nav a:hover {
  color: #f26522;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #333;
}

.hero {
  height: 92vh;
  background: url("hero-bg.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45));
}

.hero-content {
  position: relative;
  max-width: 900px;
  height: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #f26522;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #1a1a1a;
}

.services {
  background: #f8f9fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: center;
}

.service-card h3 {
  color: #f26522;
  margin-bottom: 15px;
}

.contact-form {
  max-width: 620px;
  margin: auto;
  display: grid;
  gap: 15px;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #f26522;
}

.contact-form button {
  background: #f26522;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e55a1f;
}

.form-message {
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  display: none;
  font-weight: 600;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
}

.contact-form .honeypot {
  display: none;
  visibility: hidden;
}

.footer {
  background: #0f0f0f;
  color: #aaa;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    border-bottom: 1px solid #eee;
  }

  .nav.open {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
