/* ==========================================
   Dharma Metal Alloys LLP - Core Design System
   ========================================== */

:root {
    /* Color Palette */
    --color-bg-deep: #050505;
    --color-bg-dark: #0c0c0c;
    --color-bg-card: rgba(18, 18, 18, 0.65);
    
    --color-red-base: #c00000;
    --color-red-glow: #ff1a1a;
    --color-red-dark: #800000;
    
    --color-gold-base: #d4af37;
    --color-gold-glow: #ffd700;
    --color-gold-dark: #aa841c;
    
    --color-text-white: #ffffff;
    --color-text-muted: #a0a0a0;
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-red-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-red-base);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

.text-red { color: var(--color-red-base); }
.text-gold { color: var(--color-gold-base); }

/* Background Sparks Canvas */
#sparks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-color: var(--color-bg-deep);
}

/* ==========================================
   Preloader Style
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-deep);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.spinner-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.brass-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid var(--color-gold-base);
    border-right: 4px solid var(--color-gold-base);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.inner-core {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--color-red-base);
    border-left: 3px solid var(--color-red-base);
    border-radius: 50%;
    animation: spin-reverse 0.9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--color-text-white);
    background: linear-gradient(90deg, #fff, var(--color-gold-base), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine-text 3s linear infinite;
}

.loading-bar-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-red-base), var(--color-gold-base));
    border-radius: 2px;
    animation: progress 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes progress {
    0% { width: 0%; }
    40% { width: 35%; }
    70% { width: 85%; }
    100% { width: 100%; }
}

@keyframes shine-text {
    to { background-position: 200% center; }
}

/* ==========================================
   Header & Navigation
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
    background: rgba(12, 12, 12, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--color-gold-base);
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-link-custom {
    color: var(--color-text-muted) !important;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold-base);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--color-text-white) !important;
}

.nav-link-custom.active::after, .nav-link-custom:hover::after {
    width: 80%;
}

/* ==========================================
   Buttons (Glow Red & Metallic Gold)
   ========================================== */
.btn-glow-red {
    background: linear-gradient(135deg, var(--color-red-base), var(--color-red-dark));
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.65rem 1.6rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-glow-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-red-glow), var(--color-red-base));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-glow-red:hover {
    color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(192, 0, 0, 0.65);
    transform: translateY(-2px);
    border-color: var(--color-gold-base);
}

.btn-glow-red:hover::before {
    opacity: 1;
}

.btn-metallic-gold {
    background: transparent;
    color: var(--color-gold-base);
    border: 1px solid var(--color-gold-base);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.65rem 1.6rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-metallic-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-metallic-gold:hover {
    color: var(--color-text-white);
    background-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-metallic-gold:hover::before {
    left: 100%;
    transition: all 0.8s ease;
}

/* ==========================================
   Section Common Styles
   ========================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-title-container {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold-base);
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red-base), var(--color-gold-base));
    border-radius: 2px;
}

/* Glassmorphism card utility */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 35px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 130px;
    display: flex;
    align-items: center;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

/* WebGL Container in Hero */
.hero-webgl-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-loading-indicator {
    position: absolute;
    color: var(--color-gold-base);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: pulse 1.5s infinite ease-in-out;
}

#hero-3d-canvas {
    width: 100%;
    height: 100%;
    outline: none;
    z-index: 2;
    cursor: grab;
}

#hero-3d-canvas:active {
    cursor: grabbing;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Hero Stats Bar */
.hero-stats-row {
    margin-top: 60px;
}

.stat-item {
    padding: 15px;
    border-left: 2px solid rgba(192, 0, 0, 0.3);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text-white);
    line-height: 1;
    margin-bottom: 5px;
    display: inline-block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Quick Grid */
.category-quick-card {
    position: relative;
    border-radius: 6px;
    padding: 25px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.category-quick-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-red-base);
    box-shadow: 0 10px 20px rgba(192, 0, 0, 0.15);
}

.category-quick-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.category-quick-card:hover .category-quick-icon {
    color: var(--color-red-base);
    transform: scale(1.1);
}

.category-quick-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-quick-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================
   About Us Section
   ========================================== */
.about-section {
    background-color: rgba(12, 12, 12, 0.4);
}

.about-intro-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.value-card {
    border-top: 3px solid var(--color-gold-base);
}

.value-card:hover {
    border-top-color: var(--color-red-base);
}

