:root {
  --brand-dark: #1c2d59;
  --brand-accent: #f27b21;
}
* {
  font-family: Georgia, serif;
}

/* 
   Hero
 */
.contact-hero {
  position: relative;
  background: url("../img/newagency/contactus.jpeg") center/cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
}
.contact-hero__crumb {
  margin: 0 0 0.25rem;
  opacity: 0.85;
  font-size: 0.95rem;
}
.contact-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 2.4rem;
}

/* 
   Info 
 */
.contact-info-strip {
  background: #fff;
  padding: 2rem 0 2.25rem;
}
.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Icons */
.info-card__icon {
  min-width: 52px;
  height: 52px;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-accent);
}

.info-card__body h6 {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.info-card__body p {
  margin: 0;
  color: #444;
}

.info-card__link {
  color: #222;
  text-decoration: none;
  border: none;
}
.info-card__link:hover {
  color: var(--brand-accent);
}

/* 
   Form Section 
*/
.contact-form-section {
  background: #fff;
  padding: 2.75rem 0 3.25rem;
}
.contact-form__title {
  color: var(--brand-dark);
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-size: 2rem;
}
.contact-form__subtitle {
  color: #555;
  margin: 0;
  font-size: 0.95rem;
}

/* Inputs & Textarea */
.contact-input,
.contact-textarea {
  background: #fff;
  border: 1px solid #ccc;
  color: #000;
  border-radius: 6px;
  padding: 0.8rem 0.9rem;
}
.contact-textarea {
  min-height: 240px;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #777;
}
.contact-input:focus,
.contact-textarea:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--brand-accent);
  background: #fff;
  color: #000;
}

/* Submit Button */
.contact-submit {
  background: var(--brand-dark);
  border: none;
  color: #fff;
  border-radius: 6px;
  padding: 0.6rem 1.6rem;
  min-width: 140px;
}
.contact-submit:hover {
  background: var(--brand-accent);
  color: #fff;
}

/* 
   Consent Styles
 */
.consent-box {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 0.5rem;
}
.consent-label {
  color: #333;
  line-height: 1.5;
  font-size: 0.95rem;
}
.consent-label strong {
  color: var(--brand-dark);
}
.consent-label a {
  color: var(--brand-accent);
  text-decoration: underline;
}

.consent-check {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--brand-dark);
  border-radius: 4px;
  appearance: none;
  background: #fff;
  position: relative;
  cursor: pointer;
}

/* When checked */
.consent-check:checked {
  background-color: #1c2d59;
  border-color: #1c2d59;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.173 12.414 2.11 8.354l1.415-1.415L6.173 9.586l6.302-6.302 1.415 1.415z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem 0.8rem;
}

/* Focus outline */
.consent-check:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(28, 45, 89, 0.35);
}

.consent-error {
  display: none;
  margin-top: 0.5rem;
  color: var(--brand-accent);
  padding-left: 2.1rem;
  font-size: 0.9rem;
}
.consent-error.show {
  display: block;
}

/* 
   Modal 
*/
.modal-content {
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-dark-green {
  background-color: var(--brand-accent);
  color: #fff;
  border: none;
}
.btn-dark-green:hover {
  background-color: var(--brand-dark);
  color: #fff;
}

/* 
   Responsive 
*/
@media (max-width: 992px) {
  .contact-hero {
    min-height: 220px;
  }
  .contact-hero .container {
    padding: 2.25rem 1rem;
  }
  .contact-hero__title {
    font-size: 2rem;
  }
  .contact-textarea {
    min-height: 180px;
  }
}
