.ap-contact-hero {
  background: linear-gradient(135deg,#2c3e50 0%,#34495e 100%);
  padding: 120px 0 80px;
    text-align: center;
}

.ap-hero-text-zone{}

.ap-contact-title {
   color: #fff;
  font-size: 2.8rem;
    font-weight: 400;
   margin-bottom: 15px;
}

.ap-contact-desc {
  color: rgba(255,255,255,0.8);
   font-size: 1.1rem;
  max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
}

.ap-contact-main {
  padding: 80px 0;
    background: #f8f9fa;
}

.ap-contact-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
}

.ap-contact-info-side{}

.ap-info-card {
    background: #fff;
    padding: 25px;
   border-radius: 8px;
    margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   text-align: center;
   transition: all 0.3s ease;
}

.ap-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.ap-contact-emblem {
    width: 40px;
  height: 40px;
    margin: 0 auto 15px;
}

.ap-contact-emblem path,
.ap-contact-emblem circle,
.ap-contact-emblem rect {
   stroke   :    #1abc9c;
    fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ap-info-card h3 {
   color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
   margin-bottom: 10px;
}

.ap-info-card p {
  color: #7f8c8d;
   font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.ap-form-side  {
  background: #fff;
  padding: 40px;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ap-contact-form{}

.ap-form-row {
  margin-bottom: 25px;
}

.ap-row-dual {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ap-field-wrap {
    position: relative;
}

.ap-field-label {
   align-items: center;
    display: flex;
    font-size: 14px;
  color: #2c3e50;
   font-weight: 600;
	margin-bottom: 8px;
   gap: 8px;
}

.ap-label-icon {
  width: 18px;
   height: 18px;
}

.ap-label-icon path,
.ap-label-icon circle,
.ap-label-icon rect {
    stroke: #1abc9c;
  fill: none;
  stroke-width: 2.5;
   stroke-linecap: round;
 stroke-linejoin: round;
}

.ap-input-field {
   width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
    border-radius: 6px;
  font-size: 15px;
    color: #2c3e50;
   transition: all 0.3s ease;
    background: #fff;
   font-family: inherit;
}

.ap-input-field:focus {
    outline: none;
  border-color: #1abc9c;
  box-shadow: 0 0 0 3px rgba(26,188,156,0.1);
}

.ap-input-field.ap-field-error {
    border-color    :     #e74c3c;
}

.ap-select-field {
  cursor: pointer;
}

.ap-textarea-field {
   resize: vertical;
    min-height: 120px;
}

.ap-error-msg {
    display: none;
    color: #e74c3c;
   font-size: 13px;
    margin-top: 5px;
}

.ap-error-msg.ap-show-error {
  display: block;
}

.ap-submit-btn {
  background: #1abc9c;
   color: #fff;
  border: none;
  padding: 15px 40px;
   border-radius: 6px;
   font-size: 16px;
  font-weight: 700;
    cursor: pointer;
  display: inline-flex;
  align-items: center;
   gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
   letter-spacing: 0.5px;
}

.ap-submit-btn:hover {
   background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26,188,156,0.3);
}

.ap-btn-icon {
   width: 20px;
  height: 20px;
}

.ap-btn-icon path {
   stroke: #fff;
   fill: none;
    stroke-width: 3;
    stroke-linecap: round;
   stroke-linejoin: round;
}

.ap-form-note {
    display: flex;
   align-items: flex-start;
   gap: 10px;
    color: #7f8c8d;
   font-size: 13px;
    line-height: 1.6;
  margin-top: 20px;
}

.ap-note-icon {
   width: 16px;
  height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ap-note-icon path {
    stroke: #7f8c8d;
  fill: none;
   stroke-width: 2.5;
   stroke-linecap: round;
   stroke-linejoin: round;
}

.ap-form-note a {
  color: #1abc9c;
   text-decoration: underline;
}

.ap-form-note a:hover {
   color: #16a085;
}

.ap-thank-popup {
  position: fixed;
  top: 0;
   left: 0;
  width: 100%;
  height: 100%;
    z-index: 9999;
   display: flex;
  align-items: center;
    justify-content: center;
}

.ap-thank-popup.ap-hidden {
    display: none;
}

.ap-popup-overlay {
    position: absolute;
    top: 0;
  left: 0;
   width: 100%;
    height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
}

.ap-popup-box {
    position: relative;
   background: #fff;
    max-width: 450px;
    width: 90%;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}

.ap-popup-icon {
  margin-bottom: 20px;
}

.ap-success-icon {
  width: 70px;
    height: 70px;
  margin: 0 auto;
  padding: 15px;
    background: #d4edda;
   border-radius: 50%;
}

.ap-success-icon path {
    stroke: #1abc9c;
  fill: none;
    stroke-width: 3;
    stroke-linecap: round;
   stroke-linejoin     :    round;
}

.ap-popup-box h2 {
   margin-bottom: 15px;
   font-size: 26px;
    font-weight: 600;
  color: #2c3e50;


}

.ap-popup-box p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
   margin-bottom: 25px;
}

.ap-popup-close-btn {
  background: #1abc9c;
   color: #fff;
   border: none;
  padding: 12px 35px;
  border-radius: 6px;
   font-size: 15px;
   font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.ap-popup-close-btn:hover {
    background: #16a085;
}@media(max-width:991px){
    .ap-contact-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .ap-contact-info-side{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .ap-info-card{
        margin-bottom:0;
    }
}

@media(max-width:767px){
    .ap-contact-title{
        font-size:2.2rem;
    }

    .ap-contact-desc{
        font-size:1rem;
    }

    .ap-contact-main{
        padding:60px 0;
    }

    .ap-contact-info-side{
        grid-template-columns:1fr;
    }

    .ap-form-side{
        padding:30px 20px;
    }

    .ap-row-dual{
        grid-template-columns:1fr;
        gap:25px;
    }

    .ap-submit-btn{
        width:100%;
        justify-content:center;
    }

    .ap-popup-box{
        padding:30px 20px;
    }

    .ap-success-icon{
        width:60px;
        height:60px;
    }

    .ap-popup-box h2{
        font-size:22px;
    }
}

@media(max-width:480px){
    .ap-contact-hero{
        padding:100px 0 60px;
    }

    .ap-contact-title{
        font-size:1.8rem;
    }
}