/* SERVICES PAGE SPECIFIC STYLES */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #c8c8c8;
    position: relative;
    z-index: 1;
}



/* TERMINAL INTRO */
.services-intro {
    margin-bottom: 4rem;
}

.cyber-terminal {
    background: rgba(10, 15, 20, 0.85);
    border: 1px solid #0ff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.terminal-header {
    background: #0a0a0a;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.terminal-title {
    font-family: 'Courier New', monospace;
    color: #0ff;
    font-size: 0.9rem;
}

.terminal-controls {
    display: flex;
}

.terminal-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 6px;
}

.terminal-controls span:nth-child(1) {
    background: #ff5f56;
}

.terminal-controls span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-controls span:nth-child(3) {
    background: #27c93f;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
}

.terminal-body .line {
    margin-bottom: 0.7rem;
    color: #0f0;
    font-size: 1rem;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: #0ff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* TABS NAVIGATION */
.service-categories {
    margin-bottom: 2rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tab-button {
    background: #111;
    border: 1px solid #333;
    color: #999;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tab-button:hover {
    border-color: #0ff;
    color: #0ff;
}

.tab-button.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: #0ff;
    color: #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* SERVICE CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(15, 20, 25, 0.85);
    
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #0ff;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0ff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-status {
    font-size: 0.8rem;
    color: #0f0;
    font-family: 'Courier New', monospace;
}

.service-card[data-category="automation"] .card-status {
    color: #ff9d00;
}

.service-card[data-category="hardware"] .card-status {
    color: #ff00de;
}

.service-card.special .card-status {
    color: #ff0000;
}

.card-body {
    padding: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #ddd;
}

.feature-list li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: #0ff;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.tech-stack span {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.price-tag {
    color: #0ff;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.duration {
    font-size: 0.8rem;
    color: #777;
}

/* Special Card */
.service-card.special {
    border-color: #ff003c;
}

.service-card.special .card-icon {
    color: #ff003c;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.service-card.special:hover {
    border-color: #ff003c;
    box-shadow: 0 15px 30px rgba(255, 0, 60, 0.15);
}

.service-card.special .tech-stack span {
    color: #ff003c;
    border-color: rgba(255, 0, 60, 0.3);
}

/* PROCESS TIMELINE */
.process-section {
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0ff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.blink {
    animation: blink 1s infinite;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,255,255,0) 0%, rgba(0,255,255,1) 15%, rgba(0,255,255,1) 85%, rgba(0,255,255,0) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #0ff;
    color: #0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.timeline-content {
    width: 45%;
    background: rgba(15, 20, 25, 0.85);
    padding: 1.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #0ff;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -20px;
}

.timeline-content h3 {
    color: #0ff;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #ddd;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: baseline;
}

.faq-item {
    background: rgba(15, 20, 25, 0.85);
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    color: #0ff;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p.add-to-cart {
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart.adding {
    background: rgba(0, 255, 255, 0.15);
    border-color: #0ff;
    animation: pulse-border 1s infinite;
}

.add-to-cart.success {
    background: rgba(0, 255, 0, 0.2);
    border-color: #0f6;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

.faq-item.open .faq-answer {
    padding: 1.2rem;
    height: auto;
}

/* CONTACT CTA */
.contact-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(15, 20, 25, 0.473);
    border: 1px solid #0ff;
    border-radius: 5px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}


.cta-glitch-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.cta-title.glitching:before,
.cta-title.glitching:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-title.glitching:before {
    left: 2px;
    text-shadow: -1px 0 #ff00de;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 0.3s linear forwards;
}

.cta-title.glitching:after {
    left: -2px;
    text-shadow: 1px 0 #00ffaa;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 0.3s linear forwards;
}

.cta-text {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cyber-button {
    display: inline-block;
    position: relative;
    padding: 1rem 2rem;
    background: #000;
    border: 2px solid #0ff;
    color: #0ff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
}

.cyber-button:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.button-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.3);
    transform: translateX(-100%);
    transition: transform 0.2s;
}

.cyber-button:hover .button-glitch {
    transform: translateX(100%);
    transition: transform 0.5s;
}

/* BACKGROUND ELEMENTS */
.cyber-grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(15, 20, 25, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 20, 25, 0.9) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.2;
}

.cyber-scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 51%
    );
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.15;
}

