/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
}

/* Fixed Background */
.fixed-background {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #0f172a, rgba(30, 58, 138, 0.2), rgba(49, 46, 129, 0.3));
}

.bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 50%);
}

.bg-blur-1,
.bg-blur-2,
.bg-blur-3 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(96px);
}

.bg-blur-1 {
    top: 0;
    left: 25%;
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-blur-2 {
    bottom: 0;
    right: 25%;
    background-color: rgba(99, 102, 241, 0.1);
}

.bg-blur-3 {
    top: 50%;
    right: 0;
    background-color: rgba(168, 85, 247, 0.1);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-delay-1000 {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 1s;
}

.animate-pulse-delay-500 {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 0.5s;
}

/* Fade In Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-in-out;
}

/* Page Header */
.page-header {
    position: relative;
    z-index: 10;
    padding: 8rem 1.5rem 4rem;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
}

.header-content {
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background: none;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #93c5fd;
    transform: translateX(-4px);
}

.breadcrumb-icon {
    width: 1rem;
    height: 1rem;
}

.breadcrumb-separator {
    color: #475569;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: none;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #bfdbfe, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-code-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(79, 70, 229, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #60a5fa;
}

.meta-icon {
    width: 1rem;
    height: 1rem;
}

.product-rating {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
    fill: currentColor;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem;
}

.gallery-container {
    max-width: 80rem;
    margin: 0 auto;
}

.gallery-content {
    transition: all 1s ease-in-out;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.section-icon {
    width: 2rem;
    height: 2rem;
    color: #60a5fa;
}

.gallery-count {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(30, 41, 59, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

/* Product Layout - Side by Side */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

/* Image Gallery Wrapper */
.image-gallery-wrapper {
    position: relative;
}

.main-image-container {
    position: relative;
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.3), rgba(30, 41, 59, 0.3));
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.3);
    aspect-ratio: 1;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.image-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    z-index: 10;
}

.zoom-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 10;
}

.slide:hover .zoom-overlay {
    opacity: 1;
    transform: scale(1);
}

.zoom-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    color: #ffffff;
}

.nav-btn:hover {
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 1rem;
}

.nav-next {
    right: 1rem;
}

.nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 10;
}

/* Thumbnail Navigation */
.thumbnail-nav {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail-nav::-webkit-scrollbar {
    height: 0.5rem;
}

.thumbnail-nav::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.25rem;
}

.thumbnail-nav::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 0.25rem;
}

.thumbnail-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.thumb-btn {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.3), rgba(30, 41, 59, 0.3));
    border: 2px solid rgba(51, 65, 85, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.thumb-btn:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

.thumb-btn.active {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

/* Product Info Wrapper */
.product-info-wrapper {
    position: sticky;
    top: 2rem;
}

.product-description-container {
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(24px);
    border-radius: 1rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    overflow: hidden;
}

.description-header {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.1));
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    padding: 1.5rem;
}

.description-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.product-description-content {
    padding: 1.5rem;
    color: #cbd5e1;
    line-height: 1.8;
    max-height: 600px;
    overflow-y: auto;
}

.product-description-content::-webkit-scrollbar {
    width: 0.5rem;
}

.product-description-content::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.25rem;
}

.product-description-content::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 0.25rem;
}

.product-description-content::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.product-description-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.product-description-content h3:first-child {
    margin-top: 0;
}

.product-description-content p {
    margin-bottom: 1rem;
}

.product-description-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.product-description-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.product-description-content ul li::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.6rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #60a5fa;
    border-radius: 50%;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #000000;
}

.video-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.document-card {
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s ease;
}

.document-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.document-icon {
    width: 3rem;
    height: 3rem;
    color: #60a5fa;
    margin: 0 auto 1rem;
    display: block;
}

.document-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.document-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.document-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.document-download:hover {
    background: linear-gradient(to right, #1d4ed8, #4338ca);
    transform: scale(1.05);
}

.download-icon {
    width: 1rem;
    height: 1rem;
}

/* Contact Content */
.contact-content {
    text-align: center;
    padding: 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-desc {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.5);
}

.contact-button:hover {
    background: linear-gradient(to right, #1d4ed8, #4338ca);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.8);
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-arrow {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-button:hover .contact-arrow {
    transform: translateX(0.5rem);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 8rem 1.5rem;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-wrapper {
    position: relative;
}

.cta-bg-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #2563eb, #4f46e5, #7c3aed);
    border-radius: 1.5rem;
    filter: blur(48px);
    opacity: 0.3;
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: opacity 0.7s ease;
}

.cta-wrapper:hover .cta-bg-blur {
    opacity: 0.4;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 1.5rem;
    filter: blur(24px);
}

.cta-content {
    position: relative;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(48px);
    border-radius: 1.5rem;
    padding: 4rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    text-align: center;
}

.cta-accent-line {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.5s ease;
    transform: translateY(0);
}

.cta-button-primary {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.5);
}

.cta-button-primary:hover {
    background: linear-gradient(to right, #1d4ed8, #4338ca);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.8);
    transform: translateY(-0.5rem) scale(1.05);
}

.cta-button-secondary {
    background-color: rgba(30, 41, 59, 0.8);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-button-secondary:hover {
    background-color: rgba(30, 41, 59, 1);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-0.5rem);
}

.cta-arrow,
.cta-phone {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(0.5rem);
}

.cta-button-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .cta-button-overlay {
    opacity: 1;
}

.cta-support {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
}

.cta-support-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-support-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer Accent */
.footer-accent {
    position: relative;
    z-index: 10;
    height: 0.5rem;
    background: linear-gradient(to right, #2563eb, #4f46e5, #7c3aed, #06b6d4);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1.5rem 2rem;
    }

    .gallery-grid,
    .specs-grid,
    .features-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }
}