.contact-form-zone {
    padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 80px);
}

.form-header-section {
  text-align: center;
  margin-bottom: 50px;
}

.form-main-heading {
   font-size: 42px;
  font-weight: 700;
   color: #2d3436;
   margin-bottom: 15px;
}

.form-subtitle-text {
    font-size     :     17px;
   color: #636e72;
  max-width: 650px;
    margin: 0 auto;
  line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 800px;
   margin: 0 auto;
    background: #fff;
    border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 50px;
  border: 2px solid #dfe6e9;
}

.contact-info-block {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
   padding-bottom: 40px;
    border-bottom: 2px solid #dfe6e9;
}

.info-item-card {
   display: flex;
    flex-direction: column;
   align-items: center;
    gap: 10px;
  padding: 20px;
   background: #f8f9fa;
   border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item-card:hover {
    background: #dfe6e9;
  transform: translateY(-3px);
}

.info-icon-holder {
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
    border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-svg {
    width: 24px;
    height: 24px;
  stroke: #fff;
   fill: none;
    stroke-width: 2;
}

.info-text-content {
    text-align: center;
}

.info-label-text {
    font-size: 12px;
  color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-value-text {
    font-size: 14px;
  color: #2d3436;
  font-weight: 500;
  line-height: 1.4;
}

.contact-form-element {
   display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-row {
    display: grid;
         grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field-wrapper {
    display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label-text {
   font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    display: flex;
   align-items: center;
    gap: 8px;
}

.required-mark {
  color: #636e72;
   font-size: 16px;
}

.field-icon-inline {
  width: 16px;
   height: 16px;
   stroke: #636e72;
  fill: none;
   stroke-width: 2;
}

.input-field-text,
.select-field-dropdown,
.textarea-field-message {
  padding: 14px 16px;
    border: 2px solid #dfe6e9;
  border-radius: 8px;
    font-size: 15px;
    color: #2d3436;
    background: #fff;
    transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input-field-text:focus,
.select-field-dropdown:focus,
.textarea-field-message:focus {
   outline: none;
   border-color: #636e72;
    background: #f8f9fa;
}

.input-field-text.error,
.select-field-dropdown.error,
.textarea-field-message.error {
    border-color: #d63031;
    background: #fff5f5;
}

.textarea-field-message {
  min-height: 140px;
  resize: vertical;
}

.error-message-text {
  font-size: 12px;
  color: #d63031;
   display: none;
  margin-top: -5px;
}

.error-message-text.show {
   display: block;
}

.submit-button-zone {
  margin-top: 10px;
}

.btn-submit-form {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
    color: #fff;
  font-size: 16px;
    font-weight: 600;
  border: none;
    border-radius: 8px;
   cursor: pointer;
  transition: all 0.3s ease;
    display: flex;
    align-items: center;
   justify-content: center;
   gap: 10px;
}

.btn-submit-form:hover:not(:disabled) {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99,110,114,0.3);
}

.btn-submit-form:disabled {
   opacity: 0.6;
  cursor: not-allowed;
}

.btn-icon-send {
  width: 20px;
    height: 20px;
   stroke: #fff;
  fill: none;
   stroke-width: 2;
}

.success-popup-overlay {
  position: fixed;
   top: 0;
   left: 0;
  width: 100%;
   height: 100%;
  background: rgba(45,52,54,0.9);
  backdrop-filter: blur(8px);
    z-index: 9999;
   display: none;
  align-items: center;
   justify-content: center;
    padding: 20px;
}

.success-popup-overlay.active {
    display: flex;
   animation: fadeInOverlay 0.3s ease;
}@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}.success-popup-box {
   background: #fff;
    border-radius: 16px;
    max-width: 500px;
   width: 100%;
   padding: 50px 40px;
    text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popupSlideUp 0.4s ease;
}@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}.success-icon-zone {
    width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
  border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
  animation: successIconPulse 0.6s ease;
}@keyframes successIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.success-icon-check {
    width: 40px;
   height: 40px;
  stroke: #fff;
   fill: none;
  stroke-width: 3;
}

.success-title-text {
  font-size: 32px;
   font-weight: 700;
    color: #2d3436;
  margin-bottom: 15px;
}

.success-message-text {
  font-size: 16px;
  color: #636e72;
  line-height: 1.6;
   margin-bottom: 30px;
}

.btn-close-popup {
  padding: 14px 40px;
  background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
  color: #fff;
  font-size: 15px;
    font-weight: 600;
  border: none;
    border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.btn-close-popup:hover {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  transform: translateY(-2px);
}@media (max-width: 991px) {
    .contact-form-zone {
        padding: 60px 0;
    }

    .form-main-heading {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-info-block {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .contact-form-zone {
        padding: 40px 0;
    }

    .form-main-heading {
        font-size: 28px;
    }

    .form-subtitle-text {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .success-popup-box {
        padding: 40px 30px;
    }

    .success-title-text {
        font-size: 26px;
    }
}