/* =============================================
   Tech Service Page Styles
   CGAgency - Futuristic IT Design
   ============================================= */

/* ==========================================
   VARIABLES
   ========================================== */
:root {
    --tech-primary: #26d300;
    --tech-primary-dark: #1fb300;
    --tech-bg-dark: #050505;
    --tech-bg-card: rgba(10, 10, 10, 0.8);
    --tech-bg-card-hover: rgba(15, 15, 15, 0.9);
    --tech-border: rgba(38, 211, 0, 0.15);
    --tech-border-hover: rgba(38, 211, 0, 0.4);
    --tech-glow: rgba(38, 211, 0, 0.3);
    --tech-text: #ffffff;
    --tech-text-secondary: rgba(255, 255, 255, 0.7);
    --tech-text-muted: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   SERVICE HERO SECTION
   ========================================== */
.tech-service-hero {
    position: relative;
    padding: 180px 0 100px;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.tech-service-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Breadcrumbs */
.tech-service-hero__breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.tech-service-hero__breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tech-service-hero__breadcrumb-link:hover {
    color: var(--tech-primary);
}

.tech-service-hero__breadcrumb-separator {
    color: var(--tech-primary);
    font-weight: 700;
}

.tech-service-hero__breadcrumb-current {
    color: #fff;
}

/* Title */
.tech-service-hero__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.tech-service-hero__title-text {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #f0fff0 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tech-service-hero__title-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--tech-primary), var(--tech-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.5;
}

/* Subtitle */
.tech-service-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--tech-text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
}

/* Icon */
.tech-service-hero__icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(38, 211, 0, 0.15), rgba(31, 163, 0, 0.15));
    border: 1px solid var(--tech-border-hover);
    font-size: 32px;
    color: var(--tech-primary);
    animation: techIconPulse 3s ease-in-out infinite;
    margin-top: 20px;
}

@keyframes techIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--tech-glow); }
    50% { box-shadow: 0 0 30px 10px rgba(38, 211, 0, 0.15); }
}

/* ==========================================
   MAIN CONTENT LAYOUT
   ========================================== */
.tech-service-main {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.tech-service-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

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

/* ==========================================
   SERVICE OVERVIEW CARD
   ========================================== */
.tech-service-overview {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.tech-service-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tech-primary), transparent);
}

.tech-service-overview__image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--tech-border);
}

.tech-service-overview__description {
    color: var(--tech-text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.tech-service-overview__description p {
    margin-bottom: 1rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.tech-section-header {
    margin-bottom: 40px;
    text-align: center;
}

.tech-section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid var(--tech-border);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tech-primary);
    margin-bottom: 20px;
}

.tech-section-header__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tech-section-header__subtitle {
    font-size: 16px;
    color: var(--tech-text-muted);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.tech-features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tech-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tech-feature-card {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tech-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 211, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-feature-card:hover {
    border-color: var(--tech-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.tech-feature-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid var(--tech-border);
    border-radius: 14px;
    font-size: 24px;
    color: var(--tech-primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-feature-card:hover .tech-feature-card__icon {
    box-shadow: 0 0 20px var(--tech-glow);
    border-color: var(--tech-border-hover);
}

.tech-feature-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
}

.tech-feature-card__text {
    color: var(--tech-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Simple Feature List */
.tech-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .tech-feature-list {
        grid-template-columns: 1fr;
    }
}

.tech-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-feature-item:hover {
    border-color: var(--tech-border-hover);
    background: var(--tech-bg-card-hover);
}

.tech-feature-item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-primary);
    font-size: 14px;
}

.tech-feature-item__text {
    color: var(--tech-text);
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.tech-pricing {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tech-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tech-pricing-card {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tech-pricing-card--featured {
    border-color: var(--tech-primary);
    transform: scale(1.02);
}

.tech-pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tech-primary), transparent);
}

.tech-pricing-card:hover {
    border-color: var(--tech-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.tech-pricing-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.tech-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--tech-primary);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.tech-pricing-card__name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    text-align: center;
}

.tech-pricing-card__price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--tech-border);
}

.tech-pricing-card__amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--tech-primary);
    line-height: 1;
}

.tech-pricing-card__currency {
    font-size: 18px;
    color: var(--tech-text-muted);
    margin-left: 5px;
}

.tech-pricing-card__period {
    display: block;
    font-size: 14px;
    color: var(--tech-text-muted);
    margin-top: 8px;
}

.tech-pricing-card__features {
    flex: 1;
    margin-bottom: 30px;
}

.tech-pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-pricing-card__feature:last-child {
    border-bottom: none;
}