/* ANIMATIONS */
@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    5% {
        clip: rect(70px, 9999px, 71px, 0);
    }
    10% {
        clip: rect(29px, 9999px, 95px, 0);
    }
    15% {
        clip: rect(21px, 9999px, 73px, 0);
    }
    20% {
        clip: rect(9px, 9999px, 52px, 0);
    }
    25% {
        clip: rect(22px, 9999px, 40px, 0);
    }
    30% {
        clip: rect(98px, 9999px, 95px, 0);
    }
    35% {
        clip: rect(14px, 9999px, 87px, 0);
    }
    40% {
        clip: rect(61px, 9999px, 63px, 0);
    }
    45% {
        clip: rect(34px, 9999px, 15px, 0);
    }
    50% {
        clip: rect(46px, 9999px, 33px, 0);
    }
    55% {
        clip: rect(82px, 9999px, 31px, 0);
    }
    60% {
        clip: rect(67px, 9999px, 91px, 0);
    }
    65% {
        clip: rect(36px, 9999px, 71px, 0);
    }
    70% {
        clip: rect(53px, 9999px, 9px, 0);
    }
    75% {
        clip: rect(79px, 9999px, 38px, 0);
    }
    80% {
        clip: rect(13px, 9999px, 63px, 0);
    }
    85% {
        clip: rect(57px, 9999px, 84px, 0);
    }
    90% {
        clip: rect(21px, 9999px, 91px, 0);
    }
    95% {
        clip: rect(45px, 9999px, 43px, 0);
    }
    100% {
        clip: rect(64px, 9999px, 21px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(82px, 9999px, 59px, 0);
    }
    5% {
        clip: rect(22px, 9999px, 18px, 0);
    }
    10% {
        clip: rect(98px, 9999px, 53px, 0);
    }
    15% {
        clip: rect(31px, 9999px, 67px, 0);
    }
    20% {
        clip: rect(38px, 9999px, 36px, 0);
    }
    25% {
        clip: rect(6px, 9999px, 50px, 0);
    }
    30% {
        clip: rect(13px, 9999px, 80px, 0);
    }
    35% {
        clip: rect(95px, 9999px, 59px, 0);
    }
    40% {
        clip: rect(61px, 9999px, 25px, 0);
    }
    45% {
        clip: rect(75px, 9999px, 76px, 0);
    }
    50% {
        clip: rect(29px, 9999px, 20px, 0);
    }
    55% {
        clip: rect(43px, 9999px, 92px, 0);
    }
    60% {
        clip: rect(11px, 9999px, 56px, 0);
    }
    65% {
        clip: rect(19px, 9999px, 61px, 0);
    }
    70% {
        clip: rect(87px, 9999px, 92px, 0);
    }
    75% {
        clip: rect(45px, 9999px, 25px, 0);
    }
    80% {
        clip: rect(63px, 9999px, 14px, 0);
    }
    85% {
        clip: rect(98px, 9999px, 66px, 0);
    }
    90% {
        clip: rect(3px, 9999px, 46px, 0);
    }
    95% {
        clip: rect(99px, 9999px, 91px, 0);
    }
    100% {
        clip: rect(72px, 9999px, 45px, 0);
    }
}

/* SERVICES SHOP PAGE STYLES */
.services-shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #c8c8c8;
    position: relative;
    z-index: 1;
}

/* SHOP SPECIFIC STYLES */
.services-shop-intro {
    margin-bottom: 4rem;
}

.services-shop-grid {
    margin-top: 2rem;
}

.no-services {
    text-align: center;
    padding: 3rem;
    background: rgba(15, 20, 25, 0.85);
    border: 1px solid #333;
    border-radius: 5px;
}

/* CATEGORY SECTION STYLES */
.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    color: #0ff;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* SEARCH STYLES */
.search-container {
    margin: 1.5rem auto;
    max-width: 600px;
}

.cyber-search-form {
    display: flex;
    position: relative;
}

