/* Footer Styles - Light Theme */
footer {
  background: linear-gradient(135deg, #f8fafc 0%, #0090ef 100%);
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.footer-map-section {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.9;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(37, 99, 235, 0.95);
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  z-index: 10;
}

.map-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.map-overlay p {
  font-size: 16px;
  color: #f0f9ff;
  margin-bottom: 5px;
}

.map-overlay .location-icon {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-main {
  padding: 80px 5% 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #2563eb;
  position: relative;
  padding-bottom: 15px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 2px;
}

.footer-about p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #2563eb;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #2563eb;
  padding-left: 25px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #475569;
}

.contact-item i {
  color: #2563eb;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 3px;
}

.contact-item-content h4 {
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-input-group {
  display: flex;
  margin-bottom: 15px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 15px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px 0 0 8px;
  color: #1e293b;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-input-group input::placeholder {
  color: #94a3b8;
}

.newsletter-input-group button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-input-group button:hover {
  transform: translateX(3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.newsletter-form p {
  font-size: 12px;
  color: #64748b;
}

.footer-bottom {
  background: #f1f5f9;
  padding: 30px 5%;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #2563eb;
}

.developer-credit {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.developer-credit p {
  color: #94a3b8;
  font-size: 13px;
}

.developer-credit span {
  color: #2563eb;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-map-section {
    height: 300px;
  }

  .map-overlay {
    padding: 20px 25px;
  }

  .map-overlay h3 {
    font-size: 20px;
  }

  .map-overlay p {
    font-size: 14px;
  }

  .footer-main {
    padding: 50px 5% 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group input,
  .newsletter-input-group button {
    border-radius: 8px;
  }

  .newsletter-input-group button {
    margin-top: 10px;
  }
}