/* ============================================
   Clean Card Design Overrides
   Simplified, attractive card styling
   ============================================ */

/* === CLEAN SERVICE CARDS === */
.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(42, 42, 42, 0.4));
    border: 1px solid rgba(244, 208, 63, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 208, 63, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.2), rgba(212, 175, 55, 0.1));
    transform: scale(1.05);
}

.service-card-icon svg {
    width: 40px;
    height: 40px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.service-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1rem;
}

/* === DISABLE MOUSE EFFECTS === */

/* Disable custom cursor */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

/* Disable 3D card tilt */
.card-tilt,
.service-card.card-tilt,
.authority-card.card-tilt {
    transform: none !important;
    transform-style: flat !important;
}

.card-tilt:hover,
.service-card.card-tilt:hover,
.authority-card.card-tilt:hover {
    transform: translateY(-8px) !important;
}

/* Disable magnetic button effect */
.btn-magnetic {
    transform: none !important;
}

/* === AUTHORITY CARDS CLEAN DESIGN === */
.authority-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(42, 42, 42, 0.3));
    border: 1px solid rgba(244, 208, 63, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.authority-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 208, 63, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.authority-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authority-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.authority-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* === GENERAL CARD IMPROVEMENTS === */
.card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(42, 42, 42, 0.4));
    border: 1px solid rgba(244, 208, 63, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 208, 63, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Remove glassmorphism backdrop blur for cleaner look */
.glass-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card-icon {
        width: 64px;
        height: 64px;
    }

    .service-card-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    .service-card-text {
        font-size: 0.95rem;
    }

    .service-card-features li {
        font-size: 0.85rem;
    }
}