:root {
  --footer-bg: #0a0f2b;
  --footer-light: #1a237e;
  --footer-text: #e0e0e0;
  --footer-text-light: #b0b0b0;
  --footer-accent: #f9a826;
  --footer-border: #2a2f4a;
  --footer-hover: #ffffff;
  --footer-input-bg: #2a2f4a;
  --footer-radius: 8px;
  --footer-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 70px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-accent) 0%, var(--footer-light) 100%);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  grid-column: span 1;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-logo .logo-highlight {
  color: var(--footer-accent);
}

.footer-description {
  color: var(--footer-text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--footer-text-light);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--footer-accent);
  width: 16px;
  text-align: center;
}

.footer-links {
  grid-column: span 1;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--footer-accent);
}

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

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: var(--footer-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-list a:hover {
  color: var(--footer-hover);
  padding-left: 5px;
}

.footer-list a::before {
  content: '›';
  color: var(--footer-accent);
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-list a:hover::before {
  opacity: 1;
}

/* ===== NEWSLETTER SECTION ===== */
.footer-newsletter {
  grid-column: span 1;
}

.newsletter-description {
  color: var(--footer-text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  margin-bottom: 25px;
}

.input-group {
  display: flex;
  background-color: var(--footer-input-bg);
  border-radius: var(--footer-radius);
  overflow: hidden;
  border: 1px solid var(--footer-border);
  transition: border-color 0.3s ease;
}

.input-group:focus-within {
  border-color: var(--footer-accent);
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: var(--footer-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: var(--footer-text-light);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  background-color: var(--footer-light);
  color: white;
  border: none;
  padding: 0 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-button:hover {
  background-color: var(--footer-accent);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--footer-input-bg);
  color: var(--footer-text-light);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--footer-accent);
  color: white;
  transform: translateY(-3px);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 25px 0;
}

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

.copyright {
  color: var(--footer-text-light);
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
}

/* ===== FOOTER EXTRA ===== */
.footer-extra {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-selector {
  position: relative;
}

.language-select {
  background-color: var(--footer-input-bg);
  color: var(--footer-text);
  border: 1px solid var(--footer-border);
  border-radius: var(--footer-radius);
  padding: 8px 35px 8px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f9a826' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.language-select:focus {
  outline: none;
  border-color: var(--footer-accent);
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.badge {
  background-color: rgba(249, 168, 38, 0.1);
  color: var(--footer-accent);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(249, 168, 38, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-extra {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .copyright p {
    font-size: 0.8rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .footer {
    display: none;
  }
}

