/* Specifications Section - Dark Theme with Golden Bullets */
.specifications-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.specifications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.specifications-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d1952a;
    margin: 0 0 40px 0;
    text-align: right;
    direction: rtl;
    position: relative;
}

.specifications-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.specifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl;
    text-align: right;
}

.specifications-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.specifications-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;

}

/* Highlight important measurements */
.specifications-list li strong {
    color: #d1952a;
    font-weight: 700;
}

/* Background Pattern */
.specifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.specifications-container {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .specifications-section {
        padding: 40px 0;
    }

    .specifications-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .specifications-list li {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .specifications-list li::before {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .specifications-section {
        padding: 30px 0;
    }

    .specifications-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .specifications-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-right: 25px;
    }

    .specifications-list li::before {
        width: 8px;
        height: 8px;
    }
}

/* Animation */
.specifications-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.specifications-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.specifications-list li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.specifications-section.animate .specifications-list li {
    opacity: 1;
    transform: translateX(0);
}

.specifications-section.animate .specifications-list li:nth-child(1) { transition-delay: 0.1s; }
.specifications-section.animate .specifications-list li:nth-child(2) { transition-delay: 0.2s; }
.specifications-section.animate .specifications-list li:nth-child(3) { transition-delay: 0.3s; }
.specifications-section.animate .specifications-list li:nth-child(4) { transition-delay: 0.4s; }
.specifications-section.animate .specifications-list li:nth-child(5) { transition-delay: 0.5s; }
.specifications-section.animate .specifications-list li:nth-child(6) { transition-delay: 0.6s; }
.specifications-section.animate .specifications-list li:nth-child(7) { transition-delay: 0.7s; }
.specifications-section.animate .specifications-list li:nth-child(8) { transition-delay: 0.8s; }
.specifications-section.animate .specifications-list li:nth-child(9) { transition-delay: 0.9s; }
.specifications-section.animate .specifications-list li:nth-child(10) { transition-delay: 1.0s; }
.specifications-section.animate .specifications-list li:nth-child(11) { transition-delay: 1.1s; }
.specifications-section.animate .specifications-list li:nth-child(12) { transition-delay: 1.2s; }
.specifications-section.animate .specifications-list li:nth-child(13) { transition-delay: 1.3s; }
.specifications-section.animate .specifications-list li:nth-child(14) { transition-delay: 1.4s; }
.specifications-section.animate .specifications-list li:nth-child(15) { transition-delay: 1.5s; }
