/* Contact Section Layout */
.contact-section {
  background: #f9fafb;
  padding: 60px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  padding: 40px;
}

.contact-form, .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2, .contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #22223b;
  text-align: left;
}

.contact-form p, .contact-info p {
  color: #4a4e69;
  margin-bottom: 24px;
}

.contact-form form label {
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
  color: #22223b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
  background: #f7f7f7;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fbbf24;
  outline: none;
}

.contact-form .btn {
  background: #fbbf24;
  color: #fff;
  font-weight: 700;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}

.contact-form .btn:hover {
  background: #d97706;
}

.contact-info .info-box {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.contact-info h3 {
  font-size: 1.1rem;
  color: #fbbf24;
  margin-bottom: 6px;
}

.contact-info small {
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 32px;
  }
  .contact-form h2, .contact-info h2 {
    text-align: center;
  }
}

/* Find Us Section */
.find-us {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.find-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #22223b;
}

.find-us p {
  color: #4a4e69;
  margin-bottom: 32px;
}

.find-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 32px 24px;
  width: 280px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 8px;
}

.card p {
  color: #22223b;
  font-size: 1rem;
  text-align: center;
}

.map {
  margin: 0 auto;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Footer improvements (optional) */
footer {
  margin-top: 0;
}

/* Make header h1 and p full width and centered on mobile */
@media (max-width: 768px) {
  header h1,
  header p {
    width: 100%;
    text-align: center;
  }
}