/* Left Section - Contact Form */
.contact-form-container {
  max-width: 500px;
  width: 100%;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.highlighted-text {
  background-color: #ffc107;
  padding: 4px 12px;
  border-radius: 6px;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 0.5rem;
}

.custom-input {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  padding: 0.75rem 1rem !important;
  background-color: transparent !important;
  width: 100% !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
  border-color: #4285f4 !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
}

.custom-input::placeholder {
  color: #6c757d !important;
  opacity: 0.8 !important;
}

/* Textarea için özel stil */
textarea.custom-input {
  resize: none !important;
  min-height: 120px !important;
}

.custom-btn {
  background-color: #4285f4;
  border: none;
  border-radius: 18px;
  padding: 12px 44px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: none;
}

.custom-btn:hover {
  background-color: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Right Section - Contact Information */
.contact-info-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
  overflow: hidden;
}

.contact-info-container {
  position: relative;
  z-index: 2;
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.geometric-shapes::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.geometric-shapes::after {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.contact-info-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.contact-methods {
  position: relative;
  z-index: 3;
}

.contact-method {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  backdrop-filter: blur(10px);
}

.contact-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.contact-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .contact-form-container {
    max-width: 600px;
  }
  
  .contact-info-section {
    min-height: 400px;
  }
  
  .contact-info-title {
    text-align: center;
    font-size: 1.6rem;
  }
  
  .contact-method {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 1.5rem 0;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-form-container {
    padding: 2rem 1rem;
  }
  
  .contact-info-container {
    padding: 2rem 1rem;
  }
  
  .custom-input {
    padding: 10px 14px;
  }
  
  .custom-btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    padding: 14px 32px;
  }
  
  .geometric-shapes::before {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 5%;
  }
  
  .geometric-shapes::after {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
  }
}

@media (max-width: 575.98px) {
  .contact-title {
    font-size: 1.6rem;
  }
  
  .highlighted-text {
    padding: 3px 8px;
  }
  
  .contact-info-title {
    font-size: 1.4rem;
  }
  
  .contact-text {
    font-size: 1rem;
  }
}

/* Animation for form inputs */
.custom-input:focus {
  animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

/* Hover effects for contact methods */
.contact-method:hover .contact-icon {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.contact-method:hover .contact-text {
  transform: translateX(5px);
  transition: all 0.3s ease;
}