/* Newsletter Subscription Section */
.newsletter-section {
  background: #2a2a2a;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 200px;
  background: #000000;
  border-radius: 0 0 50% 0;
  z-index: 1;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter-text h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.newsletter-text p {
  color: white;
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.newsletter-form-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 300px;
}

.newsletter-form-container input {
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.newsletter-form-container input::placeholder {
  color: #cccccc;
}

.newsletter-form-container input:focus {
  outline: none;
  border-color: #ef4444;
}

.newsletter-submit-btn {
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.newsletter-submit-btn:hover {
  background: #dc2626;
}

/* Footer Information Section */
.footer {
  background: #000000;
  padding: 60px 0 30px 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-column h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-right: 12px;
}

.logo-mark {
  background: #ef4444;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 12px;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.logo-text {
  color: white;
  font-size: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-description {
  color: white;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.social-media-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #FF3B30;
  border-color: #FF3B30;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.3);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

/* Individual social media brand colors on hover */
.social-icon[aria-label="Facebook"]:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-icon[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.3);
}

.social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
  border-color: #E1306C;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-icon[aria-label="WhatsApp"]:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-info p,
.address-info p,
.opening-times p {
  color: white;
  margin: 0 0 8px 0;
  opacity: 0.9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-divider {
  height: 1px;
  background: #333333;
  margin: 30px 0;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copyright p {
  color: white;
  margin: 0;
  opacity: 0.8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.85rem;
  transition: opacity 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-legal-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .newsletter-text h2 { font-size: 1.9rem; }
  .footer-content { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .logo-text { font-size: 1.35rem; }
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .newsletter-text h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .newsletter-section {
    padding: 40px 0;
  }
  
  .newsletter-text h2 {
    font-size: 1.6rem;
  }
  
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer-content {
    gap: 25px;
  }
}

/* Footer Styles */
.footer {
  background: #1a1a1a !important;
  color: #ffffff;
  padding: 60px 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: block !important;
  width: 100%;
  overflow: visible !important;
}

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

.footer-column h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

/* Social Media Icons */
.social-media-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #333333;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  visibility: visible !important;
}

.social-icon:hover {
  background: #FF3B30;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Contact Info */
.contact-info p,
.address-info p,
.opening-times p {
  color: #cccccc;
  margin: 8px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: #333333;
  margin: 40px 0 25px 0;
  width: 100%;
  display: block !important;
}

/* Footer Copyright */
.footer-copyright {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.footer-copyright p {
  color: #888888;
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex !important;
  gap: 25px;
  flex-wrap: wrap;
  visibility: visible !important;
}

.footer-legal-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #FF3B30;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-media-icons {
    justify-content: center;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal-links {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-legal-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
  }
  .footer-legal-links a {
    flex: 1 1 calc(50% - 16px);
    text-align: center;
  }
  
  .social-media-icons {
    gap: 12px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
  }
  
  .social-icon svg {
    width: 16px;
    height: 16px;
  }
}