/* Guide Page Specific Styles */

/* Main Container */
.guide-page {
    width: none;
    padding: 0 1rem;
    padding-top: 70px;
}

.guide-page .main-content {
    padding: 0;
    margin: 0;
}

.guide-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.guide-page .my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.guide-page .mt-5 {
    margin-top: 3rem;
}

/* Typography */
.guide-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.guide-page h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-page h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.guide-page h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guide-page .text-center {
    text-align: center;
}

.guide-page .text-dark {
    color: #212529;
}

.guide-page .text-success {
    color: #198754;
}

.guide-page .text-warning {
    color: #ffc107;
}

.guide-page .mb-0 {
    margin-bottom: 0;
}

.guide-page .mb-3 {
    margin-bottom: 1rem;
}

.guide-page .mb-4 {
    margin-bottom: 1.5rem;
}

.guide-page .mb-5 {
    margin-bottom: 3rem;
}

.guide-page .me-2 {
    margin-right: 0.5rem;
}

.guide-page .me-3 {
    margin-right: 1rem;
}

/* Layout Grid */
.guide-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.guide-page .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    padding: 0 0.75rem;
}

.guide-page .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.75rem;
}

.guide-page .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.75rem;
}

.guide-page .justify-content-center {
    justify-content: center;
}

.guide-page .g-4 {
    gap: 1.5rem;
}

/* Cards */
.guide-page .card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    transition: all 0.3s ease;
}

.guide-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guide-page .card.border-0 {
    border: none;
}

.guide-page .card.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.guide-page .card-body {
    padding: 1.5rem;
}

.guide-page .card-body.p-4 {
    padding: 1.5rem;
}

.guide-page .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.guide-page .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Guide Step Cards */
.guide-page .guide-step-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    /* max-width: 700px;
    margin-left: auto;
    margin-right: auto; */
}

.guide-page .guide-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.guide-page .guide-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #dc3545;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Flexbox Utilities */
.guide-page .d-flex {
    display: flex;
}

.guide-page .align-items-center {
    align-items: center;
}

/* Lists */
.guide-page ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.guide-page ul li {
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.6;
}

.guide-page ul li:last-child {
    margin-bottom: 0;
}

/* Icons */
.guide-page .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.guide-page .fa-check-circle {
    color: #198754;
}

.guide-page .fa-exclamation-triangle {
    color: #ffc107;
}

.guide-page .fa-heart {
    color: #dc3545;
}

/* Buttons */
.guide-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.guide-page .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.guide-page .btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.guide-page .btn-light:hover {
    color: #212529;
    background-color: #e9ecef;
    border-color: #dae0e5;
}

/* CTA Section */
.guide-page .cta-section {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 15px;
    margin: 3rem 0;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.guide-page .cta-section h4,
.guide-page .cta-section p {
    color: white;
    position: relative;
    z-index: 2;
}

.guide-page .cta-section .btn-light {
    position: relative;
    z-index: 2;
    background-color: white;
    color: #dc3545;
    border: none;
    transition: all 0.3s ease;
}

.guide-page .cta-section .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Blood Drop Animation in Background */
.guide-page .cta-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50% 50% 50% 0;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .guide-page .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .guide-page h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .guide-page .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .guide-page .my-5 {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .guide-page .mt-5 {
        margin-top: 2rem;
    }
    
    .guide-page .guide-step-card {
        padding: 1.25rem;
    }
    
    .guide-page .guide-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .guide-page .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .guide-page .container {
        padding: 0 0.5rem;
    }
    
    .guide-page .guide-step-card {
        padding: 1rem;
    }
    
    .guide-page .guide-step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .guide-page .cta-section {
        padding: 1.5rem;
    }
    
    .guide-page h1 {
        font-size: 1.75rem;
    }
}
