/* useful-information.css - Premium Redesign */

/* Inherit core variables and styles from style.css */

/* Hero adjustments are handled by inline styles or style.css 'about-hero' classes */

/* --- Info Cards Grid --- */
.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 113, 0.15); /* Blue-tinted shadow on hover */
    border-color: rgba(255, 193, 7, 0.3); /* Subtle gold border */
}

/* Icon Wrapper */
.info-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 58, 113, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-icon-wrapper i {
    font-size: 24px;
    color: #1e3a71; /* Brand Blue */
    transition: all 0.3s ease;
}

.info-card:hover .info-icon-wrapper {
    background: #1e3a71;
    transform: scale(1.1);
}

.info-card:hover .info-icon-wrapper i {
    color: #ffffff;
}

/* Typography */
.info-title {
    font-family: 'effra', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a71;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.info-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Arrow */
.info-arrow {
    align-self: flex-end;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a71;
    transition: all 0.3s ease;
}

.info-card:hover .info-arrow {
    background: #ffc107;
    border-color: #ffc107;
    color: #1e3a71;
    transform: translateX(5px);
}

/* Section Title decoration */
.section-title-premium {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}
