/* =============================================
   Tech Header Styles
   ============================================= */

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

/* Override default header */
.tech-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(38, 211, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.tech-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    width: 100%;
    max-width: 100%;
}

/* Logo */
.tech-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-header-logo img {
    height: 40px;
    width: auto;
}

.tech-header-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.tech-header-logo-text span {
    color: #26d300;
}

/* Navigation */
.tech-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-nav-link {
    position: relative;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.tech-nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #26d300;
    transition: width 0.3s ease;
}

.tech-nav-link:hover {
    color: #fff;
    background: rgba(38, 211, 0, 0.1);
}

.tech-nav-link:hover::before,
.tech-nav-link.active::before {
    width: 30px;
}

.tech-nav-link.active {
    color: #26d300;
}

/* Header Actions */
.tech-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-header-phone i {
    color: #26d300;
    font-size: 1rem;
}

.tech-header-phone:hover {
    background: rgba(38, 211, 0, 0.2);
    border-color: #26d300;
    color: #fff;
}

/* Mobile Menu Toggle */
.tech-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.3);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tech-menu-toggle:hover {
    background: rgba(38, 211, 0, 0.2);
    box-shadow: 0 0 15px rgba(38, 211, 0, 0.3);
}

.tech-menu-toggle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #26d300;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.tech-menu-toggle span:nth-child(1) { top: 14px; }
.tech-menu-toggle span:nth-child(2) { top: 21px; }
.tech-menu-toggle span:nth-child(3) { top: 28px; }

.tech-menu-toggle.active {
    background: rgba(38, 211, 0, 0.2);
}

.tech-menu-toggle.active span {
    background: #26d300;
}

.tech-menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.tech-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tech-menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* =============================================
   Tech Footer Styles
   ============================================= */

.tech-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.tech-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(38, 211, 0, 0.5), transparent);
}

/* Footer Grid */
.tech-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Company Info */
.tech-footer-company {
    padding-right: 30px;
}

.tech-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.tech-footer-logo img {
    height: 45px;
}

.tech-footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.tech-footer-logo-text span {
    color: #26d300;
}

.tech-footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer Socials */
.tech-footer-socials {
    display: flex;
    gap: 12px;
}

.tech-footer-social {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tech-footer-social:hover {
    background: rgba(38, 211, 0, 0.2);
    border-color: #26d300;
    color: #26d300;
    transform: translateY(-3px);
}

/* Footer Columns */
.tech-footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.tech-footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #26d300;
}

/* Footer Links */
.tech-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-footer-links li {
    margin-bottom: 12px;
}

.tech-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tech-footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(38, 211, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tech-footer-links a:hover {
    color: #26d300;
    transform: translateX(5px);
}

.tech-footer-links a:hover::before {
    background: #26d300;
    box-shadow: 0 0 10px rgba(38, 211, 0, 0.5);
}

/* Footer Contact Info */
.tech-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.tech-footer-contact li i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.2);
    border-radius: 8px;
    color: #26d300;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tech-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tech-footer-contact a:hover {
    color: #26d300;
}

/* Footer Bottom */
.tech-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.tech-footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.tech-footer-copyright span {
    color: #26d300;
}

.tech-footer-bottom-links {
    display: flex;
    gap: 25px;
}

.tech-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.tech-footer-bottom-links a:hover {
    color: #26d300;
}

/* =============================================
   Scroll to Top Button
   ============================================= */

.tech-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 211, 0, 0.2);
    border: 1px solid rgba(38, 211, 0, 0.5);
    border-radius: 12px;
    color: #26d300;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.tech-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tech-scroll-top:hover {
    background: #26d300;
    color: #000;
    box-shadow: 0 0 30px rgba(38, 211, 0, 0.5);
}

.tech-scroll-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px dashed rgba(38, 211, 0, 0.3);
    border-radius: 14px;
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =============================================
   Mobile Styles
   ============================================= */

@media (max-width: 1200px) {
    .tech-header-inner {
        padding: 15px 20px;
    }
    
    .tech-nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .tech-header-phone span {
        display: none;
    }
}

@media (max-width: 991px) {
    .tech-menu-toggle {
        display: block;
    }
    
    .tech-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 10px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .tech-nav.active {
        transform: translateX(0);
    }
    
    .tech-nav-link {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .tech-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .tech-footer-company {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .tech-header-inner {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .tech-header-logo img {
        height: 32px;
    }
    
    .tech-header-phone {
        display: none;
    }
    
    .tech-header-actions {
        gap: 10px;
    }
    
    .tech-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .tech-menu-toggle span {
        width: 18px;
    }
    
    .tech-menu-toggle span:nth-child(1) { top: 12px; }
    .tech-menu-toggle span:nth-child(2) { top: 19px; }
    .tech-menu-toggle span:nth-child(3) { top: 26px; }
    
    .tech-menu-toggle.active span:nth-child(1),
    .tech-menu-toggle.active span:nth-child(3) {
        top: 19px;
    }
    
    .tech-nav {
        top: 62px;
    }
    
    .tech-footer {
        padding: 60px 0 0;
    }
    
    .tech-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-footer-company {
        grid-column: span 1;
    }
    
    .tech-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tech-scroll-top {
        bottom: 100px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Hide original header/footer */
.ori-header-section,
.ori-footer-section,
.up {
    display: none !important;
}
