/* Newsletter Section */
.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ee1c25 0%, #b3121c 100%);
}

.newsletter-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  height: 48px;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #333333;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #999999;
}

.newsletter-input:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-button {
  height: 48px;
  padding: 12px 32px;
  background: #121212;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-button:hover {
  background: #000000;
  transform: scale(1.05);
}

/* Responsive Newsletter Form */
@media (min-width: 640px) {
  .newsletter-form {
      flex-direction: row;
  }
}

@media (max-width: 768px) {
  .newsletter-title {
      font-size: 2rem;
  }
  
  .newsletter-description {
      font-size: 1rem;
      text-align: center;
  }
}

/* Footer Section */
.footer-section {
  background: #121212;
  color: #e6e6e6;
}

.footer-container {
  padding: 64px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo img {
  max-width: 175px;
  height: auto;
}

.brand-underline {
  width: 64px;
  height: 4px;
  background: #ee1c25;
  margin-bottom: 16px;
}

.brand-description {
  color: rgba(230, 230, 230, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.heading-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #ee1c25;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  list-style-type: none;
  padding: 0;
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(230, 230, 230, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ee1c25;
  transform: translateX(4px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.social-icons a:hover {
  background: #ee1c25;
  transform: scale(1.1);
}

/* Contact Info */
.contact-info {
  font-size: 0.875rem;
}

.contact-info p {
  color: rgba(230, 230, 230, 0.8);
  margin-bottom: 8px;
}

.contact-label {
  color: #ffffff;
  font-weight: 500;
}

.contact-info a {
  color: rgba(230, 230, 230, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ee1c25;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(230, 230, 230, 0.6);
  font-size: 0.875rem;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
      grid-template-columns: repeat(5, 1fr);
  }
  
  .footer-brand {
      grid-column: span 1;
  }
}