.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(67, 233, 123, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Main Footer Content */
.footer-main {
  padding: 80px 0 40px;
}

/* Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.brand-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

.logo-icon {
  color: #FF6B35;
  font-size: 2.2rem;
}

.logo-text {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

.feature-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  color: #FF6B35;
  font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.newsletter-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.newsletter-section > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
  padding: 15px 20px;
  background: #FF6B35;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-btn:hover {
  background: #FF8C42;
  transform: scale(1.05);
}

.btn-icon {
  font-size: 1.1rem;
}

.newsletter-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(67, 233, 123, 0.1);
  border: 1px solid rgba(67, 233, 123, 0.3);
  border-radius: 12px;
  color: white;
}

.success-icon {
  font-size: 1.5rem;
  color: #43e97b;
}

.success-message strong {
  display: block;
  margin-bottom: 2px;
}

.success-message p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* App Download */
.app-download h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--store-color);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 160px;
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.store-icon {
  font-size: 1.5rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-text span {
  font-size: 0.7rem;
  opacity: 0.9;
}

.store-text strong {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Middle Section */
.footer-middle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.link-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.link-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #FF6B35;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: #FF6B35;
  padding-left: 10px;
}

.footer-link::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #FF6B35;
}

.footer-link:hover::before {
  opacity: 1;
  left: -5px;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
  color: #FF6B35;
  transform: translateX(5px);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  color: #FF6B35;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  text-align: left;
}

.badge-icon {
  font-size: 2rem;
  color: #FF6B35;
  flex-shrink: 0;
}

.badge div {
  display: flex;
  flex-direction: column;
}

.badge strong {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: white;
}

.badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Bottom Section */
.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.copyright-icon {
  font-size: 0.8rem;
}

.legal-links {
  display: flex;
  gap: 25px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

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

.made-with {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.heart-icon {
  color: #FF6B35;
  font-size: 0.7rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #FF6B35;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.back-to-top:hover {
  background: #FF8C42;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.top-icon {
  font-size: 1.2rem;
  transform: rotate(-90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .feature-tags {
    grid-template-columns: 1fr;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .app-button {
    min-width: auto;
  }
  
  .bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top,
  .footer-middle {
    gap: 30px;
  }
  
  .brand-description {
    font-size: 1rem;
  }
  
  .footer-logo {
    font-size: 2rem;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .newsletter-input {
    padding: 12px 15px;
  }
  
  .subscribe-btn {
    padding: 12px 15px;
  }
}