/* ===========================
   TECHNICAL SPECIFICATIONS SECTION
   =========================== */

.tech-specs {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tech-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(46, 143, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.tech-specs .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tech-specs .badge-pill {
    display: inline-block;
    background: linear-gradient(135deg, #2e8f33, #4ade80);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(46, 143, 51, 0.3);
    animation: fadeInDown 0.6s ease;
}

.tech-specs .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.tech-specs .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.tech-spec-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}

.tech-spec-card:nth-child(1) { animation-delay: 0.1s; }
.tech-spec-card:nth-child(2) { animation-delay: 0.15s; }
.tech-spec-card:nth-child(3) { animation-delay: 0.2s; }
.tech-spec-card:nth-child(4) { animation-delay: 0.25s; }
.tech-spec-card:nth-child(5) { animation-delay: 0.3s; }
.tech-spec-card:nth-child(6) { animation-delay: 0.35s; }
.tech-spec-card:nth-child(7) { animation-delay: 0.4s; }
.tech-spec-card:nth-child(8) { animation-delay: 0.45s; }

.tech-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e8f33, #4ade80);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-spec-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 143, 51, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-spec-card:hover::before {
    transform: scaleX(1);
}

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

.tech-spec-card:hover {
    border-color: #2e8f33;
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(46, 143, 51, 0.18);
}

.tech-spec-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2e8f33, #4ade80);
    color: white;
}

.tech-spec-card:hover .tech-icon i {
    color: white;
}

.tech-spec-card:hover .tech-icon svg {
    fill: white;
}

/* Icon Wrapper */
.tech-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2e8f33;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(46, 143, 51, 0.1);
}

.tech-icon i {
    font-size: 32px;
    color: #2e8f33;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-icon svg {
    width: 32px;
    height: 32px;
    fill: #2e8f33;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-spec-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.spec-content {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    position: relative;
    z-index: 1;
}

.spec-content p {
    margin: 0;
    line-height: 1.8;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Tech Specs */
@media (max-width: 1024px) {
    .tech-specs {
        padding: 80px 0;
    }

    .tech-specs .section-header h2 {
        font-size: 36px;
    }

    .tech-specs-grid {
        gap: 25px;
    }

    .tech-spec-card {
        padding: 35px;
    }

    .tech-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .tech-icon i {
        font-size: 28px;
    }

    .tech-icon svg {
        width: 28px;
        height: 28px;
    }

    .tech-spec-card h3 {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .tech-specs {
        padding: 60px 0;
    }

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

    .tech-specs .badge-pill {
        padding: 8px 18px;
        font-size: 13px;
    }

    .tech-specs .section-header h2 {
        font-size: 28px;
        padding: 0 10px;
    }

    .tech-specs .section-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    .tech-specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .tech-spec-card {
        padding: 30px 25px;
    }

    .tech-icon-wrapper {
        margin-bottom: 20px;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .tech-icon i {
        font-size: 26px;
    }

    .tech-icon svg {
        width: 26px;
        height: 26px;
    }

    .tech-spec-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .spec-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tech-specs {
        padding: 50px 0;
    }

    .tech-specs .section-header h2 {
        font-size: 24px;
    }

    .tech-specs .section-header p {
        font-size: 15px;
    }

    .tech-spec-card {
        padding: 25px 20px;
    }

    .tech-icon-wrapper {
        margin-bottom: 18px;
    }

    .tech-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        border-radius: 14px;
    }

    .tech-icon i {
        font-size: 24px;
    }

    .tech-icon svg {
        width: 24px;
        height: 24px;
    }

    .tech-spec-card h3 {
        font-size: 17px;
    }

    .spec-content {
        font-size: 13px;
    }
}

