.product:nth-child(1) { transition-delay: 0.0s; }
.product:nth-child(2) { transition-delay: 0.1s; }
.product:nth-child(3) { transition-delay: 0.2s; }
.product:nth-child(4) { transition-delay: 0.0s; } 
.hero-section h1, .hero-section p.lead, .hero-btn { 
    opacity: 0; 
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero-section.is-visible h1 { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.1s; 
}
.hero-section.is-visible p.lead { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.3s; 
}
.hero-section.is-visible .hero-btn { 
    opacity: 1; 
    transform: translateY(0); 
    transition-delay: 0.5s; 
}
body {
    padding-top: 60px;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem; 
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
    letter-spacing: 5px; 
    text-transform: uppercase;
}
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 100px;
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
}
.card .icon {
    margin-bottom: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}
.card .icon [data-three-icon] {
    width: 100px;
    height: 100px;
}
.card {
    background: none;          
    border: none;              
    box-shadow: none;          
    color: #FFFFFF;
    padding: 35px;
    text-align: center;
    max-width: 400px;
    flex: 1 1 300px;
    min-width: 250px;
}
.card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card i {
    color: #ffffff; 
    font-size: 3rem;
    margin-bottom: 20px;
}
.card p {
    font-family: 'Roboto', 'Inter', sans-serif;
    padding: 0 0 25px 0; 
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    position: relative;
}
.card p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}

@media (max-width: 992px) {
    .page-title { font-size: 3.5rem; letter-spacing: 3px; }
    .card h4 { font-size: 1.3rem; }
}
@media (max-width: 768px) {
    .page-title { font-size: 2.5rem; margin-bottom: 40px; padding-top: 50px; letter-spacing: 2px; }
    .navbar-brand { font-size: 22px; }
    .cards-container { gap: 20px; }
    .card { min-width: 100%; }
}
