.contact-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }

 .contact-section .services-background {
  background: #fafafa;
 }
 .contact-section .services-background svg {
   fill: #f1f1f1;
 }
.contact-section .services-background svg path {
  stroke:hsla(0, 0%, 20%, .08);
 }

  .contact-title{
    padding-top: 4rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .contact-subtitle{
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .contact-wrapper{
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
  }
  .contact-form, .contact-info {
    backdrop-filter: blur(-10px);
    box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px 0px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25) ;
    border-radius: 20px;
    padding: 1.8rem;
    flex: 1 1 400px;
    transition: all 0.4s ease-in-out;
  }
  .contact-form:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
  }
  .contact-form h2, .contact-info h2,
   .form-group, .contact-block{
    margin-bottom: 24px;
  }

  .form-group input, textarea {
    width: 100%;
    padding: 12px 15px !important;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1rem !important;
    transition: border-color 0.3s ease;
  }
  input::placeholder,
  textarea::placeholder {
    color: var(--text-light);
  }
  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--text-light);
  }
  
  textarea {
    resize: vertical;
  }

  .country-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .contact-info p {
    font-size: 1rem;
    color: var(--text-light);
  } 

  .contact-info i {
    color: var(--primary-color);
    padding: 12px;
  }
  
  .social-icons-contact {
    display: flex;
    align-items: center;
    margin-top: 8px;
  }
  .social-icons-contact a {
    background-color: var(--primary-color);
    margin-right: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  .social-icons-contact a:hover {
    background-color: #1e40af;
  }
  .social-icons-contact i {
    color: var(--white);
    font-size: 1rem;
  }

  .error-message {
    color: red;
    font-size: 0.85em;
    visibility: hidden;
  }
  
  .error-message.active {
    visibility: visible;
  }
  
  /* Pop-Up */
  #success-popup{
    position: fixed;
    top: 18%;
    right: -10%;
    transform: translateX(-50%);
    background: #4BB543;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    max-width: 350px; 
  }
  
  @media (max-width: 480px) {
    .contact-title{
      font-size: 2rem;
      margin-bottom: 16px;
    }
    .contact-form, .contact-info {
      padding: 1.4rem;
    }
    .contact-form h2, .contact-info h2, 
    .form-group, .contact-block {
      margin-bottom: 16px;
    }

}