/* -----------------------------------------
   Contact Us Page Styles
----------------------------------------- */

.contact-page {
  background-color: #2B2936;
  /* Matching the specific dark tone in the image */
  color: var(--text-primary);
  overflow-x: hidden;
}

.contact-section {
  padding: 80px 0;
  background-color: #3E3D48;
}

/* Header sync for this page */
.contact-page .landing-nav-top,
.contact-page .landing-nav-bottom {
  background-color: #2B2936 !important;
}

/* Titles */
.contact-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form-box {
  background: transparent;
}

.form-group-custom {
  margin-bottom: 25px;
}

.form-group-custom label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  /* More subtle background as per design */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Phone Input Mock - Unified */
.phone-input-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phone-input-wrap:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.country-select {
  width: 90px;
  cursor: pointer;
  border: none !important;
  background: transparent !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  padding: 0 15px;
}

.phone-input-wrap input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
}

.phone-input-wrap input:focus {
  outline: none;
}

/* Checkbox */
.form-check-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  cursor: pointer;
}

.form-check-custom input {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.form-check-custom label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.btn-send-message {
  width: 100%;
  background: #7ECBD3;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-send-message:hover {
  background: #6DBAC2;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(126, 203, 211, 0.2);
}

/* Contact Details (Right side) */
.contact-details-box {
  padding-left: 50px;
}

.contact-info-block {
  margin-bottom: 40px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: #7ECBD3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1D1B26;
  margin-bottom: 20px;
}

.contact-info-block h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-link {
  color: #7ECBD3;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
  color: #7ECBD3;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-details-box {
    padding-left: 0;
    margin-top: 60px;
  }

  .contact-title {
    font-size: 36px;
  }
}