.contact-hero-banner {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    text-align: center;
  margin-bottom: 80px;
}

.contact-hero-banner h1 {
   font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}


.contact-hero-banner p {
    font-size: 1.3rem;
   color: #ecf0f1;
}

.contact-form-zone {
    padding: 0 0 90px;
}

.contact-info-cards {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
    margin-bottom: 70px;
}

.info-card-item {
  background: #fff;
    padding: 40px 30px;
    text-align: center;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.info-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-icon-wrap {
  width: 70px;
  height: 70px;
    background: #e74c3c;
  border-radius: 50%;
   display: flex;
    align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
}

.contact-icon-svg {
    width: 35px;
  height: 35px;
}

.contact-icon-svg path,
.contact-icon-svg circle,
.contact-icon-svg rect,
.contact-icon-svg line {
    stroke: #fff;
   fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card-item h3 {
   font-size: 20px;
  color: #2c3e50;
    font-weight: 700;
  margin-bottom: 10px;
}

.info-card-item p {
   font-size: 15px;
  color: #7f8c8d;
       line-height: 1.6;
}

.form-wrapper-main {
    max-width: 800px;
   margin: 0 auto;
  background: #fff;
    padding: 50px 45px;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-header-text {
   text-align: center;
   margin-bottom: 45px;
}

.form-header-text h2 {
    font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
    margin-bottom: 12px;
}

.form-header-text p {
    font-size: 1.1rem;
   color: #7f8c8d;
}

.contact-form-fields {
   width: 100%;
}

.form-row-double {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 25px;
    margin-bottom: 25px;
}

.input-group-field {
    margin-bottom: 25px;
}

.field-label {
   display: block;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.input-with-icon {
    position: relative;
}

.input-icon-svg {
  position: absolute;
  left: 15px;
    top: 50%;
  transform: translateY(-50%);
    width: 20px;
    height: 20px;
  pointer-events: none;
}

.input-icon-svg path,
.input-icon-svg circle,
.input-icon-svg rect,
.input-icon-svg line {
    stroke: #95a5a6;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-input-field,
.select-input-field {
    width: 100%;
  padding: 14px 15px 14px 50px;
   border: 2px solid #dfe6e9;
  border-radius: 8px;
   font-size: 15px;
    color: #2c3e50;
   transition: all 0.3s;
}

.select-input-field {
    cursor: pointer;
    background: #fff;
}

.text-input-field:focus,
.select-input-field:focus {
   outline: none;
  border-color: #e74c3c;
}

.text-input-field.error,
.select-input-field.error,
.textarea-input-field.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.textarea-wrapper {
    position: relative;
}

.textarea-input-field {
    width: 100%;
    padding: 15px;
  border: 2px solid #dfe6e9;
  border-radius: 8px;
    font-size: 15px;
  color: #2c3e50;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  resize: vertical;
   transition: border-color 0.3s;
}

.textarea-input-field:focus {
   outline: none;
    border-color: #e74c3c;
}

.error-msg {
  display  :   block;
   color: #e74c3c;
   font-size: 13px;
  margin-top: 6px;
    min-height: 18px;
    font-weight: 500;
}

.form-submit-area {
   margin-top: 35px;
    text-align: center;
}

.submit-btn-primary {
   display: inline-flex;
    align-items: center;
   gap: 12px;
   padding: 16px 40px;
  background: #e74c3c;
    color: #fff;
  border: none;
  border-radius: 8px;
   font-size: 16px;
    font-weight: 700;
    cursor: pointer;
   transition: all 0.3s;
   text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231,76,60,0.3);
}

.btn-icon-arrow {
  width: 20px;
  height: 20px;
}

.btn-icon-arrow path,
.btn-icon-arrow line {
    stroke: #fff;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.thanks-popup-overlay {
    position: fixed;
   top: 0;
    left: 0;
   width: 100%;
    height: 100%;
  background: rgba(0,0,0,0.85);
   display: none;
    align-items: center;
  justify-content: center;
                    z-index: 9999;
}

.thanks-popup-overlay.show {
  display: flex;
}

.thanks-popup-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.thanks-icon-circle {
	 width: 90px;
   height: 90px;
   background: #27ae60;
    border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
    margin: 0 auto 25px;
}

.thanks-check-icon {
    width: 50px;
   height: 50px;
}

.thanks-check-icon path,
.thanks-check-icon circle {
    stroke: #fff;
    fill: none;
  stroke-width: 3;
    stroke-linecap: round;
}

.thanks-popup-content h2 {
   font-size: 2.2rem;
    color: #2c3e50;
   margin-bottom: 15px;
  font-weight: 700;
}

.thanks-popup-content p {
   font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
  margin-bottom: 30px;
}

.thanks-close-btn {
  padding: 14px 35px;
   background: #e74c3c;
    color: #fff;
   border: none;
  border-radius: 8px;
  font-size: 16px;
   font-weight: 700;
  cursor: pointer;
    transition: background 0.3s;
}

.thanks-close-btn:hover {
  background: #c0392b;
} @media (max-width: 991px) {
    .contact-hero-banner h1 {
        font-size: 2.8rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-row-double {
        grid-template-columns: 1fr;
    }

    .form-wrapper-main {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero-banner {
        padding: 60px 0;
        margin-bottom: 50px;
    }

    .contact-hero-banner h1 {
        font-size: 2.2rem;
    }

    .contact-hero-banner p {
        font-size: 1.1rem;
    }

    .form-header-text h2 {
        font-size: 2rem;
    }

    .form-wrapper-main {
        padding: 35px 25px;
    }

    .thanks-popup-content {
        padding: 40px 30px;
    }
}

@media (max-width: 479px) {
    .contact-hero-banner h1 {
        font-size: 1.9rem;
    }

    .form-wrapper-main {
        padding: 30px 20px;
    }

    .submit-btn-primary {
        width: 100%;
        justify-content: center;
    }
}