/* Exodus Pro Solution Plus - Premium Dark Theme CSS Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Thai:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0052cc;
    --primary-glow: rgba(0, 82, 204, 0.4);
    --secondary: #ff6600;
    --secondary-glow: rgba(255, 102, 0, 0.4);
    --bg-dark: #070913;
    --bg-deep: #0a0d1e;
    --bg-card: rgba(16, 20, 38, 0.6);
    --bg-card-hover: rgba(24, 30, 56, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 82, 204, 0.15);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-dim: #6b7280;
    --gradient-primary: linear-gradient(135deg, #0052cc, #0072ff);
    --gradient-accent: linear-gradient(135deg, #ff6600, #ff9900);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans Thai', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== GRID BACKGROUND & GLOW EFFECTS ===== */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 82, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -250px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.ambient-glow-left {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    bottom: 10%;
    left: -200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== FIXED GLASSMORPHIC NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand i {
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary-glow);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary) !important;
    transition: all 0.3s;
    margin: 0 12px;
    white-space: nowrap !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary) !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.btn-nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap !important;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--primary-glow);
    border-color: rgba(255,255,255,0.25);
}

/* Mobile navbar dropdown styling to prevent overlapping text (applies below 1200px) */
@media (max-width: 1199px) {
    .navbar-collapse {
        background: rgba(7, 9, 19, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        border: 1px solid var(--border-color);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }
}

/* ===== HERO SWIPER SLIDER ===== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #030408;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 9, 19, 0.95) 0%, rgba(7, 9, 19, 0.5) 50%, rgba(7, 9, 19, 0.2) 100%);
    z-index: 2;
}

.swiper-slide .container {
    position: relative;
    z-index: 5;
}

.slide-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
}

.slide-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 82, 204, 0.15);
    border: 1px solid rgba(0, 82, 204, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #4da6ff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.slide-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

.slide-features {
    list-style: none;
    margin-bottom: 40px;
}

.slide-features li {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-features li i {
    color: var(--secondary);
    font-size: 16px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.slide-product-img {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-product-img img {
    max-width: 90%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 82, 204, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Swiper Pagination CSS overrides */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.3) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    width: 30px !important;
    border-radius: 10px !important;
}

/* ===== GLASS CARD SECTION ===== */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 82, 204, 0.4);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.25);
    background: var(--bg-card-hover);
}

.category-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img-container img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 70%);
}

.category-card .card-body {
    padding: 25px;
}

.category-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.category-card .card-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 42px;
}

.btn-card-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
}

.category-card:hover .btn-card-outline {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.15);
    background: var(--bg-card-hover);
}

.product-img-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #05060b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 20px;
}

.product-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 82, 204, 0.1);
    border: 1px solid rgba(0, 82, 204, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #4da6ff;
    margin-bottom: 12px;
}

.product-card .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-card .card-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-product-view {
    display: block;
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.product-card:hover .btn-product-view {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 5px 15px var(--primary-glow);
}

/* ===== INTERACTIVE SOLUTIONS BY INDUSTRY ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.solution-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    border: 1px solid var(--border-color);
    background: #030408;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 0;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 9, 19, 0.9) 0%, rgba(7, 9, 19, 0.4) 50%, rgba(7, 9, 19, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 2;
    transition: all 0.3s ease;
}

.solution-card:hover img {
    transform: scale(1.08);
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(0deg, rgba(0, 82, 204, 0.85) 0%, rgba(7, 9, 19, 0.7) 100%);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.solution-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.solution-card:hover p {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

/* ===== ACCORDION FOR PRODUCT SECTIONS ===== */
.showcase-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-header-btn {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
}

.accordion-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 82, 204, 0.15);
    border: 1px solid rgba(0, 82, 204, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4da6ff;
}

.accordion-arrow {
    transition: transform 0.3s;
    color: var(--text-secondary);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item.active .accordion-body-content {
    max-height: 800px;
}

.accordion-inner {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.series-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.series-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    transition: all 0.3s;
}

.series-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    background: rgba(255, 102, 0, 0.05);
}

.series-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.series-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.series-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.series-card p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== SERVICES CARD ===== */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 82, 204, 0.4);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.2);
    background: var(--bg-card-hover);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(0, 82, 204, 0.1);
    border: 1px solid rgba(0, 82, 204, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #4da6ff;
    text-shadow: 0 0 15px var(--primary-glow);
    transition: all 0.4s;
}

.service-card:hover .service-icon-container {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: rotate(360deg);
}

.service-card h4 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary);
}

.contact-info-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.contact-info-card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
    background: rgba(0, 0, 0, 0.4) !important;
}

label.form-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

/* ===== FOOTER ===== */
.footer {
    background: #03050a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

.footer h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.footer-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 12px;
}

.footer-social-links a:hover {
    color: white;
    background: var(--primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
}

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

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s;
}

.footer-links-list a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list li i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 4px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 40px 0 25px;
}

.footer-bottom-text {
    font-size: 13.5px;
    color: var(--text-dim);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background: #05060c;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: var(--secondary);
}

/* ===== BANNER FOR INSIDE PAGES ===== */
.inside-hero-banner {
    background: linear-gradient(135deg, #05060b 0%, #0c0f24 100%);
    position: relative;
    padding: 100px 0 80px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
}

.inside-hero-banner h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.inside-hero-banner p {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== DYNAMIC MODAL MODERNS ===== */
.modal-content {
    background-color: var(--bg-deep) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    color: var(--text-primary) !important;
}

.modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.modal-footer {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

/* ===== SPECIFICATIONS TABLE ===== */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table th, .spec-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-table th {
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.02);
}

.spec-table tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 991px) {
    .slide-title {
        font-size: 2.75rem;
    }
    
    .slide-product-img {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .navbar {
        background: rgba(7, 9, 19, 0.95);
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }
    
    .slide-title {
        font-size: 2.25rem;
    }
    
    .inside-hero-banner {
        padding: 80px 0 60px;
    }
    
    .inside-hero-banner h1 {
        font-size: 2rem;
    }
}
