.contact-us {
  background: #763111;
  width: 95%;
  margin: 12px auto 0 auto;
  color: #fff;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* left */

.contact-us-left {
  text-align: right;
}

.contact-us-title {
  font-size: 52px;
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  letter-spacing: 1px;
}

.contact-us-subtitle {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
  font-family: var(--font-secondary);
  letter-spacing: 1.5px;
}

/* divider */

.contact-us-divider {
  width: 1px;
  height: 200px;
  background: rgba(255, 255, 255, 0.6);
}

/* right */

.contact-us-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-us-label {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  font-family: var(--font-secondary);
  letter-spacing: 0.5px;
}

.contact-us-label {
  text-decoration: none;
}

.contact-us-item p {
  margin: 3px 0 0 0;
}

.contact-us-item a {
  color: white;
  text-decoration: none;
}


/*feedback form  */

/* MODAL BASE */

.feedback-modal-open{
	background: transparent;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-us-feedback-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

/* ACTIVE */
.contact-us-feedback-modal.active {
  visibility: visible;
  opacity: 1;
}

/* OVERLAY */
.contact-us-feedback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

/* BOX */
.contact-us-feedback-box {
  position: relative;
  z-index: 2;
  width: 420px;
  max-width: 90%;
  background: #f5f1eb;
  padding: 28px;
  border-radius: 10px;

  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

/* ANIMATION IN */
.contact-us-feedback-modal.active .contact-us-feedback-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* CLOSE BUTTON */
.contact-us-feedback-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

/* TITLE */
.contact-us-feedback-title {
  color: #7a2f12;
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-us-feedback-group {
  margin-bottom: 16px;
}

/* LABEL (FIXED VISIBILITY) */
.contact-us-feedback-label {
  display: block;
  margin-bottom: 6px;
  color: #4a2a1a; /* darker for readability */
  font-weight: 600;
  font-size: 12px;
}

/* INPUT */
.contact-us-feedback-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d8d9db;
  background: #fff;

  appearance: none;
  -webkit-appearance: none;
}

/* TEXTAREA */
.contact-us-feedback-textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #d8d9db;
  resize: none;
}

/* STARS */
.contact-us-feedback-stars {
  display: flex;
  gap: 6px;
  font-size: 24px;
  cursor: pointer;
}

.contact-us-feedback-stars span {
  color: #ccc;
  transition: 0.2s;
}

.contact-us-feedback-stars span.active {
  color: #7a2f12;
}

/* BUTTON */
.contact-us-feedback-submit {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #7a2f12;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}


/* responsive */

@media (max-width: 768px) {
  .contact-us-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-us-left {
    text-align: center;
  }

  .contact-us-divider {
    width: 160px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .contact-us {
    min-height: 400px;
  }

  .contact-us-title {
    font-size: 32px;
  }

  .contact-us-subtitle {
    font-size: 13px;
  }
}

/*****Sec - 2********/
.contact-us-2 {
  padding: 80px;
}

.contact-us-2-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.contact-us-2-header-left {
  font-size: 60px;
  font-weight: 700;
  color: #7b2f10;
  line-height: 1;
}

.contact-us-2-header-right {
  font-size: 60px;
  font-weight: 400;
  color: #7b2f10;
  line-height: 1;
  font-family: var(--font-secondary);
}

@media (max-width: 700px) {
	.contact-us-2-header-left,
	.contact-us-2-header-right {
		font-size: 50px;
	}
	
}

@media (max-width: 600px) {
  .contact-us-2-header {
    gap: 16px;
    text-align: center;
  }

  .contact-us-2-header-left,
  .contact-us-2-header-right {
    font-size: 32px;
  }

  .contact-us-2 {
    padding: 40px 10px;
  }
}
