.contact-section {
  padding: 8rem 0;
  color: var(--primary-color);
}

.page-title {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.page-title p {
  font-size: 1.8rem;
  color: #666;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-container {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-info {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 2.4rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1rem;
}

.info-item:nth-child(1) i {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.info-item:nth-child(2) i {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.info-item:nth-child(3) i {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.info-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 1.6rem;
  color: #666;
}

.contact-right {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
  padding: 4rem;
}

.contact-form h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-desc {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: var(--primary-color);
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
}

.submit-btn {
  width: 100%;
  padding: 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.submit-btn i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.submit-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 0;
  }

  .page-title h1 {
    font-size: 3.6rem;
  }

  .contact-info {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-form h2 {
    font-size: 2.8rem;
  }
}

/* İletişim başlığı için after efekt */
.contact-title {
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gold-color);
  border-radius: 2px;
}

/* Bildirim (Notification) Stilleri */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  border-left: 4px solid #2ecc71;
  color: #27ae60;
}

.notification.error {
  border-left: 4px solid #e74c3c;
  color: #c0392b;
}

.notification i {
  font-size: 1.8rem;
}

@media (max-width: 480px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .notification.show {
    transform: translateY(0);
  }
}

/* Honeypot field (spam bot koruması) */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  z-index: -1 !important;
}

.honeypot input {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* reCAPTCHA Notice */
.recaptcha-notice {
  margin-bottom: 2rem;
  text-align: center;
}

.recaptcha-notice small {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.4;
}

.recaptcha-notice a {
  color: var(--primary-color);
  text-decoration: none;
}

.recaptcha-notice a:hover {
  text-decoration: underline;
}

/* Gelişmiş form validasyon stilleri */
.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c !important;
  background-color: rgba(231, 76, 60, 0.05) !important;
}

.form-group input.success,
.form-group textarea.success {
  border-color: #2ecc71 !important;
  background-color: rgba(46, 204, 113, 0.05) !important;
}

.error-message {
  color: #e74c3c;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  display: block;
}

/* Submit button loading state */
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
