/* Services Redesign */
.services-page {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
}

/* Identical Hero Breadcrumb to maintain brand consistency */
/* Hero Breadcrumb Section */
.hero-breadcrumb {
    background: url('../images/Our_Services_Hero_B.svg') no-repeat center center;
    background-size: cover;
    height: 380px;
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 4px solid #D4AF37;
}

.services-intro {
    text-align: center;
    padding: 60px 15px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.services-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #273163;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(39, 49, 99, 0.1);
    border-color: #D4AF37;
}

.service-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img-box img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #273163;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    margin-top: auto;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: #273163;
}

/* Responsive */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-breadcrumb {
        height: 300px;
    }
    .services-intro h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .hero-breadcrumb {
        height: 200px;
        margin-bottom: 15px;
    }
    .services-intro {
        padding: 40px 15px 20px;
    }
    .services-intro h2 {
        font-size: 1.8rem;
    }
    .services-intro p {
        font-size: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-img-box {
        height: 200px;
    }
    .service-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-breadcrumb {
        height: 120px;
        width: 94%;
        margin: 10px auto;
        border-radius: 12px;
        background-size: contain;
        background-color: #ffffff;
    }
}
