.contact-form-section {
  background: rgba(255,255,255,0.92);
  padding: 48px 0 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.parchment-form {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(180,115,51,0.10);
  padding: 38px 36px 28px 36px;
  width: 1200px;
  max-width: 95vw;
  margin: 0 auto;
  border: 1.5px solid #f3e6c0;
  position: relative;
  overflow: visible;
}
.section-heading {
  margin-bottom: 32px;
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #7a5a2c;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  overflow: visible;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: none;
  border-bottom: 2px solid #e0cfa0;
  border-radius: 0;
  background: transparent;
  font-size: 1.04rem;
  padding: 10px 4px 7px 0;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  color: #3a2c1a;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom: 2.5px solid #b87333;
  background: #fffbe6;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  border: 2px solid #d4af37;
  border-radius: 6px;
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  margin: 0;
  box-sizing: border-box;
  vertical-align: middle;
}
.checkbox-group input[type="checkbox"]:checked {
  background: #d4af37;
  border-color: #b87333;
}
.checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  display: block;
}
.checkbox-group label {
  font-weight: 400;
  font-size: 1rem;
  color: #5a4a2c;
  margin: 0;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
  vertical-align: middle;
}
.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.submit-button, .reset-button {
  padding: 13px 0;
  border: none;
  border-radius: 24px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #d4af37 0%, #b87333 100%);
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(212,175,55,0.08);
  width: 48%;
  min-width: 120px;
  letter-spacing: 0.01em;
}
.reset-button {
  background: #f5f5f5;
  color: #b87333;
  border: 1.5px solid #b87333;
}
.submit-button:hover {
  background: linear-gradient(90deg, #b87333 0%, #d4af37 100%);
}
.reset-button:hover {
  background: #fff3e0;
  color: #a05a1c;
}

/* Başarı mesajı için düzeltilmiş CSS */
.form-success-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    animation: successSlideIn 0.5s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-success-message .success-icon {
    font-size: 3rem;
    color: #4caf50;
    animation: successPulse 2s ease-in-out infinite;
}

.form-success-message h3 {
    margin: 0;
    color: #2e7d32;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.form-success-message p {
    margin: 0;
    color: #388e3c;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* Hata mesajı için geliştirilmiş stil */
.alert.alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #fff5f5 100%);
    border: 2px solid #f44336;
    border-radius: 12px;
    color: #c62828;
    font-size: 1rem;
    margin-bottom: 18px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.15);
    animation: errorShake 0.5s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.alert-danger::before {
    content: '⚠️';
    font-size: 1.2rem;
}

/* Modal/Alert Dialog Stilleri */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: modalFadeIn 0.3s ease-out;
}

.success-modal-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #4caf50;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    transform: scale(0.9);
}

.success-modal-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4caf50, #45a049, #4caf50);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite;
}

.success-modal-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
    animation: successBounce 0.6s ease-out 0.2s both;
}

.success-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.success-modal-message {
    font-size: 1.1rem;
    color: #388e3c;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-modal-button {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.success-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
}

.success-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.success-modal-close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.1);
}

/* Animasyonlar */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes successSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

/* Reset butonu hover efekti */
.reset-button:hover {
    background: #fff3e0 !important;
    color: #a05a1c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.2);
}

/* Submit butonu loading durumu */
.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-button:disabled:hover {
    background: linear-gradient(90deg, #d4af37 0%, #b87333 100%) !important;
    transform: none !important;
}

/* Responsive düzenlemeler */
@media (max-width: 600px) {
    .success-modal-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-modal-title {
        font-size: 1.5rem;
    }
    
    .success-modal-icon {
        font-size: 3rem;
    }
    
    .success-modal-message {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
  .parchment-form { width: 98vw; padding: 18px 2vw; }
}