/* ============================================
   SERVICE CARDS - Cyberpunk Gaming Theme
   ============================================ */

/* Service Section - Dark Theme */
.service-section {
    padding: 50px 0;
    background-color: transparent;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    /* Gradient Text */
    background: linear-gradient(135deg, #00d4ff, #bc13fe, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #bc13fe, #ff00ff);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.section-description {
    text-align: center;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Service Categories - Dark Theme */
.service-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.service-category {
    padding: 12px 25px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-category:hover {
    border-color: rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.service-category.active {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    border-color: transparent;
    box-shadow:
        0 5px 15px rgba(0, 212, 255, 0.3),
        0 0 20px rgba(188, 19, 254, 0.2);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card - Dark Theme */
.service-card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 212, 255, 0.2);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 212, 255, 0.15);
}

.service-card__image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 212, 255, 0.4);
    z-index: 1;
}

.service-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.service-card__desc {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card__details {
    margin-top: auto;
}

.service-card__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.service-card__detail-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border-radius: 50%;
    font-size: 1.1rem;
}

.service-card__detail-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-card__price {
    margin: 20px 0;
    padding: 15px;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.service-card__price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #39ff14;
    display: block;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.service-card__price-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
}

.service-card__action {
    display: flex;
    justify-content: center;
    padding: 15px 0 0;
}

.service-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card__btn i {
    transition: transform 0.3s ease;
}

.service-card__btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(188, 19, 254, 0.3);
}

.service-card__btn:hover i {
    transform: translateX(3px);
}

/* Service Filter - Dark Theme */
.service-filter {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-filter__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-filter__group {
    position: relative;
}

.service-filter__label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.service-filter__input {
    width: 100%;
    height: 45px;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    background-color: rgba(10, 10, 15, 0.6);
    color: #ffffff;
}

.service-filter__input:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-filter__input:focus {
    outline: none;
    border-color: #00d4ff;
    background-color: rgba(10, 10, 15, 0.8);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.service-filter__input--select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.service-filter__actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 25px;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-filter__button {
    border-radius: 10px;
    cursor: pointer;
    min-width: 180px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-filter__button--primary {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.service-filter__button--primary:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.service-filter__button--outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
}

.service-filter__button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Service Search - Dark Theme */
.service-search {
    margin-bottom: 40px;
}

.service-search__form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.service-search__input {
    flex-grow: 1;
    height: 50px;
    padding: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right: 0;
    border-radius: 10px 0 0 10px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    color: #ffffff;
}

.service-search__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.service-search__input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.service-search__button {
    width: 120px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-search__button:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* No Results - Dark Theme */
.no-results {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    max-width: 600px;
}

.no-results__icon {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.no-results__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.no-results__message {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Pagination - Dark Theme */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.8);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.pagination .page-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link:hover {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
}

/* Modal Styles for Services - Dark Theme */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.service-modal__content {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 600px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.1);
}

.service-modal__header {
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(188, 19, 254, 0.2));
    color: white;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-modal__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.service-modal__close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 51, 102, 0.2);
    border: 1px solid rgba(255, 51, 102, 0.3);
    color: #ff3366;
    font-size: 2.4rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-modal__close:hover {
    background: rgba(255, 51, 102, 0.3);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.service-modal__body {
    padding: 30px;
}

.service-modal__info {
    background: rgba(10, 10, 15, 0.6);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.service-modal__label {
    min-width: 120px;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.service-modal__value {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 500;
}

.service-modal__value--price {
    font-size: 2rem;
    font-weight: 700;
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.service-modal__form-group {
    margin-bottom: 20px;
}

.service-modal__form-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.service-modal__form-input {
    width: 100%;
    height: 45px;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.6);
    color: #ffffff;
}

.service-modal__form-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.service-modal__form-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    resize: vertical;
    background: rgba(10, 10, 15, 0.6);
    color: #ffffff;
}

.service-modal__form-textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.service-modal__discount {
    margin: 20px 0;
}

.service-modal__discount-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.service-modal__discount-input {
    height: 45px;
    padding: 0 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.6);
    color: #ffffff;
}

.service-modal__discount-input:focus {
    border-color: #00d4ff;
    outline: none;
}

.service-modal__discount-button {
    height: 45px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-modal__discount-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-modal__discount-message {
    font-size: 1.4rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.service-modal__discount-message--error {
    color: #ff3366;
}

.service-modal__discount-message--success {
    color: #39ff14;
}

.service-modal__notice {
    background: rgba(255, 215, 0, 0.15);
    border-left: 4px solid #ffd700;
    padding: 15px;
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

.service-modal__footer {
    padding: 20px 30px;
    background: rgba(10, 10, 15, 0.6);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-modal__btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.service-modal__btn--submit {
    background: linear-gradient(135deg, #00d4ff, #bc13fe);
    color: white;
    flex-grow: 1;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.service-modal__btn--submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.service-modal__btn--close {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-modal__btn--close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .service-filter__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .service-filter__row {
        grid-template-columns: 1fr;
    }

    .service-card__content {
        padding: 20px;
    }

    .service-card__title {
        font-size: 1.7rem;
    }

    .service-modal__footer {
        flex-direction: column;
    }

    .service-modal__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-search__form {
        flex-direction: column;
    }

    .service-search__input {
        border-radius: 10px 10px 0 0;
        border-right: 2px solid rgba(255, 255, 255, 0.1);
    }

    .service-search__button {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .service-filter__actions {
        flex-direction: column;
    }

    .service-filter__button {
        width: 100%;
    }

    .service-modal__discount-row {
        grid-template-columns: 1fr;
    }
}