/* Reset style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    "Roboto", "Helvetica Neue", "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background-color: #2e2e2e;
  /* background: linear-gradient(135deg, #2a3f44 0%, #1a2d32 100%); */
  /* background-attachment: fixed; */
  color: #f0f0f0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Basic elements */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 60px 20px 30px 20px;
  border-top: 1px solid #1a1a1a;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: #4a9eff;
  flex-shrink: 0;
  display: block;
}

.footer-contact-item a {
  font-size: 1.3rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-contact-item a:hover {
  color: #4a9eff;
}

.footer-social {
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border-radius: 50%;
  color: #888;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.social-links a:hover {
  background: linear-gradient(135deg, #4a9eff, #00d4ff);
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

.social-links svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1a1a1a;
}

.footer-map-link {
  text-align: center;
  margin-bottom: 22px;
}

.footer-map-link a {
  font-size: 1.3rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-map-link a:hover {
  color: #4a9eff;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #666;
}

/* Mobile styles for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    max-width: 35px;
    max-height: 35px;
  }

  .social-links svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
}
