.services-archive-page {
    direction: rtl;
    background: #faf9f6;
    font-family: 'Inter', 'Outfit', sans-serif;
    color: #1c1917;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.services-hero-header {
    position: relative;
    padding: 220px 0 120px;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=85');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.services-hero-header .header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 10, 9, 0.6) 0%, rgba(12, 10, 9, 0.85) 100%);
    z-index: 1;
}
.services-hero-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.services-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.85;
}
.services-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}
.services-breadcrumb a:hover {
    color: #bca374;
}
.services-breadcrumb .sep {
    font-size: 10px;
}
.services-hero-header .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.services-hero-header .page-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #d6d3d1;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
}

.luxury-cards-section {
    padding: 100px 0;
}

.luxury-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.luxury-srv-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f0ee;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.luxury-srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.srv-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
}

.srv-img-wrapper .srv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-srv-card:hover .srv-img-wrapper .srv-img {
    transform: scale(1.06);
}

.srv-img-wrapper .srv-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 9, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.luxury-srv-card:hover .srv-img-wrapper .srv-img-overlay {
    opacity: 1;
}

.srv-img-wrapper .srv-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bca374;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.srv-card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.srv-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1c1917;
    margin: 0 0 16px;
    line-height: 1.3;
}

.srv-divider {
    width: 40px;
    height: 2px;
    background: #bca374;
    margin-bottom: 20px;
    transition: width 0.4s;
}

.luxury-srv-card:hover .srv-divider {
    width: 60px;
}

.srv-desc {
    font-size: 14.5px;
    line-height: 1.8;
    color: #57534e;
    margin: 0 0 35px;
    flex-grow: 1;
}

.srv-footer {
    margin-top: auto;
}

.services-empty {
    padding: 100px 0;
}

.services-final-cta {
    background: #1c1917;
    color: white;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.services-final-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.services-final-cta p {
    font-size: 16px;
    color: #a8a29e;
    margin-bottom: 40px;
}
.cta-solid-btn {
    display: inline-flex;
    background: #bca374;
    color: #1c1917;
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}
.cta-solid-btn:hover {
    background: #d4b886;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(188, 163, 116, 0.25);
}

@media (max-width: 1024px) {
    .luxury-srv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .services-hero-header .page-title {
        font-size: 2.3rem;
    }
    .luxury-srv-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .luxury-cards-section {
        padding: 80px 0;
    }
    .services-final-cta h2 {
        font-size: 1.8rem;
    }
}