/* Sitemap Page Styles */
:root {
  --dark-blue: #093a60;
  --golden: #cea54a;
  --light-blue: #e8f1f5;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --transition: all 0.3s ease;
}

/* Sitemap Hero Section */
.sitemap-hero-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0a4a7a 100%);
  color: white;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.sitemap-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>')
    no-repeat center bottom;
  background-size: cover;
}

.sitemap-hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.sitemap-hero-content {
  flex: 1;
  max-width: 600px;
}

.sitemap-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sitemap-hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.sitemap-hero-actions {
  display: flex;
  gap: 1rem;
}

.sitemap-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--golden);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(206, 165, 74, 0.3);
}

.sitemap-hero-button:hover {
  background-color: #b8913a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 165, 74, 0.4);
  color: white;
}

.sitemap-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sitemap-hero-icon {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Sitemap Content Section */
.sitemap-content-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.sitemap-content-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.sitemap-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.sitemap-intro p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sitemap Grid */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.sitemap-category {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid transparent;
}

.sitemap-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--golden);
}

.sitemap-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-blue);
}

.sitemap-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0a4a7a 100%);
  color: white;
  border-radius: 12px;
  font-size: 1.3rem;
}

.sitemap-category h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li {
  margin-bottom: 0.8rem;
}

.sitemap-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  color: var(--dark-gray);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sitemap-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(206, 165, 74, 0.1),
    transparent
  );
  transition: var(--transition);
}

.sitemap-link:hover::before {
  left: 100%;
}

.sitemap-link:hover {
  background-color: rgba(9, 58, 96, 0.05);
  transform: translateX(5px);
}

.sitemap-link i {
  color: var(--golden);
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.sitemap-link:hover i {
  transform: translateX(3px);
}

.sitemap-link-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--medium-gray);
  margin-top: 0.2rem;
  font-weight: 400;
}

.sitemap-link.current {
  background-color: rgba(206, 165, 74, 0.1);
  border-left: 4px solid var(--golden);
}

/* Sitemap CTA */
.sitemap-cta {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0a4a7a 100%);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sitemap-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.03"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>')
    no-repeat center bottom;
  background-size: cover;
}

.sitemap-cta-content {
  position: relative;
  z-index: 1;
}

.sitemap-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sitemap-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sitemap-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sitemap-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.sitemap-cta-button.primary {
  background-color: var(--golden);
  color: white;
  box-shadow: 0 4px 15px rgba(206, 165, 74, 0.3);
}

.sitemap-cta-button.primary:hover {
  background-color: #b8913a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 165, 74, 0.4);
}

.sitemap-cta-button.secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.sitemap-cta-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .sitemap-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .sitemap-hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .sitemap-hero-icon {
    font-size: 8rem;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-hero-title {
    font-size: 2.8rem;
  }

  .sitemap-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .sitemap-cta-button {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sitemap-hero-section {
    padding: 130px 0 60px;
  }

  .sitemap-hero-title {
    font-size: 2.2rem;
  }

  .sitemap-intro h2 {
    font-size: 2rem;
  }

  .sitemap-cta {
    padding: 2rem;
  }

  .sitemap-cta h3 {
    font-size: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .sitemap-hero-title {
    font-size: 1.8rem;
  }

  .sitemap-hero-icon {
    font-size: 6rem;
  }

  .sitemap-category {
    padding: 1.5rem;
  }

  .sitemap-cta {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}


/* Centered Sitemap Hero Section */
.sitemap-hero-section {
    background: linear-gradient(135deg, #093A60 0%, #0a4a7a 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.sitemap-hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sitemap-hero-content.centered-hero {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sitemap-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sitemap-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
}

.sitemap-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sitemap-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #CEA54A;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 165, 74, 0.3);
}

.sitemap-hero-button:hover {
    background: #b8913a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 165, 74, 0.4);
}

.sitemap-hero-button i {
    transition: transform 0.3s ease;
}

.sitemap-hero-button:hover i {
    transform: translateY(3px);
}

.sitemap-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.sitemap-hero-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.sitemap-hero-icon i {
    font-size: 3rem;
    color: #CEA54A;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitemap-hero-section {
        padding: 120px 0 60px;
        min-height: 50vh;
    }
    
    .sitemap-hero-title {
        font-size: 2.8rem;
    }
    
    .sitemap-hero-description {
        font-size: 1.1rem;
    }
    
    .sitemap-hero-icon {
        width: 100px;
        height: 100px;
    }
    
    .sitemap-hero-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .sitemap-hero-title {
        font-size: 2.2rem;
    }
    
    .sitemap-hero-description {
        font-size: 1rem;
    }
    
    .sitemap-hero-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .sitemap-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .sitemap-hero-icon i {
        font-size: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .sitemap-hero-title {
        font-size: 2rem;
    }
    
    .sitemap-hero-section {
        padding: 100px 0 50px;
    }
    
    .sitemap-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .sitemap-hero-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}