/* Explain: Elegant component styles for premium cards, forms and interactive elements */
.premium-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(37, 99, 235, 0.2);
}

.premium-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    background: var(--accent-soft);
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.premium-card:hover .premium-icon-box {
    background: var(--secondary-color);
    color: #ffffff;
    transform: scale(1.05);
}

.rounded-image-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.premium-input {
    width: 100%;
    padding: 1.15rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background: var(--background-color);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.premium-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px var(--accent-soft);
    background: #ffffff;
}
