/* --------------------- Footer --------------------- */
.site-footer {
  background-color: #1f1f1f;
  color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95rem;
  border-top: 4px solid goldenrod;
}

.site-footer a {
  color: #d4af37;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  transform: scale(1.05);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-weight: 500;
}

.site-footer .social-icons {
  margin-top: 20px;
}

.site-footer .social-icons a {
  color: #d4af37;
  font-size: 1.5rem;
  margin: 0 10px;
}

.site-footer .social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
:root {
  --primary-color: #4a6fa5;
  --secondary-color: #e8c547;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px 0;
  text-align: center;
}

h1 {
  margin: 0;
  font-weight: 300;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form h2 {
  color: var(--primary-color);
  margin-top: 0;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.info-item i {
  color: var(--secondary-color);
  font-size: 24px;
  margin-right: 15px;
  margin-top: 4px;
}

.info-text h3 {
  margin: 0 0 5px 0;
}

.info-text p {
  margin: 0;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

form textarea {
  height: 150px;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #3a5a8f;
}

.map-container {
  margin: 40px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

footer {
  background-color: var(--dark-color);
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }

  form input,
  form textarea,
  form select {
    padding: 8px;
    font-size: 14px;
  }

  .submit-btn {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-item i {
    margin-bottom: 5px;
  }
}
