

.price-modal-bg {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.price-modal-bg.show {
    display: flex;
}

.price-modal-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: priceModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-modal-box::-webkit-scrollbar {
    width: 8px;
}

.price-modal-box::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
    margin: 10px 0;
}

.price-modal-box::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4CAC26 0%, #3d8b20 100%);
    border-radius: 10px;
    border: 2px solid #f1f3f4;
}

.price-modal-box::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3d8b20 0%, #2d6b1a 100%);
}

.price-modal-box::-webkit-scrollbar-corner {
    background: transparent;
}

.price-modal-box {
    scrollbar-width: thin;
    scrollbar-color: #4CAC26 #f1f3f4;
}

@keyframes priceModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.price-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px 25px;
    border-bottom: 1px solid #e9ecef;
    background: #000000;
    border-radius: 20px 20px 0 0;
    color: white;
}

.price-modal-header h2 {
    margin: 0;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.price-modal-subtitle {
    padding: 10px 25px 15px 25px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.price-modal-subtitle h3 {
    margin: 0;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.additional-service-section {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

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

.safeguard-title {
    margin: 0;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.service-badge {
    background: linear-gradient(135deg, #4CAC26 0%, #3d8b20 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-image {
    text-align: center;
}

.service-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-main-image-desktop {
    display: block;
}

.service-main-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .service-main-image-desktop {
        display: none !important;
    }
    
    .service-main-image-mobile {
        display: block !important;
    }
}

.additional-images-section {
    padding: 20px;
    background: #f8f9fa;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid #e9ecef;
}

.additional-image-block {
    text-align: center;
}

.additional-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.additional-image-desktop {
    display: block;
}

.additional-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .additional-image-desktop {
        display: none !important;
    }
    
    .additional-image-mobile {
        display: block !important;
    }
}

.price-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.price-modal-content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 25px;
    justify-content: center;
}

.price-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
}

.price-section:last-child {
    margin-bottom: 0;
}

.price-section-header {
    display: flex;
    align-items: center;
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #4CAC26 0%, #3d8b20 100%);
    border-radius: 12px 12px 0 0;
    color: white;
}

.price-section-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

.price-section-header h3 {
    margin: 0;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.price-item-name {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2c3e50;
}

.price-item-value {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-card {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #4CAC26;
}

.price-card-name {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: normal;
}

.price-card-value {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.additional-services {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.additional-services-title {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 10px;
}

.additional-service {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-bottom: 8px;
    gap: 8px;
}

.additional-service:last-child {
    margin-bottom: 0;
}

.service-plus-icon {
    width: 14px;
    height: 14px;
    filter: invert(30%) sepia(80%) saturate(1500%) hue-rotate(80deg) brightness(90%) contrast(100%);
}

.service-name {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6c757d;
    flex: 1;
}

.service-price {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4CAC26;
}

.additional-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.additional-card {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.additional-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.additional-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #4CAC26;
}

.additional-card-name {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: normal;
}

.additional-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.additional-price-icon {
    width: 16px;
    height: 16px;
    filter: invert(30%) sepia(80%) saturate(1500%) hue-rotate(80deg) brightness(90%) contrast(100%);
}

.additional-card-price span {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

@media (max-width: 1200px) {
    .price-modal-content {
        grid-template-columns: repeat(2, 350px);
        gap: 25px;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .price-modal-content {
        grid-template-columns: repeat(2, 320px);
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .price-modal-bg {
        padding: 15px 5px;
    }
    
    .price-modal-box {
        margin: 0;
        max-height: calc(100vh - 30px);
        border-radius: 20px;
        width: calc(100% - 10px);
    }
    
    .price-modal-header {
        padding: 20px 20px 15px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .price-modal-header h2 {
        font-size: 24px;
        padding: 0;
        margin: 0;
    }
    
    .price-modal-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        margin: 0;
    }
    
    .price-modal-subtitle {
        padding: 10px 20px 15px 20px;
    }
    
    .price-modal-subtitle h3 {
        padding: 0;
        margin: 0;
    }
    
    .price-modal-content {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
        justify-content: stretch;
    }
    
    .price-section {
        padding: 0;
        margin: 0;
        border-radius: 12px;
    }
    
    .price-section-header {
        margin: 0;
        padding: 15px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .price-section-header h3 {
        font-size: 20px;
    }
    
    .price-list,
    .price-cards {
        padding: 15px 20px 20px 20px;
    }
    
    .price-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        margin: 0 0 12px 0;
    }
    
    .price-item:last-child {
        margin-bottom: 0;
    }
    
    .price-item-value {
        font-size: 16px;
    }
    
    .price-card {
        padding: 15px 20px;
        margin: 0 0 12px 0;
        border-radius: 8px;
    }
    
    .price-card:last-child {
        margin-bottom: 0;
    }
    
    .offer-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .offer-badge {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .price-modal-footer {
        padding: 15px 20px 20px 20px;
        flex-direction: column;
    }
    
    .price-modal-btn {
        width: 100%;
        min-width: auto;
    }
    
    .additional-services {
        padding: 15px 20px 0 20px;
        margin-top: 15px;
        border-top: 1px solid #e9ecef;
    }
    
    .additional-services-title {
        margin-bottom: 10px;
    }
    
    .additional-cards {
        padding: 0;
        gap: 12px;
    }
    
    .additional-card {
        padding: 15px 20px;
        margin: 0;
        border-radius: 8px;
    }
    
    .additional-service-section {
        padding: 20px;
        margin: 0;
    }
    
    .service-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin: 0 0 20px 0;
        padding: 0;
    }
    
    .service-image {
        padding: 0;
    }
    
    .additional-images-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        margin: 0;
    }
    
    .additional-image-block {
        padding: 0;
        margin: 0;
    }
    
    .safeguard-title {
        font-size: 22px;
        margin: 0;
    }
}
