/* Construction Page Specific Styles */

/* Page Layout */
.construction-page {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Navigation Adjustments */
.construction-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-phone {
    background: var(--gradient-accent);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    transition: var(--transition-normal);
    text-decoration: none;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Construction Hero Section */
.construction-hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.construction-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(245, 101, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(26, 54, 93, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.construction-content {
    position: relative;
    z-index: 1;
}

/* Animated Construction Icons */
.construction-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.construction-icon {
    font-size: 4rem;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.bounce-1 {
    animation-name: bounce;
    animation-delay: 0s;
}

.bounce-2 {
    animation-name: bounce;
    animation-delay: 0.3s;
}

.bounce-3 {
    animation-name: bounce;
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Main Message */
.construction-message {
    margin-bottom: 4rem;
}

.construction-title {
    font-size: 4rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.construction-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Progress Section */
.construction-progress {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    max-width: 500px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(245, 101, 0, 0.1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

.progress-percentage {
    font-weight: var(--font-weight-bold);
    color: var(--accent-color);
    font-size: 1.125rem;
}

.progress-bar {
    height: 12px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    width: 0%;
    animation: progressFill 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes progressFill {
    to {
        width: 75%;
    }
}

.progress-text {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
}

/* Experience Badge */
.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(245, 101, 0, 0.1);
}

.badge-icon {
    font-size: 2rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.badge-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.construction-contact {
    background: white;
    padding: 5rem 0;
    border-top: 1px solid #e2e8f0;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    text-decoration: none;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.contact-method.phone:hover {
    background: rgba(245, 101, 0, 0.05);
}

.contact-method.email:hover {
    background: rgba(26, 54, 93, 0.05);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin: 0 auto;
}

.address-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.address-details {
    text-align: left;
}

.address-details p {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Services Preview */
.construction-services {
    padding: 4rem 0;
    background: var(--bg-light);
}

.construction-services h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

/* Footer */
.construction-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-hero {
        padding: 6rem 0 4rem;
    }

    .construction-icons {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .construction-icon {
        font-size: 3rem;
    }

    .construction-title {
        font-size: 2.5rem;
    }

    .construction-subtitle {
        font-size: 1.1rem;
    }

    .construction-progress {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .experience-badge {
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-address {
        padding: 1.5rem;
    }

    .services-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-item {
        padding: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-contact {
        display: none;
    }
}

@media (max-width: 480px) {
    .construction-hero {
        padding: 4rem 0 3rem;
    }

    .construction-title {
        font-size: 2rem;
    }

    .construction-icons {
        gap: 0.5rem;
    }

    .construction-icon {
        font-size: 2.5rem;
    }

    .experience-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-details {
        text-align: center;
    }

    .contact-address {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .address-details {
        text-align: center;
    }
}
