/* Page Hero Catalog - Content Management Pages */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #E30613;
    --primary-hover: #B5050F;
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --bg-light: #ffffff;
    --bg-light-gray: #f8f9fa;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #cccccc;
    --text-gray-dark: #666666;
    --text-muted: #999999;
    --border-color: #333333;
    --border-light: #e0e0e0;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --card-shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --icon-bg: rgba(255, 255, 255, 0.1);
    --icon-border: rgba(255, 255, 255, 0.2);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* ===== HERO BANNER SECTION ===== */
.hero-banner-section {
    position: relative;
    background: var(--bg-dark);
}

.hero-banner-slideshow {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-banner-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-banner-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-banner-slideshow .slide:first-child {
    position: relative;
}

.hero-banner-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.4);
}

.hero-banner-slideshow .slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.4);
}

/* ===== SLIDESHOW FADE EFFECT ===== */
/* Simple fade transition using CSS opacity transition already defined above */

/* ===== SLIDESHOW RESPONSIVE & PERFORMANCE ===== */
@media (max-width: 768px) {
    .hero-banner-slideshow {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-banner-slideshow {
        height: 40vh;
        min-height: 300px;
    }
}

/* Performance optimizations */
.hero-banner-slideshow .slide img {
    will-change: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-banner-slideshow .slide {
        transition: opacity 0.5s ease;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
    z-index: 2;
}

/* ===== NEW HERO CONTENT ===== */
.hero-content-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227, 6, 19, 0.2);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(227, 6, 19, 0.3);
}

