/* ===== Hero banner ===== */
.hero {
  position: relative;
  height: 320px;
  min-height: 200px;
  background: url('image-25.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 16px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.049);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Logo image above "Contact" */
.logo-img {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  object-fit: contain;
}

.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.breadcrumb {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 6px;
  color: #b08d3e;
}

/* ===== Get in touch section ===== */
.contact-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: #777;
  max-width: 650px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  font-size: 0.95rem;
  padding: 0 8px;
}

.contact-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #000000;
  stroke-width: 1.8;
}

.info-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form {
  flex: 1.4;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #333;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b08d3e;
}

.submit-btn {
  align-self: flex-start;
  background: #b08d3e;
  color: #fff;
  border: none;
  padding: 13px 34px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s ease;
}

.submit-btn:hover {
  background: #96772f;
}

.feature-bar {
  display: flex;
  height: 260px;
  max-width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #f7ede1;
  border-radius: 6px;
  padding: 25px 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  margin-top: 100px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
  padding: 10px 15px;
}

.feature-item svg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  stroke: #2b2b2b;
}

.feature-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #2b2b2b;
}

.feature-text p {
  margin: 0;
  font-size: 13px;
  color: #9a9a9a;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 700px) {
  .hero {
    height: auto;
    min-height: 220px;
    padding: 40px 16px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-section {
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .feature-bar {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 40px;
  }

  .feature-item {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 0 16px;
  }

  .contact-form,
  .contact-info {
    min-width: 100%;
  }

  .submit-btn {
    width: 100%;
    align-self: stretch;
    text-align: center;
  }

  .form-group textarea {
    height: 90px;
  }
}