/* Halaman contact Fiqram */
main {
  padding-top: 74px; 
}
.contact-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

/* Header Styles */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(rgba(26, 44, 86, 0.95), rgba(26, 44, 86, 0.95)), url('img/image.png');
  background-size: cover;
  color: white;
  padding: 60px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
}

.contact-header p {
  font-size: 20px;
  opacity: 0.9;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 15px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-container {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.contact-card:hover .icon-container {
  background-color: #202d43;
}

.icon-container svg {
  width: 30px;
  height: 30px;
  color: #333;
  transition: color 0.3s ease;
}

.contact-card:hover .icon-container svg {
  color: white;
}

.contact-card h3 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 600;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #202d43;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #202d43;
  outline: none;
}

.submit-btn {
  background-color: #202d43;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
  font-weight: 500;
}

.submit-btn:hover {
  background-color: #15202e;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 32px;
  }
  
  .contact-header p {
    font-size: 16px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}