/* Modern Sidebar Cards */

.modern-sidebar-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(166, 66, 159, 0.1);
    border: 1px solid rgba(166, 66, 159, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(166, 66, 159, 0.15);
}

/* Card Header */
.modern-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.modern-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A6429F 0%, #FF7B18 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(166, 66, 159, 0.3);
}

.modern-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.modern-icon-question {
    background: linear-gradient(135deg, #FF7B18 0%, #A6429F 100%);
}

.modern-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

/* Card Content */
.modern-card-content {
    text-align: center;
}

.modern-card-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Features */
.modern-card-features {
    margin-bottom: 25px;
}

.modern-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #495057;
}

.modern-feature-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 14px;
}

/* Contact Info */
.modern-contact-info {
    margin-bottom: 25px;
}

.modern-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #495057;
}

.modern-contact-item i {
    color: #A6429F;
    margin-right: 10px;
    font-size: 14px;
}

/* Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.modern-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #A6429F 0%, #8B3A7A 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(166, 66, 159, 0.3);
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #8B3A7A 0%, #A6429F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 66, 159, 0.4);
    color: white;
}

.modern-btn-secondary {
    background: linear-gradient(135deg, #FF7B18 0%, #e67e22 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 123, 24, 0.3);
}

.modern-btn-secondary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #FF7B18 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 123, 24, 0.4);
    color: white;
}

/* Card Decorations */
.modern-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    pointer-events: none;
    opacity: 0.1;
}

.modern-decoration-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A6429F, #FF7B18);
}

.modern-decoration-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-image: radial-gradient(circle, #A6429F 2px, transparent 2px);
    background-size: 8px 8px;
}

.modern-decoration-question .modern-decoration-pattern {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF7B18, #A6429F);
    border-radius: 8px;
    transform: rotate(45deg);
}

.modern-decoration-question .modern-decoration-lines {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.3) 3px,
        rgba(255, 255, 255, 0.3) 6px
    );
}

/* Responsive */
@media (max-width: 768px) {
    .modern-sidebar-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .modern-card-title {
        font-size: 1.2rem;
    }

    .modern-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .modern-icon-wrapper i {
        font-size: 20px;
    }

    .modern-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modern-sidebar-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .modern-card-title {
        font-size: 1.1rem;
    }

    .modern-card-description {
        font-size: 0.9rem;
    }
}
