/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    background: rgba(230, 0, 18, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.dark-section {
  background: linear-gradient(135deg, #2a2b2e 0%, #292f3a 100%);
}

.dark-section .section-title {
  color: white;
}

.dark-section .section-description {
  color: #c1c1c1;
}

.dark-section .gallery-item {
  border: 1px solid var(--text-light);
}

.dark-section .services-cta {
  border-top: 1px solid var(--text-light);
}

.dark-section .services-cta .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 7px 20px #e9626275;
    background: linear-gradient(135deg, #e4e4e4 0%, #f1cbcb 100%);
}


.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    @media (max-width: 768px) {
      font-size: 0.8rem;
    }
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: #ccc;
}

.breadcrumb a:hover {
    text-decoration: underline;
}