/* ── UNDER CONSTRUCTION PAGE SPECIAL STYLES ── */

.construction-hero {
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Status Badge */
.status-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: pulseBadge 3s infinite ease-in-out;
}

html[data-theme="light"] .status-badge-container {
    background: rgba(217, 119, 6, 0.12);
    border-color: rgba(217, 119, 6, 0.35);
    color: #b45309;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #f59e0b;
    animation: pingDot 1.8s infinite cubic-bezier(0, 0, 0.2, 1);
}

@keyframes pingDot {
    75%, 100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
    }
}

/* Main Construction Title & Description */
.construction-title {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .construction-title {
    background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.construction-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

/* Illustrated Construction Icon Banner */
.construction-graphic-card {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--border2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
}

.construction-stripe-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        -45deg,
        #f59e0b,
        #f59e0b 12px,
        #1e293b 12px,
        #1e293b 24px
    );
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.graphic-icon-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.5rem auto;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 10px 25px rgba(245, 158, 11, 0.2);
}

.graphic-icon-wrap svg {
    width: 44px;
    height: 44px;
    stroke: #f59e0b;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 3.5rem;
}

.countdown-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-align: center;
    margin-bottom: 1.2rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.countdown-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 0.5rem;
    text-align: center;
    transition: transform 0.3s var(--ease-spring), border-color 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.countdown-num {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.3rem;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Progress Status Section */
.progress-card {
    background: var(--glass-bg);
    border: 1px solid var(--border2);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-title-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background: var(--bg-elevated);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar-fill {
    height: 100%;
    width: 78%;
    background: var(--accent-gradient);
    border-radius: 100px;
    transition: width 1.5s var(--ease-out);
    position: relative;
    box-shadow: 0 0 12px rgba(0, 113, 227, 0.5);
}

.progress-tasks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.task-status-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-status-icon.done {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.task-status-icon.in-progress {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.task-status-icon.pending {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}

/* Quick Navigation Links */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 3.5rem;
}

.nav-card-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.2rem 1.4rem;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.nav-card-btn:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    background: var(--bg2);
}

.nav-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s var(--ease-spring);
}

.nav-card-btn:hover .nav-card-icon {
    transform: scale(1.1);
}

.nav-card-info {
    display: flex;
    flex-direction: column;
}

.nav-card-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-card-sub {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .construction-title {
        font-size: 1.75rem;
    }
    .nav-grid {
        grid-template-columns: 1fr;
    }
}
