/* 
* Footer Styles
*/

.site-footer {
  margin-top: 5rem;
  background-color: var(--dark);
  color: var(--gray-400);
}

/* Footer Main */
.footer-main {
  padding: 5rem 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: 2.5rem;
}

/* Brand Column */
.brand-column {
  padding-right: 2rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: all var(--transition-normal) ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Footer Columns */
.footer-column h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 3px;
  background: var(--primary);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

/* Contact Column */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--primary);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.contact-info a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.contact-info a:hover {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin: 0;
  color: var(--gray-500);
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.legal-links a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--white);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background: var(--white);
  color: var(--gray-900);
  z-index: 1000;
  display: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: slide-up 0.5s ease forwards;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.cookie-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-header h5 i {
  color: var(--primary);
}

.close-button {
  background: transparent;
  border: none;
  color: var(--gray-600);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.close-button:hover {
  color: var(--dark);
}

.cookie-body {
  padding: 1.5rem;
}

.cookie-body p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-body a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-body a:hover {
  color: var(--primary-dark);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  gap: 0.75rem;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--primary);
}

.cookie-option label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.cookie-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-900);
}

.cookie-description {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.cookie-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--gray-100);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .cookie-consent {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: none;
    width: calc(100% - 2rem);
  }
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .brand-column {
    grid-column: span 4;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .contact-column {
    grid-column: span 4;
  }
}

@media (max-width: 992px) {
  .footer-main {
    padding: 4rem 0;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .brand-column {
    grid-column: span 2;
  }
  
  .contact-column {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3rem 0;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .brand-column, 
  .footer-column {
    grid-column: span 1;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}
