/* Professional Footer Styles */
.professional-footer {
  background: #57524f;
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-section ul li a:hover {
  color: #ff6600;
  transform: translateX(5px);
}

/* Destination Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.destination-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.destination-item:hover {
  transform: translateY(-3px);
}

.destination-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 6px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.destination-item:hover .destination-thumb {
  border-color: #ff6600;
}

.destination-item span {
  font-size: 11px;
  color: #bdc3c7;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 30px;
}

/* Logo with decorative lines */
.footer-logo-with-lines {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 600px;
}

.decorative-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

/* Social Media */
.social-media {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.social-link:hover {
  background: #ffffff;
  color: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Copyright */
.footer-copyright {
  text-align: center;
  width: 100%;
}

.footer-copyright p {
  margin: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright p:first-child {
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-disclaimer {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 768px) {
  .footer-disclaimer {
    width: 95%;
    padding: 12px 15px;
    font-size: 11px !important;
  }
}

@media screen and (max-width: 480px) {
  .footer-disclaimer {
    width: 90%;
    padding: 10px;
    font-size: 10px !important;
  }
}

@media screen and (max-width: 768px) {
  .footer-disclaimer {
    width: 95%;
    padding: 12px 15px;
    font-size: 11px !important;
  }
}

@media screen and (max-width: 480px) {
  .footer-disclaimer {
    width: 100%;
    padding: 10px;
    font-size: 10px !important;
  }
}

/* Desktop view (1200px and above) */
@media screen and (min-width: 1200px) {
  .footer-disclaimer {
    font-size: 14px !important;
    max-width: 1000px;
    padding: 20px 40px;
    line-height: 1.7;
  }
}

/* Laptop view (992px to 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-disclaimer {
    max-width: 900px;
    padding: 18px 35px;
    line-height: 1.65;
  }
}

/* Tablet view (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .footer-disclaimer {
    max-width: 700px;
    padding: 15px 25px;
    line-height: 1.6;
  }
}

/* Mobile view (below 768px) */
@media screen and (max-width: 767px) {
  .footer-disclaimer {
    padding: 12px 20px;
    font-size: 11px !important;
    line-height: 1.5;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-section h4 {
    font-size: 13px;
  }
  
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .destination-thumb {
    height: 50px;
  }
  
  .footer-logo-with-lines {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .professional-footer {
    padding: 40px 0 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 30px;
  }
  
  .footer-section h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .footer-section ul li {
    margin-bottom: 6px;
  }
  
  .footer-section ul li a {
    font-size: 11px;
  }
  
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  
  .destination-thumb {
    height: 40px;
  }
  
  .destination-item span {
    font-size: 9px;
  }
  
  .footer-bottom {
    padding: 30px 0;
  }
  
  .footer-bottom-content {
    gap: 25px;
  }
  
  .footer-logo-with-lines {
    gap: 15px;
    max-width: 400px;
  }
  
  .footer-logo {
    height: 80px;
  }
  
  .footer-brand {
    font-size: 16px;
  }
  
  .social-media {
    gap: 15px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
  }
  
  .footer-main {
    gap: 20px;
    padding-bottom: 25px;
  }
  
  .footer-section h4 {
    font-size: 11px;
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    font-size: 10px;
  }
  
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  
  .destination-thumb {
    height: 35px;
  }
  
  .destination-item span {
    font-size: 8px;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-bottom-content {
    gap: 20px;
  }
  
  .footer-logo-with-lines {
    gap: 10px;
    max-width: 300px;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .footer-brand {
    font-size: 14px;
  }
  
  .social-media {
    gap: 12px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
  
  .footer-disclaimer {
    font-size: 10px !important;
  }
}

/* Print Styles */
@media print {
  .professional-footer {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: none !important;
  }
  
  .footer-section h4,
  .footer-brand {
    color: #000000 !important;
  }
  
  .footer-section ul li a {
    color: #333333 !important;
  }
  
  .social-media {
    display: none;
  }
  
  .destination-thumb {
    display: none;
  }
}

/* Focus States for Accessibility */
.footer-section ul li a:focus,
.social-link:focus {
  outline: 2px solid #3498db;
  outline-offset: 2px;
}

/* Animation for destination items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-item {
  animation: fadeInUp 0.6s ease forwards;
}

.destination-item:nth-child(1) { animation-delay: 0.1s; }
.destination-item:nth-child(2) { animation-delay: 0.2s; }
.destination-item:nth-child(3) { animation-delay: 0.3s; }
.destination-item:nth-child(4) { animation-delay: 0.4s; }
.destination-item:nth-child(5) { animation-delay: 0.5s; }
.destination-item:nth-child(6) { animation-delay: 0.6s; }
.destination-item:nth-child(7) { animation-delay: 0.7s; }
.destination-item:nth-child(8) { animation-delay: 0.8s; }
.destination-item:nth-child(9) { animation-delay: 0.9s; }

/* Package Navigation Arrows */
.package-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: none; /* Hide by default */
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.package-nav:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-nav.prev {
  left: 20px;
}

.package-nav.next {
  right: 20px;
}

.package-nav i {
  font-size: 20px;
  color: #333;
}

/* Show arrows when package section is visible */
.packages-section:hover .package-nav {
  display: flex;
}

@media (max-width: 768px) {
  .package-nav {
    width: 40px;
    height: 40px;
  }
  
  .package-nav.prev {
    left: 10px;
  }
  
  .package-nav.next {
    right: 10px;
  }
  
  .package-nav i {
    font-size: 16px;
  }
}