/* ============================================================
   contact.css — Contact Page Styles
   ============================================================ */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.ct-hero {
  background: #0d2b2b;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,158,96,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.ct-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00c070;
  margin-bottom: 1rem;
}

.ct-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.ct-hero-title span { color: #00c070; }

.ct-hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.72;
}

/* ----------------------------------------------------------
   MAIN CONTACT SECTION
   ---------------------------------------------------------- */
.ct-section {
  padding: 5.5rem 1.5rem;
  background: #f2ede0;
}

.ct-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

/* ----------------------------------------------------------
   CONTACT INFO COLUMN
   ---------------------------------------------------------- */
.ct-info-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.7rem;
}

.ct-info-rule {
  width: 44px;
  height: 3px;
  background: #009e60;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.ct-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.ct-info-text {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.ct-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.ct-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ct-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0,158,96,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-detail-icon svg {
  width: 18px;
  height: 18px;
  color: #009e60;
}

.ct-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.2rem;
}

.ct-detail-value {
  font-size: 0.9rem;
  color: #0d2b2b;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.ct-detail-value:hover { color: #009e60; }

.ct-office-card {
  background: #0d2b2b;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.ct-office-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(0,192,112,0.18) 0%, transparent 70%);
}

.ct-office-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00c070;
  margin-bottom: 0.5rem;
}

.ct-office-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.ct-office-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}

.ct-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,158,96,0.1);
  border: 1px solid rgba(0,158,96,0.25);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #009e60;
}

.ct-response-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c070;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ----------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------- */
.ct-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  border: 1px solid #e0dbd0;
}

.ct-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d2b2b;
  margin-bottom: 0.4rem;
}

.ct-form-subtitle {
  font-size: 0.88rem;
  color: #5a5a5a;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ct-form-group {
  margin-bottom: 1rem;
  position: relative;
}

.ct-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0d2b2b;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid #e0dbd0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0d2b2b;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
  border-color: #009e60;
  box-shadow: 0 0 0 3px rgba(0,158,96,0.1);
}

.ct-form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.ct-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.ct-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #009e60;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 25px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  margin-top: 0.5rem;
  font-family: inherit;
}

.ct-form-submit:hover {
  background: #00c070;
  color: #0d2b2b;
  box-shadow: 0 6px 22px rgba(0,192,112,0.38);
  transform: translateY(-2px);
}

.ct-form-note {
  font-size: 0.75rem;
  color: #5a5a5a;
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.55;
}

.ct-form-note a {
  color: #009e60;
  text-decoration: none;
}

.ct-form-note a:hover { text-decoration: underline; }

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .ct-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-section {
    padding: 3.5rem 1.5rem;
  }

  .ct-form-card {
    padding: 1.75rem 1.25rem;
  }

  .ct-hero {
    padding: 3.5rem 1.5rem 3rem;
  }
}
