/* services.css.new - Custom styles for services page */

/* Services hero section customizations */
/* .parallax-container.services-hero {
    position: absolute;
    top: 0;
    height: 60vh;

} */

main section.container {
    z-index: 2;
    position: relative;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(25, 35, 58, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 2.5rem 0;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.service-media {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-media img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.05);
}

.service-info {
    padding: 1.5rem;
    text-align: center;
}

.service-info h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.service-info p {
    color: var(--color-platinum);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-btn {
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid var(--color-gold);
}

.cta-btn:hover {
    background: transparent;
    color: var(--color-gold);
}

/* Service features section */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(25, 35, 58, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(25, 35, 58, 0.8);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--color-platinum);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-platinum);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
        align-items: stretch;
    }

    .service-media {
        width: 40%;
    }

    .service-media img {
        height: 100%;
    }

    .service-info {
        width: 60%;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .service-info {
        padding: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}