/* ===========================================
   HEMERA COURTAGE - SVG Icons Library
   =========================================== */

/* Icon Container Base */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon svg {
    width: 100%;
    height: 100%;
}

/* Icon Sizes */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* Feature Icon Styling */
.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 55, 114, 0.08) 0%, rgba(11, 55, 114, 0.04) 100%);
    border-radius: 18px;
    margin: 0 auto 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary, #0B3772);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(11, 55, 114, 0.12) 0%, rgba(11, 55, 114, 0.06) 100%);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

/* Contact Icon Styling */
.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #0B3772);
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===========================================
   SVG ICON DEFINITIONS (inline usage)
   =========================================== */

/* Usage example in HTML:
   <div class="feature-icon">
       <svg class="icon-money">...</svg>
   </div>
*/
