* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.page-hero {
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.hero-label {
  display: inline-block;
  color: #d4a24c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.page-hero p {
  max-width: 760px;
  margin: auto;
  color: #ddd;
  font-size: 17px;
}

/* COMMON */
.contact-info-section,
.contact-form-section,
.office-section,
.contact-cta-section {
  padding: 80px 0;
}

.contact-info-section,
.office-section {
  background: #f8f8f8;
}

.contact-form-section {
  background: #fff;
}

.contact-cta-section {
  background: #d4a24c;
  color: #fff;
  text-align: center;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #111;
}

.section-heading p {
  font-size: 16px;
  color: #666;
}

.section-tag {
  display: inline-block;
  color: #d4a24c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* CONTACT INFO */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #efefef;
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.12);
  color: #d4a24c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.info-card p,
.info-card a {
  color: #666;
  font-size: 15px;
}

/* CONTACT FORM */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-form-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-form-content p {
  color: #666;
  font-size: 16px;
}

.contact-form-box {
  background: #f8f8f8;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid #ededed;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  outline: none;
  background: #fff;
}

.contact-form-box textarea {
  margin-bottom: 18px;
  resize: none;
}

.contact-form-box button {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* OFFICE */
.office-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid #ededed;
}

.office-text {
  padding: 35px 28px;
}

.office-text h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.office-text p {
  color: #666;
  margin-bottom: 10px;
  font-size: 15px;
}

.office-btn {
  display: inline-block;
  margin-top: 18px;
  background: #d4a24c;
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.office-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.office-map {
  min-height: 320px;
}

/* CTA */
.contact-cta-box {
  max-width: 850px;
  margin: auto;
}

.cta-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.contact-cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-cta-box p {
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .office-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 70px 20px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .section-heading h2,
  .contact-form-content h2,
  .contact-cta-box h2,
  .office-text h3 {
    font-size: 28px;
  }

  .section-heading p,
  .contact-form-content p,
  .contact-cta-box p {
    font-size: 15px;
  }

  .contact-info-section,
  .contact-form-section,
  .office-section,
  .contact-cta-section {
    padding: 60px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .office-map {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .hero-label {
    font-size: 12px;
  }

  .info-card h3 {
    font-size: 20px;
  }
}
