/* === Section Contact === */
.contact-section {
  padding: 80px 0;
}
  
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}
  
.contact-box {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #ff6b6b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
  
.contact-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ff6b6b;
}
  
.contact-box p {
  margin-bottom: 15px;
  font-size: 16px;
}
  
.contact-box a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s;
}
  
.contact-box a:hover {
  color: #ff6b6b;
}
 
.contact-form {
  flex: 2;
  min-width: 300px;
}
  
.contact-form .form-group {
  margin-bottom: 20px;
}
  
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #444;
  background: #222;
  color: white;
  font-size: 16px;
  resize: none;
}
  
.contact-form textarea {
  height: 150px;
}
  
.contact-form button {
  background-color: #ff6b6b;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
  
.contact-form button:hover {
  background-color: #e65a5a;
}
  
/* === CV Download === */
.cv-download {
  margin-top: 50px;
  background-color: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  color: white;
  border: 2px solid #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}
  
.cv-download i {
  margin-right: 10px;
  color: #ff6b6b;
}
  
.cv-download a {
  font-weight: bold;
  color: white;
  text-decoration: underline;
  transition: color 0.3s;
}
  
.cv-download a:hover {
  color: #ff6b6b;
}

.formspree-credit {
  text-align: right;
  margin-top: 4px;
  padding-right: 4px;
  font-size: 14px;
  color: #aaa;
}

.formspree-credit a {
  color: #ff6b6b;
  text-decoration: none;
}

.formspree-credit a:hover {
  text-decoration: underline;
}
  
/* === Responsive === */
@media screen and (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-form button {
    width: 100%;
  }
}
  