.tech-pricing-card__feature-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-primary);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-pricing-card__feature-text {
    color: var(--tech-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.tech-pricing-card__button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid var(--tech-border);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tech-pricing-card__button:hover {
    background: rgba(38, 211, 0, 0.1);
    border-color: var(--tech-primary);
    color: var(--tech-primary);
}

.tech-pricing-card--featured .tech-pricing-card__button {
    background: var(--tech-primary);
    border-color: var(--tech-primary);
    color: #000;
}

.tech-pricing-card--featured .tech-pricing-card__button:hover {
    background: var(--tech-primary-dark);
    box-shadow: 0 0 30px var(--tech-glow);
}

/* Discounts Section */
.tech-pricing__discounts {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(38, 211, 0, 0.15);
}

.tech-pricing__discounts-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.tech-pricing__discounts-title i {
    color: var(--tech-primary);
}

.tech-pricing__discounts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-discount-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(38, 211, 0, 0.06);
    border: 1px solid rgba(38, 211, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-discount-badge:hover {
    border-color: rgba(38, 211, 0, 0.4);
    background: rgba(38, 211, 0, 0.1);
}

.tech-discount-badge__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--tech-primary);
    background: rgba(38, 211, 0, 0.15);
    padding: 8px 14px;
    border-radius: 8px;
}

.tech-discount-badge__text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tech-discount-badge__condition {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* ==========================================
   PROCESS/STEPS SECTION
   ========================================== */
.tech-process {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tech-process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.tech-process__timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--tech-primary), rgba(38, 211, 0, 0.2));
}

@media (min-width: 768px) {
    .tech-process__timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.tech-process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .tech-process-step {
        gap: 60px;
    }
    
    .tech-process-step:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .tech-process-step:nth-child(even) .tech-process-step__content {
        text-align: right;
    }
}

