/* ====================== CONTACT SECTION ====================== */

.contact {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #fffaf9, #fff6f2);
  padding: 2rem;
}

/* Container */
.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Section Header */
.contact .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact .section-header h2 {
  /* Match global .section-title style for consistent headings site-wide */
  font-size: 2rem;
  line-height: 1.2;
  color: #000000;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: "Bitter", serif;
    font-weight: 400;
}

.contact .section-header h2::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: #b2186d;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.contact .section-header p {
  font-size: 1.2rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Contact Info & Form Blocks */
.contact-info,
.contact-form-container {
  flex: 1 1 50%;
  background-color: #f3f2f2;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 1.5rem;
}

.contact-info:hover,
.contact-form-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(178, 24, 109, 0.15);
}

/* Headings & Text */
.contact-info h3,
.contact-form-container h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: #b2186d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #962f5d;
}

/* Form Styling */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #0d4db4;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group .contact-enquiry {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .contact-enquiry:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(12, 40, 86, 0.2);
  outline: none;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Submit Button */
.btn-submit {
  background-color: #b2186d;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(178, 24, 109, 0.2);
}

.btn-submit:hover {
  background-color: #962f5d;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(178, 24, 109, 0.3);
}

/* Contact List Inline */
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  max-width: 100%;
}

.contact-list p {
  margin: 0;
  display: flex;
  gap: 5px;
}

/* Form Status Messages */
.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #10b981;
}

.form-status.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #ef4444;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 480px) {
  .contact .section-header h2 {
    font-size: 1.65rem;
    line-height: 1.1;
}

.contact .section-header p{
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.3;
}

.contact-info h3, .contact-form-container h3 {
    margin-bottom: 0.10rem;
}

.contact-info p {
  line-height: 1.3;
  margin-bottom: 7px;
}

.form-group label {
    margin-bottom: 0.10rem;
}

.form-group {
    margin-bottom: 0.20rem;
}
}

@media (max-width: 735px) {
  .contact .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.1;
}

.contact .section-header p{
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.3;
}

.contact-info h3, .contact-form-container h3 {
    margin-bottom: 0.10rem;
}

.contact-info p {
  line-height: 1.3;
  margin-bottom: 7px;
}

.form-group label {
    margin-bottom: 0.10rem;
}

.form-group {
    margin-bottom: 0.20rem;
}
}
