.construction-section {
    padding: 70px 25px;
    color: #ff7700;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin: 100px auto;
}

.construction-section .construction-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Cone and Barrier Elements */
.construction-section .construction-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.construction-section .cone {
    width: 40px;
    height: 60px;
    background: linear-gradient(to bottom, #ff7700 60%, #ff5500 60%);
    position: relative;
    border-radius: 2px;
    margin: 0 30px;
}

.construction-section .cone:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: #ff5500;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.construction-section .barrier {
    height: 20px;
    width: 200px;
    background: repeating-linear-gradient(45deg, #ff7700, #ff7700 10px, #333 10px, #333 20px);
}

/* Gear Animation Elements */
.construction-section .gear-animation {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 10px 0 20px;
}

.construction-section .gear {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ff7700;
    border-radius: 50%;
    left: 10px;
    top: 10px;
}

.construction-section .gear::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #f5f7fa;
    border-radius: 50%;
    top: 15px;
    left: 15px;
}

.construction-section .gear::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 
        -4px 0 0 2px #ff7700,
        4px 0 0 2px #ff7700,
        0 -4px 0 2px #ff7700,
        0 4px 0 2px #ff7700,
        -3px -3px 0 2px #ff7700,
        3px -3px 0 2px #ff7700,
        -3px 3px 0 2px #ff7700,
        3px 3px 0 2px #ff7700;
    animation: spin 5s linear infinite;
}

.construction-section .gear.small {
    width: 40px;
    height: 40px;
    left: 50px;
    top: 0;
    animation: spin-reverse 5s linear infinite;
}

.construction-section .gear.small::before {
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
}

/* Text Styles */
.construction-section h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 15px;
}

.construction-section .construction-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

/* Progress Bar */
.construction-section .progress-container {
    width: 100%;
    margin-top: 10px;
}

.construction-section .progress-bar {
    height: 8px;
    background-color: rgba(255, 119, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.construction-section .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #ff7700;
    animation: loading 8s infinite;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes loading {
    0% { width: 0; }
    20% { width: 20%; }
    50% { width: 50%; }
    80% { width: 80%; }
    100% { width: 100%; }
}