/* ===================================
   SECTIONS STYLES
   =================================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #2563eb 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--text-white);
    z-index: 9;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-badge span {
    font-weight: 500;
    color: var(--text-white);
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Showcase */
.hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
}

.showcase-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.showcase-main:hover {
    transform: scale(1.02);
}

.showcase-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.showcase-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.showcase-badge i {
    font-size: 1.25rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.showcase-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem 0.75rem 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Product Gallery Section */
.product-gallery {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 300px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.5;
}

.gallery-content {
    color: white;
}

.gallery-content i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Material Specifications Section */
.material-specs {
    padding: var(--section-padding);
    background: var(--text-white);
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.specs-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.specs-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.specs-highlights {
    position: relative;
    margin-top: 1rem;
    display: flex;
    gap: 0.7rem;
    padding: 1rem;
}

.highlight-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight-badge div {
    display: flex;
    flex-direction: column;
}

.highlight-badge strong {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-badge span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.specs-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-category {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

body.dark-mode .spec-category {
    background: linear-gradient(135deg, var(--section-bg) 0%, var(--card-bg) 100%);
    border-color: var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spec-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
}

.spec-category h3 i {
    font-size: 1.5rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-category li:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--text-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--text-white);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: var(--text-white);
}

.product-categories {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-category {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.product-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-category h3 i {
    font-size: 1.5rem;
}

.category-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary-color);
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.spec-item strong i {
    color: var(--primary-color);
    font-size: 1rem;
}

.spec-item ul {
    padding-left: 1.5rem;
}

.spec-item li {
    list-style: disc;
    color: var(--text-light);
    padding: 0.25rem 0;
}

.spec-item p {
    color: var(--text-light);
}

/* Dark Mode Product Specs */
body.dark-mode .spec-item {
    background: var(--section-bg);
    border-left-color: var(--primary-color);
}

body.dark-mode .spec-item strong {
    color: var(--text-dark);
}

body.dark-mode .spec-item li,
body.dark-mode .spec-item p {
    color: var(--text-light);
}

/* Technical Table */
.technical-table {
    margin-top: 4rem;
}

.technical-table h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.technical-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--text-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.technical-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
}

.technical-table th,
.technical-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.technical-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.technical-table tbody tr:last-child {
    border-bottom: none;
}

.technical-table tbody tr:hover {
    background: var(--light-bg);
}

/* Certificates Section */
.certificates {
    padding: var(--section-padding);
    background: var(--dark-bg);
    color: var(--text-white);
}

.certificates .section-header h2,
.certificates .section-subtitle {
    color: var(--text-white);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.certificate-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.25rem;
}

.certificate-card h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.certificate-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--text-white);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(218, 165, 32, 0.5) 50%,
        transparent
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

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

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    border-color: transparent;
}

/* Footer Title */
.footer-title {
    color: var(--text-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    min-width: 18px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}



/* ===================================
   DARK MODE STYLES
   =================================== */

/* Dark Mode Body Transition */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Product Gallery Dark Mode */
body.dark-mode .product-gallery {
    background: var(--section-bg);
}

body.dark-mode .gallery-item img {
    filter: brightness(0.9);
}

/* About Section Dark Mode */
body.dark-mode .about {
    background: var(--card-bg);
}

body.dark-mode .about-image img {
    filter: brightness(0.95);
}

/* Features Section Dark Mode */
body.dark-mode .features {
    background: var(--section-bg);
}

body.dark-mode .feature-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

body.dark-mode .feature-card:hover {
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.2);
}

/* Products Section Dark Mode */
body.dark-mode .products {
    background: var(--card-bg);
}

body.dark-mode .product-card {
    background: var(--section-bg);
    border-color: var(--border-color);
}

body.dark-mode .product-card img {
    filter: brightness(0.95);
}

/* Certificates Section Dark Mode */
body.dark-mode .certificates {
    background: var(--section-bg);
}

body.dark-mode .certificate-item {
    background: var(--card-bg);
    border-color: var(--border-color);
}

/* Videos Section Dark Mode */
body.dark-mode .videos {
    background: var(--card-bg);
}

body.dark-mode .video-card {
    background: var(--section-bg);
    border-color: var(--border-color);
}

/* Contact Section Dark Mode */
body.dark-mode .contact {
    background: var(--section-bg);
}

body.dark-mode .contact-info h3 {
    color: var(--primary-color);
}

body.dark-mode .info-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

body.dark-mode .info-item i {
    color: var(--primary-color);
}

body.dark-mode .info-item strong {
    color: var(--text-dark);
}

body.dark-mode .info-item p {
    color: var(--text-light);
}

body.dark-mode .contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

body.dark-mode .contact-form-wrapper h3 {
    color: var(--primary-color);
}

body.dark-mode .contact-form {
    background: var(--card-bg);
    border-color: var(--border-color);
}

body.dark-mode .form-input,
body.dark-mode .form-textarea {
    background: var(--section-bg);
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.dark-mode .form-input:focus,
body.dark-mode .form-textarea:focus {
    border-color: var(--primary-color);
    background: var(--card-bg);
}

/* Footer Dark Mode */
body.dark-mode .footer {
    background: var(--darker-bg, #020617);
    border-top-color: var(--border-color);
}

/* Mobile Menu Dark Mode */
body.dark-mode .mobile-menu {
    background: var(--card-bg);
}

body.dark-mode .mobile-menu-close {
    color: var(--text-dark);
}

body.dark-mode .mobile-nav a {
    color: var(--text-dark);
    border-bottom-color: var(--border-color);
}

body.dark-mode .mobile-nav a:hover {
    color: var(--primary-color);
}

/* Material Specs Dark Mode */
body.dark-mode .material-specs {
    background: var(--card-bg);
}

body.dark-mode .specs-visual {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

body.dark-mode .specs-visual img {
    filter: brightness(0.95);
}

body.dark-mode .highlight-badge {
    background: var(--section-bg);
    border: 1px solid var(--border-color);
}

body.dark-mode .highlight-badge strong {
    color: var(--primary-color);
}

body.dark-mode .highlight-badge span {
    color: var(--text-light);
}

body.dark-mode .spec-category {
    background: linear-gradient(135deg, var(--section-bg) 0%, var(--card-bg) 100%);
    border-color: var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .spec-item {
    background: var(--section-bg);
    border-left-color: var(--primary-color);
}

body.dark-mode .spec-item strong {
    color: var(--text-dark);
}

body.dark-mode .spec-item li,
body.dark-mode .spec-item p {
    color: var(--text-light);
}

body.dark-mode .technical-table table {
    border-color: var(--border-color);
    background: var(--card-bg);
}

body.dark-mode .technical-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

body.dark-mode .technical-table th {
    background: transparent;
    color: var(--text-white);
    border-color: var(--border-color);
}

body.dark-mode .technical-table td {
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.dark-mode .technical-table tbody tr {
    border-bottom-color: var(--border-color);
}

body.dark-mode .technical-table tbody tr:hover {
    background: var(--section-bg);
}
