* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-2, .col-lg-3, .col-lg-6 {
  padding: 0 15px;
  margin-bottom: 20px;
}

.col-lg-6 {
  flex: 0 0 50%;
}

.col-lg-2 {
  flex: 0 0 16.666%;
}

.col-lg-3 {
  flex: 0 0 25%;
}

@media (max-width: 768px) {
  .col-lg-2, .col-lg-3, .col-lg-6 {
    flex: 0 0 100%;
  }
}

#footer {
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  position: relative;
  border-top: 1px solid rgba(233, 107, 86, 0.3);
}

.footer-newsletter {
  background: linear-gradient(135deg, #e96b56 0%, #d25e4a 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.footer-newsletter .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-newsletter .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-newsletter .col-lg-6 {
  flex: 1;
  min-width: 280px;
}

.footer-newsletter h4 {
  font-size: 26px;
  color: #fff;
  margin: 0 0 8px 0;
  font-weight: 700;
  line-height: 1.3;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

#newsletterForm {
  display: flex;
  gap: 10px;
  max-width: 550px;
}

#newsletter-email {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}

#newsletter-email:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

#newsletter-submit {
  padding: 14px 35px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

#newsletter-submit:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#newsletter-submit:disabled {
  background: #666;
  cursor: not-allowed;
}

#newsletter-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.footer-top {
  padding: 60px 0 40px;
  background: #1a1a1a;
}

.footer-top .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-top .col-lg-2,
.footer-top .col-lg-3 {
  flex: 1;
  min-width: 200px;
}

.footer-top h4 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-top h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e96b56;
  border-radius: 2px;
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-top ul li {
  margin-bottom: 12px;
}

.footer-top ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.footer-top ul li a::before {
  content: '›';
  margin-right: 5px;
  color: #e96b56;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-top ul li:hover a {
  color: #e96b56;
  padding-left: 8px;
}

.footer-top ul li:hover a::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 14px;
  margin: 0 0 10px 0;
}

.footer-contact strong {
  color: #e96b56;
  font-weight: 600;
}

.footer-info {
  text-align: center;
}

.footer-logo {
  max-width: 120px;
  display: block;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-logo:hover {
  transform: scale(1.08);
}

.social-links {
  text-align: center;
  margin: 0 0 20px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #e96b56;
  color: #fff;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(233, 107, 86, 0.3);
}

.social-links a:hover {
  background: #d25e4a;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(233, 107, 86, 0.5);
}

.social-links a.facebook:hover {
  background: #1877f2;
}

.social-links a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a.youtube:hover {
  background: #ff0000;
}

.visitor-count {
  display: inline-block;
  padding: 8px 10px;
  background: rgba(233, 107, 86, 0.15);
  border-radius: 25px;
  border: 1px solid rgba(233, 107, 86, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.visitor-count span {
  color: #e96b56;
  font-weight: 700;
  font-size: 18px;
  margin-left: 5px;
}

.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  max-width: 350px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.success-message.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.success-message.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50px) scale(0.95);
  pointer-events: none;
}

.success-message .emoji {
  font-size: 40px;
  flex-shrink: 0;
  animation: bounce 0.6s infinite;
}

.success-message h2 {
  font-size: 22px;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.success-message p {
  font-size: 13px;
  margin: 0;
  word-break: break-all;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.close-btn:hover {
  transform: scale(1.2);
  color: #ffcccc;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 40px 0;
  }

  .footer-newsletter .row {
    flex-direction: column;
    text-align: center;
  }

  .footer-newsletter .col-lg-6 {
    width: 100%;
  }

  #newsletterForm {
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
  }

  #newsletter-submit {
    width: 100%;
    padding: 14px 20px;
  }

  .footer-top .row {
    flex-direction: column;
    gap: 30px;
  }

  .footer-top .col-lg-2,
  .footer-top .col-lg-3 {
    width: 100%;
    text-align: center;
  }

  .footer-top h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .success-message {
    top: 15px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .close-btn {
    margin: 0;
    order: -1;
    flex: 0 0 auto;
  }
}
