/* Catalog Section Styles (Matching Vision Section) */
.catalog-section {
    background: linear-gradient(135deg, #135e34, #0d4024);
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.catalog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/pattern-light.png');
    opacity: 0.1;
    z-index: 0;
}

.catalog-section .section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.catalog-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.catalog-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f5d742;
}

.catalog-section .section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.catalog-section .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 15px;
    flex: 1;
}

.catalog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    max-width: 900px;
    height: calc(70vh - 120px);
    min-height: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #fff;
    transition: all 0.6s ease;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.carousel-item img.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: white;
    padding: 20px;
    transition: transform 0.5s ease;
    max-width: 100%;
    max-height: 100%;
}

.carousel-item:hover img.catalog-image {
    transform: scale(1.03);
}

.carousel-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 40px;
    background-color: #135e34;
    color: white;
}

.carousel-item-content .logo {
    width: 120px;
    margin-bottom: 30px;
}

.carousel-item-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.carousel-item-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 80%;
}

.carousel-item-content .contact-email {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #f5d742;
    font-weight: bold;
}

.carousel-item-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #135e34;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
}

.carousel-cover {
    background-color: #135e34;
    color: white;
}

.carousel-cover h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.carousel-cover p {
    font-size: 16px;
    margin-bottom: 20px;
}

.carousel-cover .logo {
    width: 100px;
    margin-bottom: 30px;
}

.carousel-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

.carousel-btn {
    background-color: #f5d742;
    color: #135e34;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.carousel-btn:hover {
    background-color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover::before {
    transform: translateX(100%);
}

.carousel-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-download {
    background-color: white;
    color: #135e34;
    position: relative;
    overflow: hidden;
    border: 2px solid #f5d742;
}

.carousel-download::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-download:hover::before {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 10px;
    gap: 10px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(19, 94, 52, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.carousel-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-dot:hover {
    transform: scale(1.2);
    background-color: rgba(19, 94, 52, 0.5);
}

.carousel-dot:hover::after {
    opacity: 0.7;
}

.carousel-dot.active {
    background-color: #135e34;
    transform: scale(1.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(19, 94, 52, 0.5);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }

    .carousel-item {
        width: 280px;
        height: 380px;
    }
    
    .carousel-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .carousel-container {
        height: 360px;
    }

    .carousel-item {
        width: 240px;
        height: 340px;
    }
}
