/* =========================================
   GRAPHIC SERVICES PAGE (services.css)
   ========================================= */

/* --- Wrapper Layout --- */
.coming-soon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 60px 20px 100px; /* Extra bottom padding for mobile nav */
    background: linear-gradient(135deg, var(--bg-color) 0%, #fdf5f6 100%);
}

/* --- Main Content Box --- */
.coming-soon-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 650px;
    width: 100%;
    border-top: 5px solid var(--primary);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Icon Styling with Pulse Animation --- */
.icon-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 2.5rem;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(233, 30, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

/* --- Typography --- */
.coming-soon-content h1 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.coming-soon-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Services Preview Pills --- */
.services-list-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.services-list-preview span {
    background: var(--white);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: 0.3s ease;
}

.services-list-preview span:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.1);
}

.services-list-preview span i {
    color: var(--primary);
    margin-right: 6px;
}

/* --- Action Box (WhatsApp CTA) --- */
.action-box {
    background: #fcfcfc;
    padding: 30px 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px dashed var(--border-color);
}

.action-box p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 500;
}

/* Customizing the WhatsApp Button */
.whatsapp-cta {
    background: #25d366; /* WhatsApp Official Green */
    border-color: #25d366;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    font-size: 1.05rem;
}

.whatsapp-cta:hover {
    background: #128C7E; /* Darker WhatsApp Green */
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .coming-soon-wrapper {
        padding: 40px 15px 90px; /* Adjust padding to avoid bottom nav overlap */
    }

    .coming-soon-content {
        padding: 40px 20px;
    }

    .coming-soon-content h1 {
        font-size: 1.8rem;
    }

    .coming-soon-content p {
        font-size: 0.95rem;
    }

    .icon-container {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .icon-container .fa-laptop-code {
        font-size: 1.5rem !important; /* Adjust secondary icon size */
    }

    .services-list-preview {
        gap: 10px;
    }

    .services-list-preview span {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .action-box {
        padding: 20px 15px;
    }
}