.value-icon {
    color: var(--color-gold-base);
    margin-bottom: 15px;
}

/* Timeline Layout */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--color-gold-base), var(--color-red-base));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: transparent;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--color-bg-deep);
    border: 3px solid var(--color-gold-base);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--color-red-base);
}

.timeline-item:hover::after {
    border-color: var(--color-red-base);
    background-color: var(--color-red-glow);
    box-shadow: 0 0 10px var(--color-red-glow);
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--color-gold-base);
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .timeline-container::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-item::after {
        left: 22px !important;
        right: auto;
    }
}

/* ==========================================
   Products Section
   ========================================== */
.filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
    color: var(--color-text-white);
    border-color: var(--color-gold-base);
    background-color: rgba(212, 175, 55, 0.1);
}

.product-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 3D lift hover effects */
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-gold-base);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.product-image-container {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.5), rgba(15, 15, 15, 0.5));
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-placeholder-graphic {
    width: 100%;
    height: 100%;
    position: relative;
}

.brass-mesh-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.brass-mesh-hex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.brass-inner-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold-base), var(--color-gold-dark));
    border-radius: 4px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-red-base);
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-white);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex-grow: 1;
    margin-bottom: 20px;
}

.product-meta {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    color: var(--color-gold-base);
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

/* ==========================================
   Quality Assurance Section
   ========================================== */
.quality-section {
    background-color: rgba(12, 12, 12, 0.4);
}

/* Testing Process Steps */
.step-container {
    position: relative;
    z-index: 2;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 35px 25px;
}

.step-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(5, 5, 5, 0.9));
    border: 2px solid var(--color-gold-base);
    color: var(--color-gold-base);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
    border-color: var(--color-red-base);
    color: var(--color-red-base);
    box-shadow: 0 0 20px rgba(192, 0, 0, 0.3);
    transform: scale(1.05);
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--color-red-base);
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Certifications Placeholders */
.cert-card {
    text-align: center;
    padding: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(12, 12, 12, 0.6);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.cert-card:hover {
    border-color: var(--color-gold-base);
    background-color: rgba(212, 175, 55, 0.05);
}

.cert-icon {
    color: var(--color-gold-base);
    margin-bottom: 15px;
}

.cert-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cert-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================
   Services Section
   ========================================== */
.service-card {
    height: 100%;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: rgba(192, 0, 0, 0.1);
    color: var(--color-red-base);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 0, 0, 0.2);
}

.service-card:hover .service-icon-box {
    background-color: var(--color-red-base);
    color: var(--color-text-white);
    transform: rotateY(360deg);
    border-color: var(--color-red-base);
    box-shadow: 0 0 15px rgba(192, 0, 0, 0.5);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================
   Contact Us Section
   ========================================== */
.contact-section {
    background-color: rgba(12, 12, 12, 0.4);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-control-custom {
    background-color: rgba(5, 5, 5, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--color-text-white) !important;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.75rem 1rem !important;
    border-radius: 4px !important;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    border-color: var(--color-red-base) !important;
    box-shadow: 0 0 8px rgba(192, 0, 0, 0.3) !important;
    outline: none;
}

.form-label-custom {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* Google Map Glass Placeholder */
.map-placeholder-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-placeholder {
    height: 380px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(25, 25, 25, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.map-bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(192, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    animation: drift-map 60s linear infinite;
    z-index: 1;
}

.map-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

@keyframes drift-map {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

/* ==========================================
   Footer Styles
   ========================================== */
.main-footer {
    background-color: var(--color-bg-dark);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-text-white);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--color-text-white);
    background-color: var(--color-red-base);
    border-color: var(--color-red-base);
    box-shadow: 0 0 10px rgba(192, 0, 0, 0.4);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold-base);
}

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

.footer-links-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--color-gold-base);
    padding-left: 5px;
}

.footer-contact-info li {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

.copyright, .developer-credit {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================
   Product Modal & Detail Elements
   ========================================== */
.modal-content-custom {
    background-color: var(--color-bg-dark) !important;
    border: 1px solid var(--color-gold-base) !important;
    border-radius: 8px !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1) !important;
}

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

.modal-body-custom {
    padding: 30px !important;
}

.product-tech-specs {
    font-size: 0.85rem;
    border-collapse: collapse;
    width: 100%;
}

.product-tech-specs td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-tech-specs td:first-child {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-gold-base);
    width: 40%;
}

.product-tech-specs tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}
