/* Contact Us Page Styling */

.page-title {
    font-size: 2.75rem;
    color: #005f73;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* Contact panels container - left and right */
  
  .contact-panels {
    display: flex;
    max-width: 90%;
    margin: 0 auto 50px;
    gap: 50px;
    flex-wrap: wrap;
    box-sizing: border-box;
    background: linear-gradient(45deg, #e0f2f1 0%, #fffaf0 100%);
  }
  
  /* Contact Info left panel - two columns */
  
  .contact-info {
    flex: 1;
    min-width: 220px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
  }
  
  /* Vertical connecting line styled as roadmap between two columns */
  .contact-info::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40%;
    background: linear-gradient(180deg, #ee6c4d 0%, #ffac94 100%);
    border-radius: 2px;
  }
  
  /* Each detail column */
  .contact-detail-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  /* Remove background color */
  .contact-info-item {
    background: transparent;
    padding: 12px 10px;
    border-radius: 8px;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    outline-offset: 3px;
  }
  
  /* Hover & focus animation */
  .contact-info-item:hover,
  .contact-info-item:focus {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(238, 108, 77, 0.3);
    background-color: rgba(238, 108, 77, 0.1);
    outline: none;
  }
  
  /* Headings inside contact info */
  .contact-info-item h2 {
    color: #005f73;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 1.3rem;
  }
  
  /* Paragraph */
  .contact-info-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
  }
  
  /* Contact Form right panel */
  
  .contact-form-container {
    min-width: 50%;
    background: #c0cdd0;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 95, 115, 0.08);
    box-sizing: border-box;
  }
  
  .contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .contact-form-container label {
    font-weight: 600;
    color: #005f73;
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .contact-form-container input,
  .contact-form-container textarea {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #c5dbe1;
    border-radius: 8px;
    outline-offset: 3px;
    transition: border-color 0.3s ease;
    font-family: inherit;
    resize: vertical;
  }
  
  .contact-form-container input:focus,
  .contact-form-container textarea:focus {
    border-color: #ee6c4d;
    box-shadow: 0 0 8px rgba(238, 108, 77, 0.6);
    outline: none;
  }
  
  .contact-form-container button {
    background-color: #ee6c4d;
    color: white;
    font-weight: 700;
    padding: 14px;
    font-size: 1.15rem;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form-container button:hover,
  .contact-form-container button:focus {
    background-color: #d04e39;
    box-shadow: 0 0 18px rgba(208, 78, 57, 0.9);
    outline: none;
  }
  
  .form-message {
    min-height: 1.4em;
    font-size: 1rem;
    color: #d04e39;
    margin-top: 6px;
    text-align: center;
  }
  
  /* Google Map section */
  
  .google-map {
    max-width: 1100px;
    margin: 0 auto 70px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
    border-radius: 16px;
    overflow: hidden;
  }
  
  /* Responsive */
  
  @media (max-width: 900px) {
    .contact-panels {
      flex-direction: column;
      gap: 40px;
    }
    .contact-info::before {
      display: none;
    }
    .contact-info {
      flex-direction: column;
      gap: 28px;
      padding-left: 0;
    }
    .contact-detail-column {
      flex-direction: row;
      justify-content: space-around;
    }
    .contact-info-item {
      transform: none !important; /* Reset hover translate on small */
    }
  }
  
  @media (max-width: 520px) {
    .contact-form-container {
      padding: 20px;
    }
  }
  



  /* === Step Tracker Animation (Updated) === */

.step-tracker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 40px;
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #005f73;
  background-color: white;
  margin-right: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step .checkmark {
  color: green;
  font-size: 18px;
  font-weight: bold;
  display: none;
}

.step p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003d4d;
  margin: 0;
  max-width: 280px;
  line-height: 1.6;
}

.step.completed .circle {
  background-color: #c6f6c6;
  border-color: green;
}

.step.completed .checkmark {
  display: inline;
}

.step.active .circle {
  animation: pulse 1s infinite;
  background-color: #ee6c4d;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 95, 115, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 95, 115, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 95, 115, 0);
  }
}

.line {
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, #ccc, #eee);
  margin-left: 13px;
  position: relative;
  overflow: hidden;
}

.line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: #005f73;
  animation: growLine 0.6s ease-in-out forwards;
}

@keyframes growLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