.tech-process-step__number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tech-bg-dark);
    border: 2px solid var(--tech-primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: var(--tech-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px var(--tech-glow);
}

.tech-process-step__content {
    flex: 1;
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.3s ease;
}

.tech-process-step__content:hover {
    border-color: var(--tech-border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-process-step__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
}

.tech-process-step__text {
    color: var(--tech-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.tech-faq {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tech-faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.tech-faq-item {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-faq-item:hover {
    border-color: var(--tech-border-hover);
}

.tech-faq-item.active {
    border-color: var(--tech-primary);
}

.tech-faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-faq-item__header:hover {
    background: rgba(38, 211, 0, 0.05);
}

.tech-faq-item__question {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-right: 20px;
}

.tech-faq-item__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid var(--tech-border);
    border-radius: 8px;
    color: var(--tech-primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-faq-item.active .tech-faq-item__icon {
    background: var(--tech-primary);
    color: #000;
    transform: rotate(180deg);
}

.tech-faq-item__body {
    display: none;
    padding: 0 30px 24px;
}

.tech-faq-item.active .tech-faq-item__body {
    display: block;
}

.tech-faq-item__answer {
    color: var(--tech-text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--tech-border);
}

/* Fix Tailwind .collapse { visibility: collapse } conflicting with Bootstrap */
.accordion-collapse.collapse {
    visibility: visible;
}

/* Bootstrap Accordion Override */
.tech-accordion .accordion-item {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.tech-accordion .accordion-item:hover {
    border-color: var(--tech-border-hover);
}

.tech-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 24px 30px;
    box-shadow: none !important;
}

.tech-accordion .accordion-button:not(.collapsed) {
    background: rgba(38, 211, 0, 0.05);
    color: var(--tech-primary);
}

.tech-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2326d300'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.tech-accordion .accordion-body {
    padding: 0 30px 24px;
    color: var(--tech-text-secondary);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--tech-border);
    padding-top: 20px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.tech-cta {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tech-cta__card {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tech-cta__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tech-primary), transparent);
}

.tech-cta__card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 211, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tech-cta__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.tech-cta__title span {
    color: var(--tech-primary);
}

.tech-cta__text {
    font-size: 16px;
    color: var(--tech-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.tech-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tech-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tech-cta__button--primary {
    background: var(--tech-primary);
    color: #000;
    border: none;
}

.tech-cta__button--primary:hover {
    background: var(--tech-primary-dark);
    box-shadow: 0 0 30px var(--tech-glow);
    transform: translateY(-2px);
    color: #000;
}

.tech-cta__button--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--tech-border);
}

.tech-cta__button--secondary:hover {
    border-color: var(--tech-primary);
    color: var(--tech-primary);
    background: rgba(38, 211, 0, 0.1);
}

/* ==========================================
   RELATED SERVICES
   ========================================== */
.tech-related {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tech-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tech-related-card {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.tech-related-card:hover {
    border-color: var(--tech-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-related-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid var(--tech-border);
    border-radius: 14px;
    font-size: 24px;
    color: var(--tech-primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.tech-related-card:hover .tech-related-card__icon {
    box-shadow: 0 0 20px var(--tech-glow);
}

.tech-related-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.tech-related-card:hover .tech-related-card__title {
    color: var(--tech-primary);
}

.tech-related-card__text {
    color: var(--tech-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.tech-related-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tech-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-related-card__link i {
    transition: transform 0.3s ease;
}

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

/* ==========================================
   SIDEBAR
   ========================================== */
.tech-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 1199px) {
    .tech-sidebar {
        position: static;
        margin-top: 40px;
    }
}

.tech-sidebar-widget {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.tech-sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-primary), transparent);
}

.tech-sidebar-widget__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--tech-border);
}

/* Services List Widget */
.tech-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-services-list__item {
    margin-bottom: 8px;
}

.tech-services-list__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--tech-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tech-services-list__link:hover {
    background: rgba(38, 211, 0, 0.1);
    border-color: var(--tech-border);
    color: #fff;
}

.tech-services-list__link.active {
    background: rgba(38, 211, 0, 0.15);
    border-color: var(--tech-primary);
    color: var(--tech-primary);
}

.tech-services-list__number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tech-bg-dark);
    border: 1px solid var(--tech-border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tech-text-muted);
    flex-shrink: 0;
}

.tech-services-list__link.active .tech-services-list__number {
    background: var(--tech-primary);
    border-color: var(--tech-primary);
    color: #000;
}

/* Quote Form Widget */
.tech-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-quote-form__input {
    width: 100%;
    padding: 14px 18px;
    background: var(--tech-bg-dark);
    border: 1px solid var(--tech-border);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tech-quote-form__input::placeholder {
    color: var(--tech-text-muted);
}

.tech-quote-form__input:focus {
    outline: none;
    border-color: var(--tech-primary);
    box-shadow: 0 0 0 3px rgba(38, 211, 0, 0.1);
}

.tech-quote-form__textarea {
    resize: none;
    min-height: 100px;
}

.tech-quote-form__button {
    width: 100%;
    padding: 16px 24px;
    background: var(--tech-primary);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-quote-form__button:hover {
    background: var(--tech-primary-dark);
    box-shadow: 0 0 20px var(--tech-glow);
}

/* Info Widget */
.tech-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-info-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--tech-border);
}

.tech-info-list__item:last-child {
    border-bottom: none;
}

.tech-info-list__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border-radius: 10px;
    color: var(--tech-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.tech-info-list__text {
    color: var(--tech-text-secondary);
    font-size: 14px;
}

.tech-info-list__text strong {
    color: #fff;
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */
.tech-statistics {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.tech-statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.tech-statistic-card {
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-statistic-card:hover {
    border-color: var(--tech-border-hover);
    transform: translateY(-3px);
}

.tech-statistic-card__value {
    font-size: 36px;
    font-weight: 700;
    color: var(--tech-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.tech-statistic-card__label {
    font-size: 14px;
    color: var(--tech-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   CALCULATOR ENHANCEMENTS
   ========================================== */
.tech-calculator-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .tech-service-hero {
        padding: 140px 0 60px;
    }
    
    .tech-pricing-card--featured {
        transform: none;
    }
    
    .tech-pricing-card--featured:hover {
        transform: translateY(-8px);
    }
    
    .tech-cta__card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .tech-service-hero__breadcrumbs {
        padding: 8px 16px;
        font-size: 11px;
        gap: 8px;
    }
    
    .tech-features__grid,
    .tech-pricing__grid,
    .tech-related__grid {
        grid-template-columns: 1fr;
    }
    
    .tech-process-step {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .tech-process__timeline::before {
        display: none;
    }
    
    .tech-process-step__content {
        text-align: left !important;
    }
    
    .tech-cta__buttons {
        flex-direction: column;
    }
    
    .tech-cta__button {
        width: 100%;
        justify-content: center;
    }
    
    .tech-service-overview {
        padding: 25px;
    }
    
    .tech-sidebar-widget {
        padding: 25px;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.tech-animate-delay-1 { animation-delay: 0.1s; }
.tech-animate-delay-2 { animation-delay: 0.2s; }
.tech-animate-delay-3 { animation-delay: 0.3s; }
.tech-animate-delay-4 { animation-delay: 0.4s; }
