/* Professional Footer Styling */
.footer {
  background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Columns */
.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer-brand-column {
  max-width: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.1);
}

.footer-brand-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-brand-link:hover {
  transform: translateY(-2px);
}

.footer-brand-link:hover .footer-brand-name {
  color: #ffffff;
  text-shadow: 0 0 8px var(--primary-gold, #d4af37);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-gold, #d4af37);
  margin: 0;
  transition: all 0.3s ease;
}

.footer-brand-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary-gold, #d4af37);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold, #d4af37);
  transform: translateX(4px);
}

/* Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold, #d4af37);
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.contact-value:hover {
  color: var(--primary-gold, #d4af37);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit a {
  color: var(--primary-gold, #d4af37);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px var(--primary-gold, #d4af37);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand-column {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-brand-description {
    text-align: center;
    font-size: 16px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* Increase font sizes by 15% for tablet */
  .footer-brand-name {
    font-size: 23px;
  }
  
  .footer-title {
    font-size: 18px;
  }
  
  .footer-links a {
    font-size: 16px;
  }
  
  .contact-label {
    font-size: 13px;
  }
  
  .contact-value {
    font-size: 15px;
  }
  
  .footer-copyright p,
  .footer-credit p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .footer-brand-column {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-brand-description {
    text-align: center;
    font-size: 16px;
  }
  
  /* Maintain increased font sizes for mobile */
  .footer-brand-name {
    font-size: 23px;
  }
  
  .footer-title {
    font-size: 18px;
  }
  
  .footer-links a {
    font-size: 16px;
  }
  
  .contact-label {
    font-size: 13px;
  }
  
  .contact-value {
    font-size: 15px;
  }
  
  .footer-copyright p,
  .footer-credit p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0 20px;
  }
  
  .footer-brand-column {
    grid-column: 1;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-brand-name {
    font-size: 21px;
  }
  
  .footer-brand-description {
    font-size: 15px;
  }
  
  .footer-social a {
    width: 32px;
    height: 32px;
  }
  
  .footer-title {
    font-size: 17px;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    font-size: 16px;
  }
  
  .footer-contact {
    gap: 20px;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-label {
    font-size: 13px;
  }
  
  .contact-value {
    font-size: 15px;
    word-break: break-word;
  }
  
  .footer-copyright p,
  .footer-credit p {
    font-size: 15px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

/* Hover Effects */
.footer-column:hover .footer-title {
  color: #ffffff;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--primary-gold, #d4af37);
  color: #ffffff;
  transform: scale(1.1);
  transition: all 0.3s ease;
}