/* Under Construction Page Styles */
.construction-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f6f6 0%, #e8f4f8 50%, #daf4f6 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
    font-family: 'Nunito', sans-serif;
}

.construction-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22a0ab, #33a5bc);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(34, 160, 171, 0.3);
}

.logo-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22a0ab, #33a5bc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin: 0 0 10px 0;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Main Message */
.main-message {
    margin-bottom: 50px;
}

.construction-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.construction-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.construction-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    margin-bottom: 40px;
}

.contact-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.email-signup {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.email-input:focus {
    border-color: #22a0ab;
    background: white;
    box-shadow: 0 0 0 3px rgba(34, 160, 171, 0.1);
}

.notify-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, #22a0ab, #33a5bc);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 160, 171, 0.3);
}

.notify-btn:active {
    transform: translateY(0);
}

.success-message {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    color: #155724;
    border-radius: 12px;
    font-weight: 500;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Section */
.social-section {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8fdff, #e8f4f8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22a0ab;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 160, 171, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 160, 171, 0.2);
    background: linear-gradient(135deg, #22a0ab, #33a5bc);
    color: white;
}

.social-link img {
    width: 24px;
    height: 24px;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.construction-footer {
    border-top: 1px solid #ebeef2;
    padding-top: 25px;
    color: #666;
}

.construction-footer p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
}

.footer-links {
    font-size: 0.9rem;
}

.footer-links a {
    color: #22a0ab;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #33a5bc;
    text-decoration: underline;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 160, 171, 0.1), rgba(51, 165, 188, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .construction-title {
        font-size: 1.8rem;
    }

    .construction-description {
        font-size: 1rem;
    }

    .email-signup {
        flex-direction: column;
        align-items: stretch;
    }

    .notify-btn {
        width: 100%;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .construction-content {
        padding: 25px 15px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .construction-title {
        font-size: 1.5rem;
    }

    .construction-icon {
        font-size: 3rem;
    }

    .contact-section h3 {
        font-size: 1.5rem;
    }
}

/* Pulse animation for interactive elements */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 160, 171, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 160, 171, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 160, 171, 0);
    }
}
