* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



.contact-btn:hover {
  color: #ffd700;
}




.contact-section {
  padding: 60px 30px;
  background-color: #fdf6f0;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.contact-section .highlight {
  color: #3b82f6;
  font-weight: bold;
}

.contact-section .intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Grid layout */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

/* Info boxes */
.contact-info {
  flex: 1 1 300px;
  display: grid;
  gap: 24px;
}

.contact-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #3b82f6;
}

.contact-box p {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.contact-btn {
  display: inline-block;
  background-color: #ff7f50; /* Coral orange */
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  background-color: #e65c2a; /* darker orange */
  color: #fff;
}


.contact-btn:hover {
  background-color: #2563eb;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 22px;
  color: #3b82f6;
  background-color: #f0f4ff;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.social-icons a:hover {
  background-color: #bd25eb;
  color: #fff;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}
