/* Product Page Specific Styles */

/* Product Hero Section */
.first-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 100px 20px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.main-content-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: transparent !important;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.5;
}

.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 0;
}

/* Product Stats */
.product-stats {
    display: flex;
    flex-direction: column;
    gap: 90px;
    color: white;
    z-index: 2;
}

.stat-block {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.stat-number .number {
    color: #ff0000;
    font-size: 48px;
    font-weight: 700;
}

.stat-number .unit {
    color: #ff3333;
    font-size: 24px;
    font-weight: 500;
    opacity: 0.9;
}

.stat-label {
    font-size: 24px;
    opacity: 0.9;
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

/* Product Image Wrapper */
.product-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: transparent !important;
}

.product-image-wrapper img {
    max-height: 600px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.2));
}

.product-info {
    text-align: center;
    margin-top: 20px;
}

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.product-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ff0000;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    margin: 40px 0;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    color: white;
}

.download-btn i {
    font-size: 20px;
}

/* Modern Features Section */
.features-section {
    position: relative;
    padding: 80px 40px;
    margin: 60px auto;
    max-width: 1400px;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.1), transparent 40%);
    pointer-events: none;
}

.features-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

/* Modern Tab Navigation */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.tab-btn:hover {
    color: white;
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.tab-btn:hover::before {
    transform: translateX(100%);
}

.tab-btn.active {
    background: rgba(255, 0, 0, 0.1);
    color: white;
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

/* Feature Items Grid */
.tab-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    position: relative;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    font-size: 28px;
    color: #ff0000;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    color: #ff3333;
}

.feature-item h4 {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin: 15px 0;
    letter-spacing: 1px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Small Product Image Enhancement */
.small-product-image {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 180px;
    height: 180px;
    opacity: 0.7;
    z-index: 1;
    animation: floatImage 6s ease-in-out infinite;
}

.small-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Tab Content Animation */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-pane.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
        margin: 40px 15px;
    }

    .feature-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .features-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .small-product-image {
        width: 120px;
        height: 120px;
        top: 20px;
        right: 20px;
    }
}

/* Core styles */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    background: transparent !important;
    position: relative;
}

body.dark-scheme {
    background: transparent !important;
    position: relative;
    min-height: 100vh;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .first-section {
        padding: 20px;
    }
    
    .features-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .first-section {
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .product-stats {
        gap: 40px;
    }
    
    .product-image-wrapper img {
        max-height: 400px;
    }
    
    .stat-number .number {
        font-size: 36px;
    }
    
    .stat-number .unit {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
    
    .small-product-image {
        display: none;
    }
    
    .feature-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .tab-pane ul {
        grid-template-columns: 1fr;
    }
}

/* Topbar Styles */
#topbar {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.topbar-widget {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.topbar-widget:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

.topbar-widget a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.topbar-widget:hover a {
    color: white;
}

.topbar-widget img {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.topbar-widget:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Header Styles */
header.transparent {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

header.transparent.sticky {
    background: rgba(13, 17, 23, 0.95);
    padding: 10px 0;
}

.logo-main {
    height: 50px;
    transition: all 0.3s ease;
}

#mainmenu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#mainmenu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

#mainmenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transition: width 0.3s ease;
}

#mainmenu li a:hover {
    color: white;
}

#mainmenu li a:hover::after {
    width: 100%;
}

/* Footer Styles */
footer {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-widget ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: #ff0000;
    font-size: 20px;
    margin-top: 5px;
}

.subfooter {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
    color: #ff0000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .topbar-widget {
        padding: 6px 12px;
        margin: 0 5px;
    }

    .topbar-widget a {
        font-size: 12px;
    }

    #mainmenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 17, 23, 0.95);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    #mainmenu.active {
        display: flex;
    }

    .logo-main {
        height: 40px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .subfooter {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin: 20px 0;
    }
} 