/* Technical service detail page */
.technical-page {
    background-color: #050505;
    animation: fadeIn 0.8s ease-in;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.detail-back-link {
    display: inline-block;
    margin: 20px;
    text-decoration: none;
    color: var(--gold-metalic);
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 50;
    position: relative;
}

.detail-back-link i {
    margin-right: 8px;
}

.detail-back-link .brand-sub {
    font-weight: 300;
    color: #fff;
}

.technical-detail-view {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 0 5% 50px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.technical-detail-view .detail-title {
    text-align: center;
    color: var(--gold-metalic);
    font-size: 3rem;
    letter-spacing: 5px;
    margin-top: -30px;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.technical-detail-view .detail-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    line-height: 1.8;
}

.detail-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--cream);
}

.solution-header {
    text-align: center;
    margin: 40px 0;
    width: 100%;
}

.solution-header h2 {
    color: var(--gold-metalic);
    font-size: 2rem;
    margin-bottom: 5px;
}

.joke-text {
    color: #888;
    font-style: italic;
    font-size: 1rem;
}

.appliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
    width: 100%;
}

.appliance-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.appliance-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-metalic);
}

.app-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-svg-icon {
    width: 60px;
    height: 60px;
    stroke: var(--gold-metalic);
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.appliance-card:hover .app-svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.appliance-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.fault-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.fault-list li {
    color: #eee;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
}

.fault-list li::before {
    content: "\2022";
    color: var(--gold-metalic);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

.side-badges {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.badge-item {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold-metalic);
    border-left: none;
    padding: 15px;
    border-radius: 0 15px 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gold-metalic);
    font-size: 1.2rem;
    width: 55px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.badge-item:hover {
    width: 210px;
    background: var(--gold-metalic);
    color: #000;
}

.badge-text {
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-item:hover .badge-text {
    opacity: 1;
}

.emergency-banner {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.emergency-text h3 {
    color: var(--gold-metalic);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.emergency-text p {
    color: #ccc;
    font-size: 0.95rem;
}

.emergency-btn {
    background-color: var(--gold-metalic);
    color: #000;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.brands-wrapper {
    margin-top: 60px;
    text-align: center;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    padding-top: 40px;
}

.brands-wrapper h3 {
    color: var(--gold-metalic);
    font-size: 1.5rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.brand-tag {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ccc;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
    letter-spacing: 1px;
}

.brand-tag:hover {
    background: var(--gold-metalic);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.technical-page .floating-wp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.technical-page .floating-wp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .technical-detail-view {
        padding: 0 5% 40px;
    }

    .technical-detail-view .detail-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
        margin-top: 0;
    }

    .technical-detail-view .detail-content {
        padding: 25px 20px;
    }

    .side-badges {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin: 10px 0 30px;
    }

    .badge-item {
        width: auto;
        border-left: 1px solid var(--gold-metalic);
        border-radius: 20px;
        padding: 8px 15px;
        background: rgba(212, 175, 55, 0.1);
    }

    .badge-text {
        opacity: 1;
        font-size: 0.85rem;
    }

    .badge-item i {
        font-size: 1rem;
    }

    .badge-item:hover {
        width: auto;
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold-metalic);
    }

    .emergency-banner {
        flex-direction: column;
        text-align: center;
    }
}
