/* Enhanced Service Card Design */
.service-card {
    background: var(--bg-card);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(209, 160, 4, 0.25), 0 0 25px rgba(209, 160, 4, 0.4);
    cursor: pointer;
}

.service-card:hover .service-media img,
.service-card:hover .service-media video {
    transform: scale(1.1);
}

.service-media {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-media img,
.service-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
    z-index: 1;
}

.service-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 36px;
    color: #fff;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

.service-link i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

/* Original styles from the page */
.hero-section, .cta-section, .footer {
    /* ... keeping original styles for these sections ... */
}
