/* =====================================================
   COMING SOON PAGE - Modern Styles
   ===================================================== */

/* Base Styles */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 50%, #fff9c4 100%);
    font-family: 'Nunito', 'Segoe UI', sans-serif;
}

/* Animated Background Elements */
.coming-soon-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 40%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 193, 7, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    left: 35%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle:nth-child(5) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 80%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }

    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Content Container */
.coming-soon-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 700px;
    width: 90%;
}

/* Logo Section */
.coming-soon-logo {
    margin-bottom: 30px;
}

.coming-soon-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 193, 7, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Main Heading */
.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffc107 0%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: #5c5c5c;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    min-width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.85rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Description */
.coming-soon-description {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Email Subscription Form */
.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto 40px;
}

.subscribe-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #333333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-input::placeholder {
    color: #888888;
}

.subscribe-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.2);
}

.subscribe-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.subscribe-btn i {
    margin-right: 8px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(40, 167, 69, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    background: #28a745;
    border-color: #28a745;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Text */
.coming-soon-footer {
    color: #777777;
    font-size: 0.9rem;
}

.coming-soon-footer a {
    color: #28a745;
    text-decoration: none;
}

.coming-soon-footer a:hover {
    text-decoration: underline;
}

/* Success Message */
.subscribe-success {
    display: none;
    padding: 15px 25px;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-radius: 50px;
    color: #ffffff;
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .coming-soon-subtitle {
        font-size: 1.1rem;
    }

    .countdown-container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 12px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .coming-soon-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 10px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}