/* ===== Contact Page Styles (Polished Version) ===== */

.contact-hero-image {
    background:
        linear-gradient(rgba(16,36,52,0.18), rgba(16,36,52,0.06)),
        url('../images/home/hero-image-sunrise.jpg') center center / cover no-repeat;
}

.contact-section {
  padding: 60px 0 80px; /* ← more breathing room */
}

/* Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px; /* ← more space between cards */
}

/* Cards */
.contact-card {
  background: #ffffff;
  border: 1px solid #e2edf2;
  border-radius: 20px; /* ← softer */
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 36px; /* ← BIG improvement */
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.7rem;
  color: var(--navy);
}

.contact-card p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.65;
}

/* Form */
.contact-form .form-row {
  margin-bottom: 20px; /* ← more vertical spacing */
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px; /* ← larger inputs */
  border: 1px solid #cfd8e3;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #48CAE4;
  box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.2);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Checkbox */
.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Button */
.submit-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #48CAE4;
  color: #003366;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: #90E0EF;
  transform: translateY(-1px);
}

/* Info list */
.info-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  background: #f4f9fb; /* ← subtle tint like Rotary */
  border: 1px solid #dbe9ef;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  line-height: 1.55;
}

/* Small note */
.small-note {
  margin-top: 16px;
  font-size: 13px;
  color: #777;
}

/* added for style button on contact page*/
.btn-primary {
    display: inline-block;
    background-color: #1e73be;   /* nice coastal blue */
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background-color: #155a96;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}
/* end of added for style button on contact page*/

/* putting this (3 code segments) in to fix the 'testimonial public private' text */

.checkbox-row .checkbox-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  width: auto !important;
  max-width: 100%;
  margin: 0;
  font-weight: normal;
}

.checkbox-row .checkbox-label input[type="checkbox"] {
  width: auto !important;
  margin: 3px 0 0 0;
  flex: 0 0 auto;
}

.checkbox-row .checkbox-label span {
  display: inline;
  white-space: normal;
  line-height: 1.4;
}


/* ===== Responsive ===== */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-card {
    padding: 24px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}