/* Premium Strategic Goals Section - Senior UI/UX Design */

/* Ensure the background section is light gray as requested */
.section-padding.bg-light {
    background-color: #f9fbfd;
    /* Very subtle cool gray */
    position: relative;
    z-index: 1;
}

/* Enhancing the Feature Card */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    /* Smooth corners */
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Springy transition */

    /* 1. Add Depth & Shadows (Soft, slightly lifted) */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Extremely subtle border definition */

    /* Ensure it stands out against the bg-light */
    transform: translateY(0);
}

/* 2. Hover Lift Effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(198, 168, 124, 0.3);
    /* Gold tint on border hover */
}

/* 3. Enhance Icons */
.feature-card .icon-large {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;

    /* Gradient Text for Icon (Gold to Darker Gold) */
    background: linear-gradient(135deg, #c6a87c 0%, #a08050 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Subtle Drop Shadow */
    filter: drop-shadow(0 5px 15px rgba(198, 168, 124, 0.3));

    transition: transform 0.3s ease;
}

.feature-card:hover .icon-large {
    transform: scale(1.1) rotate(5deg);
}

/* 4. Enhance Titles */
.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-secondary);
    /* Charcoal */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

/* Small underline for title */
.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #e0e0e0;
    /* Light gray underline */
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.feature-card:hover h3::after {
    width: 60px;
    background: var(--brand-accent);
    /* Gold on hover */
}

/* 5. Enhance Description */
.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Add a subtle top border accent */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}