/* Premium Axes Grid Section - Corporate High End */

/* Container Grid */
.premium-axes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    /* Generous spacing */
    padding-top: 50px;
}

/* Base Card Style */
.premium-axis-card {
    background: #ffffff;
    border-radius: 16px;
    /* Smooth corners */
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Very light gold border */
    padding: 0;
    /* Content padding handled inside to allow full width headers if needed */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* 1. Visual Depth & Shadows */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* 2. Hover Effect */
.premium-axis-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.6);
}

/* 3. Icon Styling (Standout Element) */
.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B10D25 0%, #8a0a1d 100%);
    /* Deep Red Gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px auto;
    /* Pull up to sit on border or float above */
    margin-top: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(177, 13, 37, 0.3);
    border: 4px solid #fff;
    /* White ring to separate from bg */
}

/* Icon inside */
.card-icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

/* Alternate Gold Icon Background for variety or specific cards */
.premium-axis-card:nth-child(even) .card-icon-wrapper {
    background: linear-gradient(135deg, #D4AF37 0%, #b59230 100%);
    /* Gold Gradient */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Card Content Wrapper */
.card-content {
    padding: 0 35px 40px 35px;
    text-align: center;
}

/* 4. Typography */
.premium-axis-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A1A1A;
    /* Charcoal Black */
    margin-bottom: 10px;
}

.axis-slogan {
    font-size: 1.1rem;
    font-weight: 700;
    color: #B10D25;
    /* Deep Red Pop */
    margin-bottom: 20px;
    font-style: italic;
    /* Elegant touch */
}

/* Gold Divider */
.divider-gold {
    height: 2px;
    width: 60px;
    background: #D4AF37;
    margin: 0 auto 25px auto;
    border: none;
    border-radius: 2px;
}

.axis-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 5. List Styling */
.premium-list {
    list-style: none;
    padding: 0;
    text-align: right;
    /* Revert to natural reading flow for lists */
    margin-top: 20px;
}

.premium-list li {
    position: relative;
    padding-right: 30px;
    /* Space for bullet */
    margin-bottom: 12px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

/* Custom Bullet - Checkmark or Gold Dot */
.premium-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    color: #D4AF37;
    /* Gold Check */
    font-size: 0.9rem;
    background: rgba(212, 175, 55, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Highlight Card (e.g. Environmental) */
.premium-axis-card.highlight-card {
    border-top: 4px solid #B10D25;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-axes-grid {
        grid-template-columns: 1fr;
    }
}