.page-hero-section {
    position: relative;
    width: 100%;
    height: 500px; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image covers full section */
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

    .coming-soon-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
/*        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(228,54,54,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');*/
        z-index: 1;
    }

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
/*    max-width: 600px;*/
    padding: 2rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e43636, #8a0606);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(228, 54, 54, 0.3);
/*    animation: pulse 2s ease-in-out infinite alternate;*/
}

@keyframes pulse {
    from {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(228, 54, 54, 0.3);
    }

    to {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(228, 54, 54, 0.4);
    }
}

.coming-soon-icon i {
    font-size: 2.5rem;
    color: white;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px var(--primary);
        color: white;
        text-decoration: none;
    }

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: transparent;
}

    .btn-outline-custom:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(1, 25, 54, 0.2);
        text-decoration: none;
    }

.estimated-time {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(228, 54, 54, 0.1), rgba(255, 107, 107, 0.1));
    color: var(--accent);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(228, 54, 54, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.2rem;
    }

    .coming-soon-subtitle {
        font-size: 1.1rem;
    }

    .coming-soon-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-icon {
        width: 80px;
        height: 80px;
    }

        .coming-soon-icon i {
            font-size: 2rem;
        }
}
