/* ============================================
   CARD STYLES
   ============================================ */

/* About Cards */
.about-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    height: 100%;
}

.about-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.about-card h3,
.about-card h4 {
    color: var(--dark-navy);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-card .lead {
    color: #495057;
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-card p {
    color: #495057;
    line-height: 1.9;
}

.values-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #495057;
    border-bottom: 1px solid #E9ECEF;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--dark-navy);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(201, 168, 106, 0.4);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 1.2rem;
}

.service-desc {
    text-align: center;
    color: #6C757D;
    line-height: 1.9;
    font-size: 1.05rem;
}
