/* START CONTACT US SECTION STYLE */

#contact-section, #contact-section *, #contact-section *::before, #contact-section *::after {
  box-sizing: border-box;
  /* margin: 0;
  padding: 0; */
}

#contact-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ── Main Layout ── */
#contact-section.contact-container {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    gap: 50px;
    padding: 0 20px;
    overflow: hidden;
}

#contact-section .form-section,
#contact-section .info-section {
    flex: 1;
    min-width: 0;
}

/* ── Form Styles ── */
#contact-section h2 {
    margin-bottom: 20px;
    font-weight: 500;
}

#contact-section input,
#contact-section textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

#contact-section textarea {
    resize: vertical;
}

#contact-section .send-btn {
    background-color: #222;
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#contact-section .send-btn:hover {
    background-color: #444;
}

/* ── Info Section Styles ── */
#contact-section h3 {
    margin-bottom: 25px;
}

#contact-section .details p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
    overflow-wrap: break-word;
}

#contact-section .details a {
    color: #2b47f0;
}

#contact-section .map-container {
    margin-top: 20px;
    border: 1px solid #ddd;
    max-width: 100%;
    overflow: hidden;
}

#contact-section .map-container iframe {
    display: block;
    max-width: 100%;
}

@media (max-width: 1024px) {
    #contact-section.contact-container {
        gap: 32px;
    }
}

@media (max-width: 576px) {
    #contact-section.contact-container {
        flex-direction: column;
        margin: 32px auto;
        gap: 40px;
    }

    #contact-section .send-btn {
        width: 100%;
        padding: 12px 0;
    }

    #contact-section .map-container iframe {
        height: 320px;
    }
}

/* END CONTACT US SECTION STYLE */
/* START FORM STATUS MESSAGE STYLE */

.form-status {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);

  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.form-status.show {
  max-height: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 16px;
  opacity: 1;
  transform: translateY(0);
}

.form-status-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.form-status-icon svg {
  width: 100%;
  height: 100%;
}

.form-status-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.success {
  background: #eafbf1;
}
.form-status.success .form-status-circle {
  stroke: #1fa855;
  stroke-width: 1.8;
  fill: none;
}
.form-status.success .form-status-check {
  stroke: #1fa855;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  transition: stroke-dashoffset 0.4s ease 0.15s;
}
.form-status.success.show .form-status-check {
  stroke-dashoffset: 0;
}
.form-status.success .form-status-cross {
  display: none;
}
.form-status.success .form-status-text {
  color: #146637;
}

.form-status.error {
  background: #fdecea;
}
.form-status.error .form-status-circle {
  stroke: #d1453b;
  stroke-width: 1.8;
  fill: none;
}
.form-status.error .form-status-check {
  display: none;
}
.form-status.error .form-status-cross {
  stroke: #d1453b;
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.4s ease 0.15s;
}
.form-status.error.show .form-status-cross {
  stroke-dashoffset: 0;
}
.form-status.error .form-status-text {
  color: #8a2b23;
}

@media (max-width: 576px) {
  .form-status {
    padding: 0 16px;
    gap: 12px;
  }
  .form-status.show {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .form-status-text {
    font-size: 13px;
  }
}

.form-status-text {
  flex: 1; /* pushes the close button to the far right */
}

.form-status-close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.form-status-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}

.form-status-close svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.form-status.success .form-status-close svg {
  stroke: #146637;
}

.form-status.error .form-status-close svg {
  stroke: #8a2b23;
}

/* END FORM STATUS MESSAGE STYLE */