/* =============================================
   Tech Services Page Styles
   ============================================= */

/* Services Grid Section */
.tech-services-section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

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

.tech-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.tech-services-header h2 span {
    color: #26d300;
    text-shadow: 0 0 30px rgba(38, 211, 0, 0.3);
}

.tech-services-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.tech-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service Card */
.tech-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tech-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #26d300, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(38, 211, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tech-service-card:hover {
    background: rgba(38, 211, 0, 0.03);
    border-color: rgba(38, 211, 0, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tech-service-card:hover::before {
    opacity: 1;
}

.tech-service-card:hover::after {
    opacity: 1;
}

/* Service Icon */
.tech-service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.3);
    border-radius: 16px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.tech-service-icon i {
    font-size: 1.8rem;
    color: #26d300;
    transition: all 0.3s ease;
}

.tech-service-card:hover .tech-service-icon {
    background: rgba(38, 211, 0, 0.2);
    box-shadow: 0 0 30px rgba(38, 211, 0, 0.3);
}

.tech-service-card:hover .tech-service-icon i {
    transform: scale(1.1);
}

/* Service Content */
.tech-service-content {
    position: relative;
    z-index: 1;
}

.tech-service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.tech-service-content h3 a {
    color: inherit;
    text-decoration: none;
}

.tech-service-card:hover .tech-service-content h3 {
    color: #26d300;
}

.tech-service-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Link */
.tech-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.tech-service-card:hover .tech-service-link {
    color: #26d300;
}

.tech-service-card:hover .tech-service-link i {
    transform: translateX(5px);
}

/* No Services */
.tech-no-services {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.tech-no-services i {
    font-size: 4rem;
    color: rgba(38, 211, 0, 0.3);
    margin-bottom: 20px;
}

.tech-no-services h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   Why Choose Us Section
   ============================================= */

.tech-why-section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.tech-why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.tech-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Why Image */
.tech-why-image {
    position: relative;
}

.tech-why-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(38, 211, 0, 0.03);
    border: 1px solid rgba(38, 211, 0, 0.2);
}

.tech-why-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(38, 211, 0, 0.3);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

.tech-why-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.tech-why-image-wrapper:hover img {
    filter: grayscale(0%);
}

/* Corner brackets */
.tech-why-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid #26d300;
    z-index: 3;
    pointer-events: none;
}

.tech-why-corner--tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.tech-why-corner--tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.tech-why-corner--bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.tech-why-corner--br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Grid overlay on image */
.tech-why-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(38, 211, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 211, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Why Content */
.tech-why-content {
    position: relative;
}

.tech-why-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #26d300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.3);
    border-radius: 30px;
}

.tech-why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
}

.tech-why-title span {
    color: #26d300;
}

/* Feature List */
.tech-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-feature-item:hover {
    background: rgba(38, 211, 0, 0.05);
    border-color: rgba(38, 211, 0, 0.2);
    transform: translateX(10px);
}

.tech-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
}

.tech-feature-icon i {
    font-size: 1.2rem;
    color: #26d300;
}

.tech-feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   FAQ Section
   ============================================= */

.tech-faq-section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.tech-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.tech-faq-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

/* FAQ Tabs */
.tech-faq-tabs {
    position: sticky;
    top: 100px;
    align-self: start;
}

.tech-faq-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-faq-tab {
    position: relative;
    display: block;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-faq-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #26d300;
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.tech-faq-tab:hover {
    background: rgba(38, 211, 0, 0.05);
    border-color: rgba(38, 211, 0, 0.2);
    color: #fff;
}

.tech-faq-tab.active {
    background: rgba(38, 211, 0, 0.1);
    border-color: rgba(38, 211, 0, 0.3);
    color: #26d300;
}

.tech-faq-tab.active::before {
    height: 60%;
}

/* FAQ Content */
.tech-faq-content {
    position: relative;
}

.tech-faq-header {
    margin-bottom: 40px;
}

.tech-faq-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #26d300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tech-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* FAQ Accordion */
.tech-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-accordion-item:hover {
    border-color: rgba(38, 211, 0, 0.2);
}

.tech-accordion-header {
    position: relative;
    padding: 25px 30px;
    padding-right: 60px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-accordion-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #26d300;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.tech-accordion-item.active .tech-accordion-header::after {
    content: '−';
}

.tech-accordion-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.tech-accordion-item.active .tech-accordion-question,
.tech-accordion-header:hover .tech-accordion-question {
    color: #26d300;
}

.tech-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tech-accordion-item.active .tech-accordion-body {
    max-height: 500px;
}

.tech-accordion-answer {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}

/* Hidden tab panes */
.tech-faq-pane {
    display: none;
}

.tech-faq-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1200px) {
    .tech-services-container,
    .tech-why-container,
    .tech-faq-container {
        padding: 0 30px;
    }
    
    .tech-faq-grid {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .tech-why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tech-why-image {
        order: 2;
    }
    
    .tech-why-content {
        order: 1;
    }
    
    .tech-faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-faq-tabs {
        position: static;
    }
    
    .tech-faq-tabs-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .tech-faq-tab {
        flex: 1;
        min-width: 140px;
        text-align: center;
        padding: 12px 15px;
    }
    
    .tech-faq-tab::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .tech-services-section,
    .tech-why-section,
    .tech-faq-section {
        padding: 60px 0;
    }
    
    .tech-services-container,
    .tech-why-container,
    .tech-faq-container {
        padding: 0 20px;
    }
    
    .tech-services-header h2,
    .tech-why-title,
    .tech-faq-title {
        font-size: 1.75rem;
    }
    
    .tech-services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-service-card {
        padding: 30px 25px;
    }
    
    .tech-feature-item {
        padding: 15px 20px;
    }
    
    .tech-faq-tabs-list {
        flex-direction: column;
    }
    
    .tech-faq-tab {
        text-align: left;
    }
    
    .tech-accordion-header {
        padding: 20px;
        padding-right: 50px;
    }
    
    .tech-accordion-answer {
        padding: 0 20px 20px;
    }
}
