/* Base variables and utility for Certificates Module */
:root {
    --cert-navy: #0f3b63;
}

.text-navy {
    color: var(--cert-navy);
}

.bg-navy {
    background-color: var(--cert-navy);
}

.max-w-700 {
    max-width: 700px;
}

/* Specific button styles for the module */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #c5a02c;
    border-color: #c5a02c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Animations for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pole-card, .cert-card {
    animation: fadeInUp 0.5s ease backwards;
}

/* Delays for children cards */
.col-md-6:nth-child(1) .cert-card { animation-delay: 0.1s; }
.col-md-6:nth-child(2) .cert-card { animation-delay: 0.2s; }
.col-md-6:nth-child(3) .cert-card { animation-delay: 0.3s; }
.col-md-6:nth-child(4) .cert-card { animation-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .price-sticky {
        position: static !important;
    }
    .price-card {
        margin-bottom: 24px;
    }
}
@media (max-width: 575.98px) {
    .cert-hero-content { padding: 36px 0 28px; }
    .hero-stats { padding: 14px 16px; }
    .hero-stat { padding: 0 14px; }
}