.cyber-search-input {
    flex: 1;
    background: rgba(10, 15, 20, 0.8);
    border: 1px solid #333;
    color: #0ff;
    padding: 0.8rem 1rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.cyber-search-input:focus {
    border-color: #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    outline: none;
}

.cyber-search-button {
    background: linear-gradient(to right, #0ff, #00c3ff);
    border: none;
    color: #000;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cyber-search-button:hover {
    background: linear-gradient(to right, #00f7ff, #0ff);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* UTILITY CLASSES */
.hidden {
    display: none !important;
}

/* NOTIFICATIONS */
#notification-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 350px;
}

.cyber-notification {
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid #0ff;
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease forwards;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cyber-notification.success {
    border-color: #0f6;
}

.cyber-notification.error {
    border-color: #ff3366;
}

.cyber-notification.fadeout {
    opacity: 0;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.notification-close {
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 0.8rem;
    position: absolute;
    right: 9px ;
    top: 10px;
    padding-left: 8px;
    padding-right: 8px;
}

.notification-close:hover {
    color: #fff;
    background: rgba(255, 0, 60, 0.7);
}

.notification-title {
    font-size: 1rem;
    color: #0ff;
    margin: 0;
}

.notification-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #c8c8c8;
}

.notification-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* CART STYLES */
.cart-preview {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    width: 300px;
    background: rgba(10, 15, 20, 0.9);
    border: 1px solid #0ff;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.cart-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.cart-title-link {
    color: #0ff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.cart-title-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    transform: scale(1.05);
}

.cart-count {
    display: inline-block;
    background: #0ff;
    color: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    text-align: center;
    line-height: 22px;
    margin-left: 0.5rem;
}

.toggle-cart {
    background: transparent;
    border: none;
    color: #0ff;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-content {
    max-height: 300px;
    overflow-y: auto;
}

.cart-content.hidden {
    display: none;
}

.cart-items {
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item .item-info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.item-name {
    color: #0ff;
    font-size: 0.9rem;
}

.item-quantity {
    color: #999;
    font-size: 0.8rem;
}

.item-price {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

.cart-item .item-remove {
    background: none;
    border: none;
    color: #ff3366;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-item .item-remove:hover {
    background: rgba(255, 51, 102, 0.2);
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 1rem;
    color: #999;
}

.cart-total {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.cyber-button.mini-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    height: auto;
    min-width: auto;
}

.cyber-button.danger {
    border-color: #ff3366;
    color: #ff3366;
}

.cyber-button.danger:hover {
    background: #ff3366;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

.cyber-button.primary {
    border-color: #0ff;
    background: rgba(0, 255, 255, 0.1);
    color: #0ff;
}

.cyber-button.primary:hover {
    background: #0ff;
    color: #000;
}

.cart-total-label {
    font-weight: bold;
    color: #0ff;
}

.cart-buttons {
    display: flex;
    padding: 0 1rem 1rem;
    gap: 0.5rem;
}

.cart-buttons .cyber-button {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem;
}

.amount-display {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.amount-display .label {
    font-weight: bold;
    color: #0ff;
}

.amount-display .value {
    font-weight: bold;
    color: #0ff;
    margin-left: 0.5rem;

}

.cyber-help-text {
    color: #999;
    font-size: 0.8rem;
}

.cyber-help-text a {
    color: #0ff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cyber-help-text a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    transform: scale(1.05);
}

/* MODAL STYLES */
.cyber-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid #0ff;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.modal-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.modal-header h3 {
    margin: 0;
    color: #0ff;
    font-size: 1.2rem;
}

.modal-close {
    background: transparent;
    border: none;
    color: #0ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* SERVICE DETAILS STYLES */
.service-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #c8c8c8;
    position: relative;
    z-index: 1;
}

.service-details-content {
    margin: 3rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-section {
    background: rgba(15, 20, 25, 0.85);
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.detail-section:hover {
    border-color: #0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.detail-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: #0ff;
    font-size: 1.2rem;
}

.detail-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #0ff;
}

.detail-body {
    padding: 1.5rem;
}

/* SERVICE OVERVIEW STYLES */
.service-overview {
    grid-column: 1 / 2;
}

.service-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 1px;
}

.status-available {
    background: rgba(0, 255, 0, 0.1);
    color: #0f0;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-unavailable {
    background: rgba(255, 0, 0, 0.1);
    color: #f00;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.service-duration {
    margin-bottom: 1.5rem;
    color: #999;
}

.service-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-price-tag {
    background: linear-gradient(to right, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0));
    padding: 1rem;
    border-left: 3px solid #0ff;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    color: #0ff;
    font-weight: bold;
}

.service-actions {
    display: flex;
    gap: 1rem;
}

/* SERVICE FEATURES STYLES */
.service-features {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.features-list {
    padding: 0;
    list-style: none;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: #0ff;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

/* TECH STACK STYLES */
.service-tech {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #0ff;
    font-size: 0.9rem;
}


/* SIMILAR SERVICES STYLES */
.similar-services {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    color: #0ff;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0ff, transparent);
}

/* CTA SECTION STYLES */
.service-cta {
    margin-top: 5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.service-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

/* DISABLED BUTTON STYLES */
.cyber-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.cyber-button.disabled span {
    color: #f00;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .cyber-glitch {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
    }
    
    .timeline-icon {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .cart-preview {
        width: 100%;
        right: 0;
        bottom: 0;
        border-radius: 5px 5px 0 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features,
    .service-tech {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
    }
    
    .cta-button {
        width: 100%;
    }
}