/* ===== COMING SOON PAGE STYLES ===== */

.coming-soon-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2942 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 169, 111, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.coming-soon-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #d4b87a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(197, 169, 111, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.icon-wrapper i {
    font-size: 60px;
    color: white;
}

.coming-soon-content h1 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.coming-soon-content h2 {
    font-size: 32px;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-soon-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 150px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 32px;
    color: var(--color-accent);
}

.feature-item span {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.coming-soon-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(197, 169, 111, 0.3);
    transition: all 0.3s ease;
}

.coming-soon-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(197, 169, 111, 0.4);
}

.coming-soon-content .btn i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .coming-soon-section {
        padding: 60px 20px;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .icon-wrapper i {
        font-size: 50px;
    }

    .coming-soon-content h1 {
        font-size: 36px;
    }

    .coming-soon-content h2 {
        font-size: 24px;
    }

    .coming-soon-content p {
        font-size: 16px;
    }

    .features {
        gap: 20px;
    }

    .feature-item {
        min-width: 120px;
        padding: 15px;
    }

    .feature-item i {
        font-size: 24px;
    }

    .feature-item span {
        font-size: 13px;
    }
}