/* Start custom CSS for html, class: .elementor-element-12409a4 *//* Genel Stil Ayarları */

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

main {
    padding: 40px 0;
}

.contact-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.contact-main-area{
    display: flex;
    flex-wrap: wrap;
     gap: 20px;

}
/* Contact Form */
.contact-form-side{
  flex: 2;
    min-width: 300px;
    padding: 20px;
}
.contact-form-header {
    text-align: left;
    margin-bottom: 30px;
}
.contact-form-header h2 {
    color: #0D3B66;
    font-size: 2.2em;
    margin-bottom: 5px;
}

.contact-form-header p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.5;
}
.contact-form {
    padding-left: 0;
}

.contact-form .wpcf7 p {
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-form .wpcf7 label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.contact-form .wpcf7 input[type="text"],
.contact-form .wpcf7 input[type="email"],
.contact-form .wpcf7 input[type="tel"],
.contact-form .wpcf7 textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: sans-serif;
  transition: border-color 0.3s ease;
    color: #555;
}
.contact-form .wpcf7 input[type="text"]:focus,
.contact-form .wpcf7 input[type="email"]:focus,
.contact-form .wpcf7 input[type="tel"]:focus,
.contact-form .wpcf7 textarea:focus {
    border-color: #0D3B66;
    outline: none;
}

.contact-form .wpcf7 textarea{
    min-height: 120px;
    resize: vertical;
}

.contact-form .wpcf7 input[type="submit"] {
  background-color: #0D3B66;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  display: inline-block;
  width: auto;
  align-self: flex-start;
  margin-top: 20px;
}

.contact-form .wpcf7 input[type="submit"]:hover {
  background-color: #0056b3;
}
.contact-form .wpcf7-response-output{
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}
.wpcf7-validation-errors{
  border: 1px solid red;
    background-color: rgba(255, 0, 0, 0.1);
}
.wpcf7-mail-sent-ok{
  border: 1px solid green;
  background-color: rgba(0, 255, 0, 0.1);
}
/* Hata Mesajı Stilleri (varsa) */
.contact-form .wpcf7-not-valid-tip {
    color: red;
    margin-top: 5px;
    font-size: 0.9em;
}

/*Contact details */
.contact-details-side{
      flex: 1;
       min-width: 250px;
       padding: 20px;
      display: flex;
     flex-direction: column;
}
.contact-details-area{
   display: flex;
    flex-direction: column;
     justify-content: space-between;
}

.email-section,
.social-section{
  padding: 20px 0;
  border-bottom: 2px solid #eee;

}
.email-section h3,
.social-section h3 {
     color: #0D3B66;
     font-size: 1.6em;
    margin-bottom: 20px;
      padding-bottom: 5px;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    margin-right: 10px;
    font-size: 20px;
    color: #0D3B66;
}

.info-item a {
    color: #0D3B66;
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-item a:hover {
    color: #0056b3;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }
     .contact-section{
        padding: 20px;
     }
    .contact-main-area {
          flex-direction: column;
    }
    .contact-form-side{
        padding: 10px;
        margin-bottom: 10px;
    }
    .contact-details-side{
        padding: 10px;
    }
  .email-section,
  .social-section{
     border-bottom: none;

  }
}/* End custom CSS */