﻿/* Custom CSS for Bootstrap 5 - Jumbotron and Additional Components */

/* ===== JUMBOTRON STYLES ===== */
.jumbotron {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.375rem;
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.jumbotron h1,
.jumbotron .h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.jumbotron p {
    font-size: 1.25rem;
    font-weight: 300;
}

.jumbotron hr {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.jumbotron .lead {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Jumbotron variants */
.jumbotron-primary {
    background-color: #0d6efd;
    color: white;
}

.jumbotron-secondary {
    background-color: #6c757d;
    color: white;
}

.jumbotron-success {
    background-color: #198754;
    color: white;
}

.jumbotron-danger {
    background-color: #dc3545;
    color: white;
}

.jumbotron-warning {
    background-color: #ffc107;
    color: #212529;
}

.jumbotron-info {
    background-color: #0dcaf0;
    color: #212529;
}

.jumbotron-dark {
    background-color: #212529;
    color: white;
}

/* ===== HERO SECTIONS ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

    .hero h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

.hero-sm {
    padding: 3rem 0;
}

.hero-lg {
    padding: 8rem 0;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    padding: 2rem;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: #0d6efd;
    }

    .feature-box .icon {
        font-size: 3rem;
        color: #0d6efd;
        margin-bottom: 1rem;
    }

    .feature-box h4 {
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .feature-box p {
        color: #6c757d;
        margin-bottom: 0;
    }

/* ===== PRICING CARDS ===== */
.pricing-card {
    border: 2px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

    .pricing-card.featured {
        border-color: #0d6efd;
        transform: scale(1.05);
    }

    .pricing-card:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .pricing-card .badge-featured {
        position: absolute;
        top: -10px;
        right: 20px;
        background-color: #0d6efd;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 15px;
        font-size: 0.8rem;
    }

    .pricing-card .price {
        font-size: 3rem;
        font-weight: 700;
        color: #0d6efd;
        margin: 1rem 0;
    }

    .pricing-card .price-period {
        font-size: 1rem;
        color: #6c757d;
        font-weight: 400;
    }

    .pricing-card ul {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

        .pricing-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f8f9fa;
        }

            .pricing-card ul li:last-child {
                border-bottom: none;
            }

/* ===== TESTIMONIALS ===== */
.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0d6efd;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #495057;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 1rem;
    }

.testimonial-author-info h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-author-info small {
    color: #6c757d;
}

/* ===== CALL TO ACTION SECTIONS ===== */
.cta-section {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

/* ===== STATS SECTION ===== */
.stats-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0d6efd;
    display: block;
}

.stats-label {
    font-size: 1.1rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: #dee2e6;
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 20px;
        width: 12px;
        height: 12px;
        background-color: #0d6efd;
        border-radius: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

/* ===== UTILITY CLASSES ===== */
.bg-gradient-primary {
    background: linear-gradient(45deg, #0d6efd, #6610f2) !important;
}

.bg-gradient-success {
    background: linear-gradient(45deg, #198754, #20c997) !important;
}

.bg-gradient-danger {
    background: linear-gradient(45deg, #dc3545, #fd7e14) !important;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

    .shadow-hover:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    }
.border-hover {
    transition: border-color 0.3s ease;
}

    .border-hover:hover {
        border-color: #0d6efd !important;
    }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }

        .jumbotron h1,
        .jumbotron .h1 {
            font-size: 2.5rem;
        }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px !important;
    }
}

@media (max-width: 576px) {
    .jumbotron {
        padding: 1.5rem 1rem;
    }

        .jumbotron h1,
        .jumbotron .h1 {
            font-size: 2rem;
        }

    .hero {
        padding: 4rem 0;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .feature-box {
        margin-bottom: 2rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    
     /* Custom styles for enhanced appearance  --- report page*/
        .form-floating > .form-select {
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }
        
        .form-floating > label {
            opacity: 0.8;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25) !important;
        }
        
        .card {
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
        }
        
        .text-primary {
            color: #0d6efd !important;
        }
        
        .border-primary {
            border-color: #0d6efd !important;
        }
        
        @media (max-width: 768px) {
            .container-fluid {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

           .form-floating > .form-select {
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }
        
        .form-floating > label {
            opacity: 0.8;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25) !important;
        }
        
        .card {
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
        }
        
        .text-primary {
            color: #0d6efd !important;
        }
        
        .border-primary {
            border-color: #0d6efd !important;
        }
        
        /* Province checkbox styling */
        .province-checkbox-list {
            max-height: 200px;
            overflow-y: auto;
        }
        
        .province-checkbox-list input[type="checkbox"] {
            margin-right: 0.5rem;
            transform: scale(1.1);
        }
        
        .province-checkbox-list label {
            margin-bottom: 0.5rem;
            cursor: pointer;
            padding: 0.25rem 0;
            transition: color 0.2s ease;
        }
        
        .province-checkbox-list label:hover {
            color: #0d6efd;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container-fluid {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .province-checkbox-list {
                max-height: 150px;
            }
        }
        
        /* Section dividers */
        .row.mb-4:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding-bottom: 1.5rem;
        }

    /* Animation for cards */
    .card-body {
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Enhanced form styling */
    .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    }

    .form-text {
        font-style: italic;
    }

    
 

}

.bg-light-new {
    background-color: #f7f7f7 !important;
}
