:root {
  --soil-brown: #5a3721;
  --clay-orange: #8a4a1b;
  --beige: #f3efe0;
  --text-dark: #2e2e2e;
  --soft-gray: #f9f9f9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hero-static {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--soil-brown);
}

.hero-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-heading {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.hero-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-heading h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    padding: 1rem;
  }

  .hero-heading h1 {
    font-size: 2rem;
  }
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--beige);
  color: var(--text-dark);
}
 

    
/* Address and Map Section */
.address-map-section {
  padding: 60px 20px 20px;
  background-color: var(--beige);
}

.address-map-container {
  display: flex;
  align-items: center; /* Vertically center map */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.address-info {
  flex: 0 0 62%;
  padding-left: 10px; /* Slight left push */
}

.address-info h3 {
  color: var(--soil-brown);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.address-info a {
  color: var(--clay-orange);
  text-decoration: none;
  font-weight: 500;
}

.address-info a:hover {
  text-decoration: underline;
}

.address-map {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-map img {
  width: 105%;           /* Increase to 120% of its container */
  max-width: 100%;       /* Don't restrict the width */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.1); /* Optional: slight zoom */
}


/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.contact-form {
  flex: 1 1 700px;
  background: var(--beige);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--soil-brown);
}

.required-note {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row.full-width {
  flex-direction: column;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--soil-brown);
  font-size: 15px;
}

input,
select,
textarea {
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #c9b688;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay-orange);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.15);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 180px;
  padding: 14px;
  background-color: var(--soil-brown);
  color: #fff7ec;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: var(--clay-orange);
  transform: translateY(-2px);
}

