/* ---------- BANNER SECTION ---------- */
.section-banner {
  background: linear-gradient(135deg, #001e14 0%, #003324 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.banner-container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.banner-text-container {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.banner-title {
  font-size: 5.2rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.banner-para {
  font-size: 2rem;
  color: #e9d9c0;
  line-height: 1.6;
}

/* ---------- INFO SECTION ---------- */
.section-info {
  padding: 8rem 4rem;
  background-color: #fafafa;
}

.info-container {
  max-width: 130rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.info-box {
  background-color: #fff;
  padding: 3.2rem 2.4rem;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-icon-wrapper {
  width: 5.2rem;
  height: 5.2rem;
  background-color: #e9d9c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.info-icon {
  width: 2.8rem;
  height: 2.8rem;
  stroke: #001e14;
}

.info-title {
  font-size: 2.4rem;
  color: #001e14;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.info-para {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.info-subpara {
  font-size: 1.4rem;
  color: #6b6b6b;
}

/* ---------- CONTACT SECTION ---------- */
.section-contact {
  padding: 8rem 4rem 8rem 4rem;
  background-color: #fff;
}

.contact-container {
  max-width: 130rem;
  margin: 0 auto;
}

.form-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  background-color: #fafafa;
  border-radius: 1.6rem;
  padding: 5.6rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.form-content {
  padding-right: 3.2rem;
}

.form-heading {
  font-size: 3.6rem;
  color: #001e14;
  margin-bottom: 3.2rem;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-label {
  font-size: 1.5rem;
  color: #001e14;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  padding: 1.4rem 1.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  color: #1a1a1a;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c89b3c;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0a0a0;
}

.form-textarea {
  resize: vertical;
  min-height: 15rem;
}

.form-btn {
  background: linear-gradient(135deg, #c89b3c 0%, #b38935 100%);
  color: #fff;
  padding: 1.6rem 3.2rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 155, 60, 0.4);
}

.form-btn:active {
  transform: translateY(0);
}

.form-response-text {
  font-size: 1.4rem;
  color: #6b6b6b;
  text-align: center;
  margin-top: 1.6rem;
  font-style: italic;
}

.visit-box {
  padding-left: 3.2rem;
  border-left: 2px solid #e0e0e0;
}

.visit-heading {
  font-size: 3.6rem;
  color: #001e14;
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.visit-para {
  font-size: 1.7rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.visit-info-grid {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.visit-info-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.visit-icon-wrapper {
  min-width: 4.6rem;
  height: 4.6rem;
  background: #b38935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-icon {
  width: 2.8rem;
  height: 2.8rem;
  stroke: #fff;
}

.visit-text {
  flex: 1;
}

.visit-subtitle {
  font-size: 2rem;
  color: #001e14;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.visit-description {
  font-size: 1.5rem;
  color: #6b6b6b;
  line-height: 1.6;
}

/* ---------- LOCATION SECTION ---------- */
.section-location {
  padding: 0 4rem;
  padding-bottom: 12rem;
  background-color: #fff;
}

.location-container {
  max-width: 60rem;
  margin: 0 auto;
}

.location-heading {
  font-size: 3.6rem;
  text-align: center;
  color: #001e14;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.location-para {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1.6rem;
  color: #585858;
  margin-bottom: 5.6rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3.2rem;
}

.location-box {
  background-color: #fafafa;
  border-radius: 1.6rem;
  padding: 3.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #c89b3c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.location-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.location-icon-wrapper {
  width: 6.4rem;
  height: 6.4rem;
  background: linear-gradient(135deg, #c89b3c 0%, #b38935 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.location-icon {
  width: 3.2rem;
  height: 3.2rem;
  stroke: #fff;
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.location-name {
  font-size: 2.4rem;
  color: #001e14;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.location-address {
  font-size: 1.6rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.location-hours,
.location-phone {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: #4a4a4a;
}

.location-info-icon {
  width: 2rem;
  height: 2rem;
  stroke: #c89b3c;
  flex-shrink: 0;
}

.location-map-btn {
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  background: linear-gradient(135deg, #c89b3c 0%, #b38935 100%);
  color: #fff;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(200, 155, 60, 0.3);
  text-align: center;
}

.location-map-btn:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.4);
}

.map-icon {
  width: 2rem;
  height: 2rem;
  stroke: #fff;
}
