.contact-section {
  padding: 180px 0 80px 0;
  background: var(--light-gray);
}

p > a {
    text-decoration: none;
    color: var(--text-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.info-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(165, 145, 130, 0.12);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.contact-form textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--dark-green);
}

@media (max-width: 768px) {
  .contact-section {
  padding: 100px 0 80px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px 25px;
  }
}

/* Suc
cess Modal Styles */
.contact-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-success-modal.show {
  opacity: 1;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(165, 145, 130, 0.5);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 50px 40px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(165, 145, 130, 0.22);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.contact-success-modal.show .contact-modal-content {
  transform: scale(1) translateY(0);
}

.contact-modal-icon {
  margin-bottom: 24px;
  animation: modalIconBounce 0.6s ease-out;
}

@keyframes modalIconBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.contact-modal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-modal-content.success .contact-modal-title {
  color: #10B981;
}

.contact-modal-content.error .contact-modal-title {
  color: #EF4444;
}

.contact-modal-message {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-modal-btn {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.contact-modal-btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.contact-modal-btn:active {
  transform: translateY(0);
}

.contact-modal-content.error .contact-modal-btn {
  background: #EF4444;
}

.contact-modal-content.error .contact-modal-btn:hover {
  background: #DC2626;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* Submit button disabled state */
.btn-submit:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-submit:disabled:hover {
  background: #9CA3AF;
  transform: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-modal-content {
    padding: 40px 30px 30px;
    max-width: 90%;
  }

  .contact-modal-title {
    font-size: 24px;
  }

  .contact-modal-message {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .contact-modal-icon svg {
    width: 56px;
    height: 56px;
  }
}
