body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9fafc;
  color: #333;
}

.hero {
  background-image: url("images/napa-vineyard.png");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 60px 20px;
  background: white;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 320px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h2 {
  font-size: 1.5rem;
  margin: 16px 0 8px;
  color: #1e40af;
}

.service-card p {
  padding: 0 16px 20px;
  font-size: 1rem;
  color: #555;
}

.guarantee {
  background: #dbeafe;
  text-align: center;
  padding: 30px 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1d4ed8;
}

.locations {
  background: #f0f9ff;
  padding: 50px 20px;
  text-align: center;
}

.locations h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.locations p {
  font-size: 1rem;
  color: #444;
  margin: 8px 0;
}

.external-links {
  margin-top: 20px;
}

.external-button {
  background: #1d4ed8;
  color: white;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.external-button:hover {
  background: #1e40af;
}

.cta {
  background: #e0f2fe;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  color: #1d4ed8;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta .quote-form {
  max-width: 500px;
  margin: 30px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form label {
  font-weight: bold;
  color: #1e40af;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.quote-form button {
  background: #2563eb;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #1e40af;
}

.quote-button {
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.quote-button:hover {
  background: #1e40af;
}

footer {
  text-align: center;
  font-size: 0.875rem;
  padding: 20px;
  background: #f1f5f9;
  color: #555;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  background: #e0f2fe;
  padding: 60px 20px;
}

.map-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 80px; /* 👈 This moves the map down */
}

.form-content {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
}

.form-content h2 {
  font-size: 2rem;
  color: #1d4ed8;
  margin-bottom: 16px;
}

.form-content p {
  font-size: 1.1rem;
  color: #444;
  max-width: 600px;
  margin-bottom: 30px;
}