.hero-badge i {
    font-size: 1rem;
    color: var(--primary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-title-highlight {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary.hero-cta {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary.hero-cta:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
}

.btn-secondary.hero-cta {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary.hero-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon-item:hover {
    background: rgba(227, 6, 19, 0.1);
    border-color: rgba(227, 6, 19, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 6, 19, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-icon-item:hover .feature-icon {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.feature-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    transition: var(--transition);
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== SERVICE DIAGRAM ===== */
.service-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item {
    position: absolute;
    text-align: center;
    color: var(--text-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Service Item Positions */
.content-item {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.guides-item {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.central-item {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Hover Effects */
.service-item:hover .service-icon {
    background: rgba(227, 6, 19, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.3);
}

.service-item:hover .service-label {
    color: var(--primary-color);
}

.hero-catalog-section {
    padding: 0;
    background: var(--bg-light);
}

/* Category Section Spacing */
.hero-catalog-section + .hero-catalog-section {
    margin-top: 4rem;
    padding-top: 2rem;
    min-height: auto;
}

/* Last section margin bottom */
.hero-catalog-section:last-of-type {
    margin-bottom: 60px;
}

/* ===== BREADCRUMBS ===== */
.catalog-breadcrumbs {
    background: var(--bg-dark);
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}

/* ===== MAIN HEADING SECTION ===== */
.catalog-heading-section {
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    background: var(--bg-light);
}

.catalog-main-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.2;
}

/* Category Title Styles */
.catalog-category-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.catalog-category-desc {
    font-size: 1.1rem;
    color: var(--text-gray-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* View More Button for Category */
.category-view-more {
    padding: 2rem 0 3rem;
    text-align: center;
    background: var(--bg-light);
}

.btn-view-category {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-view-category:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

.btn-view-category i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-view-category:hover i {
    transform: translateX(5px);
}

.catalog-breadcrumbs .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.breadcrumb-item {
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-muted);
    margin: 0 0.75rem;
}

/* ===== HERO CONTENT GRID - Full Width ===== */
.hero-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 2rem 0;
}

/* ===== HERO CONTENT CARD ===== */
.hero-content-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--card-shadow-light);
    transition: var(--transition);
}

.hero-content-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.hero-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-content-card:hover .hero-card-image img {
    transform: scale(1.08);
}

/* ===== CARD ICONS ===== */
.card-icons {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.icon-item {
    opacity: 0.7;
    transition: var(--transition);
}

.hero-content-card:hover .icon-item {
    opacity: 1;
    transform: translateX(5px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--icon-bg);
    border: 1px solid var(--icon-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.icon-circle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ===== CARD CONTENT - Bottom Left Overlay ===== */
.card-content-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(0deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        transparent 100%);
    color: var(--text-dark);
    padding: 2.5rem;
    z-index: 2;
}

.card-content {
    text-align: left;
    max-width: 500px;
}

/* ===== CARD TEXT CONTENT ===== */
.card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-gray-dark);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-badge,
.date-badge {
    background: rgba(227, 6, 19, 0.2);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-badge {
    background: rgba(255, 255, 255, 0.2);
}

.card-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-gray-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray-dark);
    margin-bottom: 1.5rem;
}

.reading-time i {
    font-size: 0.8rem;
}

/* ===== READ MORE BUTTON ===== */
.read-more-btn {
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-transform: none;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.4);
}

.read-more-btn::after {
    content: '→';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(5px);
}

.card-action {
    margin-top: 1.5rem;
}

.read-more-text {
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    padding-right: 1.5rem;
}

.read-more-text::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.3s ease;
}

.hero-content-card:hover .read-more-text::after {
    transform: translateX(5px);
}

/* ===== LOAD MORE SECTION ===== */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    background: var(--bg-light);
}

.load-more-btn {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more-btn.loading .load-text {
    opacity: 0;
}

.load-more-btn.loading .load-spinner {
    display: inline-block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== PAGINATION ===== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    background: var(--bg-light);
}

.pagination-wrapper .pagination {
    background: transparent;
    margin: 0;
    display: flex;
    list-style: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pagination-wrapper .page-item {
    margin: 0;
}

.pagination-wrapper .page-link {
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    transform: translateY(-1px);
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
}

.pagination-wrapper .page-item.disabled .page-link {
    background: var(--bg-light-gray);
    border-color: var(--border-light);
    color: var(--text-muted);
    cursor: not-allowed;
}

.pagination-wrapper .page-item.disabled .page-link:hover {
    background: var(--bg-light-gray);
    border-color: var(--border-light);
    color: var(--text-muted);
    transform: none;
}

/* First and last items rounded corners */
.pagination-wrapper .page-item:first-child .page-link {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.pagination-wrapper .page-item:last-child .page-link {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* ===== CATEGORIES FILTER SECTION ===== */
.categories-filter-section {
    background: var(--bg-light-gray);
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.categories-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-filter-card {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.category-filter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.category-filter-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-filter-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-overlay p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== HERO BANNER RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-overlay {
        padding: 0 2rem;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-banner-image {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-overlay {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .feature-icon-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem;
        min-width: 120px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-label {
        font-size: 0.8rem;
    }

    .service-diagram {
        width: 300px;
        height: 300px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner-image {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-overlay {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-icon-item {
        min-width: 100px;
        padding: 0.6rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-label {
        font-size: 0.7rem;
    }

    .service-diagram {
        width: 250px;
        height: 250px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-label {
        font-size: 0.9rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .card-title {
        font-size: 1.6rem;
    }

    .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .catalog-main-title {
        font-size: 2.8rem;
    }

    .card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-card {
        height: 400px;
    }

    .catalog-main-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .catalog-heading-section {
        padding: 3rem 0;
    }

    .categories-filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-card {
        height: 350px;
    }

    .card-content-wrapper {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .catalog-main-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .catalog-heading-section {
        padding: 2.5rem 0;
    }

    .card-icons {
        top: 1.5rem;
        left: 1.5rem;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .categories-filter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content-card {
        height: 300px;
    }

    .card-content-wrapper {
        padding: 1.5rem 1rem;
    }

    .card-content {
        max-width: 100%;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .catalog-main-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .catalog-heading-section {
        padding: 2rem 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-card {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content-card:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-content-card:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-content-card:nth-child(4) {
    animation-delay: 0.3s;
}

.hero-content-card:nth-child(5) {
    animation-delay: 0.4s;
}

.hero-content-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* ===== SPECIAL HOVER EFFECTS ===== */
.hero-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(227, 6, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.hero-content-card:hover::before {
    opacity: 1;
}

/* ===== PAGINATION CUSTOM STYLES ===== */
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--text-light);
    --bs-pagination-bg: #1a1a1a;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #333;
    --bs-pagination-border-radius: 8px;
    --bs-pagination-hover-color: var(--text-light);
    --bs-pagination-hover-bg: var(--primary-color);
    --bs-pagination-hover-border-color: var(--primary-color);
    --bs-pagination-focus-color: var(--text-light);
    --bs-pagination-focus-bg: var(--primary-color);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25);
    --bs-pagination-active-color: var(--text-light);
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
    --bs-pagination-disabled-color: #666;
    --bs-pagination-disabled-bg: #0d0d0d;
    --bs-pagination-disabled-border-color: #222;
}
