/* ===== Styles pour les services propriétaires ===== */

.owner-service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 320px;
    max-width: 400px;
    flex: 0 0 380px;
}

.owner-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.owner-service-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    border-radius: 16px;
    z-index: 1;
}

.owner-service-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.owner-service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.owner-service-image-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.owner-service-type-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.owner-service-price-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.owner-service-body {
    padding: 20px;
}

.owner-service-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.owner-service-icon {
    font-size: 20px;
}

.owner-service-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: #1a1a1a;
    line-height: 1.3;
}

.owner-service-description {
    font-size: 14px;
    color: #4A4A4A;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.owner-service-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.owner-service-duration span:first-child {
    font-size: 12px;
}

.owner-service-duration span:last-child {
    font-size: 13px;
    color: #8A8A8A;
}

.owner-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.owner-service-feature-tag {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    color: #4A4A4A;
}

.owner-service-button {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owner-service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===== Styles pour la section services propriétaires ===== */
.owner-services-section {
    background: #FFFFFF;
    position: relative;
    overflow: visible;
    padding: 60px 0;
    z-index: 0;
}

.owner-services-decoration-top {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    opacity: 0.02;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.owner-services-decoration-bottom {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    opacity: 0.015;
    z-index: 0;
    animation: float 6s ease-in-out infinite reverse;
}

.owner-services-content {
    position: relative;
    z-index: 1;
}

.owner-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.owner-services-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.owner-services-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.owner-services-subtitle {
    font-size: 18px;
    color: #4A4A4A;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 32px auto;
}

.owner-services-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.owner-services-stat {
    text-align: center;
}

.owner-services-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.owner-services-stat-label {
    font-size: 12px;
    color: #8A8A8A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owner-services-cta {
    text-align: center;
    margin: 60px auto 0 auto;
    padding: 32px;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.owner-services-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.owner-services-cta-text {
    font-size: 16px;
    color: #4A4A4A;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.owner-services-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.owner-services-cta-button {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.owner-services-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-12px) rotate(3deg);
    }
    66% {
        transform: translateY(-6px) rotate(-2deg);
    }
}

