/*
Theme Name: Tritan Delta Future
Theme URI: https://tritandelta.com
Author: Tritan Delta Solusindo
Author URI: https://tritandelta.com
Description: A futuristic corporate WordPress theme for PT Tritan Delta Solusindo. Features navy blue, electric blue, orange and silver grey color scheme with glassmorphism effects, neon glows, and full dashboard customization.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tritan-delta-future
Tags: corporate, technology, futuristic, dark, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   CSS VARIABLES & COLOR SYSTEM
   ============================================ */
:root {
    --navy-dark: #070F1A;
    --navy: #0A1628;
    --navy-light: #1A2B4A;
    --navy-lighter: #243B5D;
    --electric-blue: #00D4FF;
    --electric-blue-dim: #00A8CC;
    --electric-blue-glow: rgba(0, 212, 255, 0.3);
    --orange: #FF6B35;
    --orange-dim: #CC5529;
    --orange-glow: rgba(255, 107, 53, 0.3);
    --silver: #C0C5CE;
    --silver-light: #E2E5E9;
    --silver-dark: #8A9199;
    --gradient-hero: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    --gradient-electric: linear-gradient(90deg, var(--electric-blue), var(--electric-blue-dim));
    --gradient-orange: linear-gradient(90deg, var(--orange), var(--orange-dim));
    --gradient-glass: linear-gradient(135deg, rgba(26, 43, 74, 0.7), rgba(7, 15, 26, 0.8));
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Orbitron', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --section-padding: 120px;
    --container-max: 1280px;
    --container-padding: 24px;
    --glow-blue: 0 0 20px var(--electric-blue-glow), 0 0 40px rgba(0, 212, 255, 0.1);
    --glow-orange: 0 0 20px var(--orange-glow), 0 0 40px rgba(255, 107, 53, 0.1);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-primary);
    background: var(--navy-dark);
    color: var(--silver);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--electric-blue); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--orange); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--silver-light);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { margin-bottom: 1.5rem; color: var(--silver); }
ul, ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.section-padding { padding: var(--section-padding) 0; }
.text-center { text-align: center; }
.text-electric { color: var(--electric-blue); }
.text-orange { color: var(--orange); }
.text-silver { color: var(--silver); }

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
}
.glass-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-electric);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    color: var(--navy-dark);
}
.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}
.btn-secondary:hover {
    background: var(--electric-blue);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}
.btn-orange {
    background: var(--gradient-orange);
    color: #fff;
    box-shadow: var(--glow-orange);
}
.btn-orange:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-electric);
    border-radius: 2px;
}
.section-title.text-center::after { left: 50%; transform: translateX(-50%); }
.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.grid-bg { position: relative; }
.grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.grid-bg > * { position: relative; z-index: 1; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--glow-blue); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 0 80px rgba(0, 212, 255, 0.2); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(7, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 0.75rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.site-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    flex: 0 0 auto;
    text-align: left;
}
.site-logo img { height: 48px; width: auto; }
.site-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--silver-light);
    line-height: 1.2;
    text-align: left;
    display: block;
}
.site-logo-text span { color: var(--electric-blue); }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.primary-nav a {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    position: relative;
    padding: 0.5rem 0;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-electric);
    transition: width 0.3s ease;
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after { width: 100%; }
.primary-nav a:hover { color: var(--electric-blue); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--electric-blue);
    transition: var(--transition-fast);
}

/* HERO */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    /* Establish stacking context */
    z-index: 0;
}

/* Background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Overlay layer */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background 0.3s ease;
}

/* CSS variable for overlay color - set by JS based on theme */
.hero-overlay {
    background: var(--hero-overlay-color, var(--gradient-hero));
}

.hero-section[style*="background-image"] {
    background: none;
}

.hero-section[style*="background-image"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.92;
    z-index: 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 6;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 5;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--electric-blue);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--silver-light);
}
.hero-title .highlight {
    background: var(--gradient-electric);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .highlight-orange {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.125rem;
    color: var(--silver-dark);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver-dark);
    margin-top: 0.25rem;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image { position: relative; }
.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    z-index: -1;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gradient-electric);
    border-radius: 16px;
    opacity: 0.2;
    z-index: -1;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--electric-blue);
    font-size: 1.25rem;
}
.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--silver-light);
}
.about-feature p {
    font-size: 0.875rem;
    color: var(--silver-dark);
    margin: 0;
}

/* VISION & MISSION */
.vision-mission-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.vision-mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.vm-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}
.vm-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--glow-blue);
}
.vm-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-electric);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--navy-dark);
}
.vm-card h3 { margin-bottom: 1rem; color: var(--silver-light); }
.vm-card p { color: var(--silver-dark); line-height: 1.8; }
.vm-card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

/* COMMITMENTS */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.commitment-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-electric);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.commitment-card:hover::before { transform: scaleX(1); }
.commitment-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.commitment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--electric-blue);
    transition: var(--transition-normal);
}
.commitment-card:hover .commitment-icon {
    background: var(--electric-blue);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}
.commitment-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--silver-light);
}
.commitment-card p {
    font-size: 0.875rem;
    color: var(--silver-dark);
    margin: 0;
}

/* SERVICES */
.services-section { background: var(--navy-dark); position: relative; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.service-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--glow-blue);
}
.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}
.service-card:hover .service-icon {
    background: var(--gradient-electric);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}
.service-card h3 { margin-bottom: 0.75rem; color: var(--silver-light); }
.service-card p { color: var(--silver-dark); font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric-blue);
}
.service-link:hover { gap: 0.75rem; color: var(--orange); }

/* PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.product-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.product-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--glow-orange);
}
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-content { padding: 1.5rem; }
.product-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--silver-light);
}
.product-card p { font-size: 0.9rem; color: var(--silver-dark); margin-bottom: 1rem; }

/* EXPERIENCE */
.experience-section { background: var(--navy); position: relative; }
.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}
.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--electric-blue), var(--orange));
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--navy-dark);
    border: 3px solid var(--electric-blue);
    border-radius: 50%;
    box-shadow: var(--glow-blue);
    z-index: 2;
}
.timeline-content {
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 380px;
    margin: 0 2rem;
    transition: var(--transition-normal);
}
.timeline-content:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-blue);
}
.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}
.timeline-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--silver-light); }
.timeline-content p { font-size: 0.875rem; color: var(--silver-dark); margin: 0; }

.exp-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}
.exp-category {
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}
.exp-category:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--glow-blue);
}
.exp-category-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.exp-category h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--silver-light); }
.exp-category p { font-size: 0.8rem; color: var(--silver-dark); margin: 0; }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.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;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 26, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1rem; color: var(--silver-light); }
.gallery-overlay p { font-size: 0.8rem; color: var(--silver-dark); margin: 0; }

/* CTA */
.cta-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-content h2 { margin-bottom: 1.5rem; }
.cta-content p { font-size: 1.125rem; color: var(--silver-dark); margin-bottom: 2.5rem; }

/* CONTACT FORM */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver-dark);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(26, 43, 74, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--silver-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver-dark); }
.form-group textarea { min-height: 150px; resize: vertical; }

/* FOOTER */
.site-footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--silver-dark); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--electric-blue);
    font-size: 1rem;
    transition: var(--transition-fast);
}
.footer-social a:hover {
    background: var(--electric-blue);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}
.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver-light);
    margin-bottom: 1.5rem;
}
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { font-size: 0.9rem; color: var(--silver-dark); }
.footer-column a:hover { color: var(--electric-blue); }
.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--silver-dark); margin: 0; }
.footer-bottom a { color: var(--electric-blue); }

/* WORDPRESS DEFAULTS */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--silver-dark); text-align: center; margin-top: 0.5rem; }
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}
.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--silver);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}
.pagination a:hover,
.pagination .current {
    background: var(--electric-blue);
    color: var(--navy-dark);
    border-color: var(--electric-blue);
}

/* WIDGETS */
.widget {
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.widget-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0, 212, 255, 0.05); }
.widget li:last-child { border-bottom: none; }
.widget a { color: var(--silver-dark); }
.widget a:hover { color: var(--electric-blue); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { order: -1; }
    .vm-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }
    .timeline-dot { left: 20px; transform: translateX(-50%); }
}
@media (max-width: 768px) {
    :root { --section-padding: 80px; }
    .menu-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--navy-dark);
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
    }
    .primary-nav.active { right: 0; }
    .primary-nav ul { flex-direction: column; gap: 1.5rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid, .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}
@media (max-width: 480px) {
    .commitments-grid { grid-template-columns: 1fr; }
    .exp-categories { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ACCESSIBILITY */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
:focus-visible { outline: 2px solid var(--electric-blue); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}






/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--electric-blue);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
    flex-shrink: 0;
}
.theme-toggle:hover {
    background: var(--electric-blue);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}
.theme-toggle svg {
    width: 20px;
    height: 20px;
}
.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.language-switcher {
    position: relative;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--electric-blue);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lang-toggle:hover {
    background: var(--electric-blue);
    color: var(--navy-dark);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--navy-light);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    list-style: none;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: var(--shadow-card);
}
.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li {
    margin: 0;
    padding: 0;
}
.lang-option {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--silver);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}
.lang-option:hover,
.lang-option.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--electric-blue);
}

/* ============================================
   LIGHT THEME - COMPREHENSIVE OVERRIDES
   ============================================ */

/* Base light theme variables */
html[data-theme="light"] {
    --navy-dark: #FFFFFF;
    --navy: #FFFFFF;
    --navy-light: #FFFFFF;
    --navy-lighter: #F1F5F9;
    --silver: #1E293B;
    --silver-light: #0F172A;
    --silver-dark: #475569;
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
    --gradient-glass: linear-gradient(135deg, #FFFFFF, #F8FAFC);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.08);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.12), 0 0 40px rgba(0, 212, 255, 0.04);
    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.12), 0 0 40px rgba(255, 107, 53, 0.04);
}

/* Body & HTML - FORCE WHITE BACKGROUND */
html[data-theme="light"] body {
    background: #FFFFFF !important;
    color: var(--silver);
}

html[data-theme="light"] {
    background-color: #FFFFFF;
}

/* Header */
html[data-theme="light"] .site-header {
    background: transparent;
}

html[data-theme="light"] .site-header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

html[data-theme="light"] .site-logo-text {
    color: var(--silver-light);
}

html[data-theme="light"] .site-logo-text span {
    color: var(--electric-blue);
}

/* Navigation - HIGH CONTRAST */
html[data-theme="light"] .primary-nav a {
    color: var(--silver-light) !important;
    font-weight: 600;
}

html[data-theme="light"] .primary-nav a:hover {
    color: var(--electric-blue) !important;
}

html[data-theme="light"] .primary-nav a::after {
    background: var(--gradient-electric);
}

html[data-theme="light"] .menu-toggle span {
    background: var(--electric-blue);
}

/* Theme toggle in light mode */
html[data-theme="light"] .theme-toggle {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--electric-blue);
}

html[data-theme="light"] .theme-toggle:hover {
    background: var(--electric-blue);
    color: #FFFFFF;
}

html[data-theme="light"] .theme-toggle .sun-icon { display: block; }
html[data-theme="light"] .theme-toggle .moon-icon { display: none; }

/* Language switcher in light mode */
html[data-theme="light"] .lang-toggle {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--electric-blue);
}

html[data-theme="light"] .lang-toggle:hover {
    background: var(--electric-blue);
    color: #FFFFFF;
}

html[data-theme="light"] .lang-dropdown {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .lang-option {
    color: var(--silver);
}

html[data-theme="light"] .lang-option:hover,
html[data-theme="light"] .lang-option.active {
    background: rgba(0, 212, 255, 0.08);
    color: var(--electric-blue);
}

/* ============================================
   SECTION BACKGROUNDS - ALL BRIGHT WHITE
   ============================================ */

/* Hero Section */
html[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 50%, #FFF7ED 100%);
}

html[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(240,249,255,0.88) 50%, rgba(255,247,237,0.88) 100%);
}

html[data-theme="light"] .hero-section::before {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

html[data-theme="light"] .hero-grid {
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
}

html[data-theme="light"] .hero-badge {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--electric-blue);
}

html[data-theme="light"] .hero-title {
    color: var(--silver-light);
}

html[data-theme="light"] .hero-description {
    color: var(--silver-dark);
}

html[data-theme="light"] .hero-stats {
    border-top: 1px solid rgba(0, 212, 255, 0.12);
}

html[data-theme="light"] .hero-stat-number {
    color: var(--electric-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

html[data-theme="light"] .hero-stat-label {
    color: var(--silver-dark);
}

/* About Section */
html[data-theme="light"] .about-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .about-image::before {
    border-color: rgba(0, 212, 255, 0.25);
}

html[data-theme="light"] .about-image::after {
    opacity: 0.15;
}

html[data-theme="light"] .about-content h2 {
    color: var(--silver-light);
}

html[data-theme="light"] .about-content p {
    color: var(--silver-dark);
}

html[data-theme="light"] .about-feature-icon {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--electric-blue);
}

html[data-theme="light"] .about-feature h4 {
    color: var(--silver-light);
}

html[data-theme="light"] .about-feature p {
    color: var(--silver-dark);
}

/* Vision & Mission Section - THIS WAS THE MAIN ISSUE */
html[data-theme="light"] .vision-mission-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .vision-mission-section::before {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
}

html[data-theme="light"] .vm-card {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .vm-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .vm-card-icon {
    background: var(--gradient-electric);
    color: #FFFFFF;
}

html[data-theme="light"] .vm-card h3 {
    color: var(--silver-light);
}

html[data-theme="light"] .vm-card p {
    color: var(--silver-dark);
}

html[data-theme="light"] .vm-card-decoration {
    border-color: rgba(0, 212, 255, 0.08);
}

/* Commitments Section */
html[data-theme="light"] .commitments-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .commitment-card {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .commitment-card::before {
    background: var(--gradient-electric);
}

html[data-theme="light"] .commitment-card:hover {
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: var(--shadow-card);
}

html[data-theme="light"] .commitment-icon {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--electric-blue);
}

html[data-theme="light"] .commitment-card:hover .commitment-icon {
    background: var(--electric-blue);
    color: #FFFFFF;
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .commitment-card h4 {
    color: var(--silver-light);
}

html[data-theme="light"] .commitment-card p {
    color: var(--silver-dark);
}

/* Services Section */
html[data-theme="light"] .services-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .service-card {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .service-card::after {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
}

html[data-theme="light"] .service-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .service-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0.03));
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--electric-blue);
}

html[data-theme="light"] .service-card:hover .service-icon {
    background: var(--gradient-electric);
    color: #FFFFFF;
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .service-card h3 {
    color: var(--silver-light);
}

html[data-theme="light"] .service-card p {
    color: var(--silver-dark);
}

html[data-theme="light"] .service-link {
    color: var(--electric-blue);
}

html[data-theme="light"] .service-link:hover {
    color: var(--orange);
}

/* Products Section */
html[data-theme="light"] .products-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .product-card {
    background: #FFFFFF;
    border-color: rgba(255, 107, 53, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .product-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: var(--glow-orange);
}

html[data-theme="light"] .product-tag {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.15);
    color: var(--orange);
}

html[data-theme="light"] .product-card h3 {
    color: var(--silver-light);
}

html[data-theme="light"] .product-card p {
    color: var(--silver-dark);
}

/* Experience / Timeline Section */
html[data-theme="light"] .experience-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .experience-timeline::before {
    background: linear-gradient(to bottom, var(--electric-blue), var(--orange));
}

html[data-theme="light"] .timeline-dot {
    background: #FFFFFF;
    border-color: var(--electric-blue);
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .timeline-content {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .timeline-content:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .timeline-year {
    color: var(--orange);
}

html[data-theme="light"] .timeline-content h4 {
    color: var(--silver-light);
}

html[data-theme="light"] .timeline-content p {
    color: var(--silver-dark);
}

html[data-theme="light"] .exp-category {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .exp-category:hover {
    border-color: var(--electric-blue);
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .exp-category h4 {
    color: var(--silver-light);
}

html[data-theme="light"] .exp-category p {
    color: var(--silver-dark);
}

/* Gallery Section */
html[data-theme="light"] .gallery-section {
    background: #FFFFFF !important;
}

html[data-theme="light"] .gallery-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
}

html[data-theme="light"] .gallery-overlay h4 {
    color: var(--silver-light);
}

html[data-theme="light"] .gallery-overlay p {
    color: var(--silver-dark);
}

/* CTA Section */
html[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 50%, #FFF7ED 100%) !important;
}

html[data-theme="light"] .cta-section::before {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
}

html[data-theme="light"] .cta-content h2 {
    color: var(--silver-light);
}

html[data-theme="light"] .cta-content p {
    color: var(--silver-dark);
}

/* Contact Form */
html[data-theme="light"] .form-group label {
    color: var(--silver-dark);
}

html[data-theme="light"] .form-group input,
html[data-theme="light"] .form-group textarea {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--silver-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

html[data-theme="light"] .form-group input:focus,
html[data-theme="light"] .form-group textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

html[data-theme="light"] .form-group input::placeholder,
html[data-theme="light"] .form-group textarea::placeholder {
    color: var(--silver-dark);
}

/* Footer */
html[data-theme="light"] .site-footer {
    background: #F8FAFC !important;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

html[data-theme="light"] .footer-brand p {
    color: var(--silver-dark);
}

html[data-theme="light"] .footer-social a {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--electric-blue);
}

html[data-theme="light"] .footer-social a:hover {
    background: var(--electric-blue);
    color: #FFFFFF;
    box-shadow: var(--glow-blue);
}

html[data-theme="light"] .footer-column h4 {
    color: var(--silver-light);
}

html[data-theme="light"] .footer-column a {
    color: var(--silver-dark);
}

html[data-theme="light"] .footer-column a:hover {
    color: var(--electric-blue);
}

html[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

html[data-theme="light"] .footer-bottom p {
    color: var(--silver-dark);
}

/* Widgets */
html[data-theme="light"] .widget {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .widget-title {
    color: var(--silver-light);
    border-bottom-color: rgba(0, 212, 255, 0.1);
}

html[data-theme="light"] .widget li {
    border-bottom-color: rgba(0, 212, 255, 0.05);
}

html[data-theme="light"] .widget a {
    color: var(--silver-dark);
}

html[data-theme="light"] .widget a:hover {
    color: var(--electric-blue);
}

/* Comments */
html[data-theme="light"] .comments-area {
    border-top-color: rgba(0, 212, 255, 0.1);
}

html[data-theme="light"] .comment {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .comment-author {
    color: var(--silver-light);
}

html[data-theme="light"] .comment-meta {
    color: var(--silver-dark);
}

/* Pagination */
html[data-theme="light"] .pagination a,
html[data-theme="light"] .pagination span {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--silver);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .pagination a:hover,
html[data-theme="light"] .pagination .current {
    background: var(--electric-blue);
    color: #FFFFFF;
    border-color: var(--electric-blue);
}

/* Posts / Archive */
html[data-theme="light"] .posts-grid article {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .entry-title a {
    color: var(--silver-light);
}

html[data-theme="light"] .entry-title a:hover {
    color: var(--electric-blue);
}

html[data-theme="light"] .entry-meta {
    color: var(--silver-dark) !important;
}

html[data-theme="light"] .entry-summary {
    color: var(--silver-dark) !important;
}

html[data-theme="light"] .entry-content {
    color: var(--silver);
}

html[data-theme="light"] .page-header h1 {
    color: var(--silver-light);
}

html[data-theme="light"] .archive-description {
    color: var(--silver-dark);
}

/* 404 Page */
html[data-theme="light"] .error404 h1 {
    color: var(--electric-blue);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

html[data-theme="light"] .error404 h2 {
    color: var(--silver-light);
}

html[data-theme="light"] .error404 p {
    color: var(--silver-dark);
}

/* Grid Background */
html[data-theme="light"] .grid-bg::before {
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
}

/* Section subtitles and titles */
html[data-theme="light"] .section-subtitle {
    color: var(--electric-blue);
}

html[data-theme="light"] .section-title {
    color: var(--silver-light);
}

html[data-theme="light"] .section-title::after {
    background: var(--gradient-electric);
}

/* Text utilities */
html[data-theme="light"] .text-silver {
    color: var(--silver);
}

html[data-theme="light"] p {
    color: var(--silver-dark);
}

html[data-theme="light"] h1, 
html[data-theme="light"] h2, 
html[data-theme="light"] h3, 
html[data-theme="light"] h4, 
html[data-theme="light"] h5, 
html[data-theme="light"] h6 {
    color: var(--silver-light);
}

/* Buttons in light mode */
html[data-theme="light"] .btn-primary {
    background: var(--gradient-electric);
    color: #FFFFFF;
}

html[data-theme="light"] .btn-secondary {
    color: var(--electric-blue);
    border-color: var(--electric-blue);
}

html[data-theme="light"] .btn-secondary:hover {
    background: var(--electric-blue);
    color: #FFFFFF;
}

/* Glass card base */
html[data-theme="light"] .glass-card {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

html[data-theme="light"] .glass-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-blue);
}

/* Mobile nav in light mode */
@media (max-width: 768px) {
    html[data-theme="light"] .primary-nav {
        background: #FFFFFF;
        border-left-color: rgba(0, 212, 255, 0.15);
    }

    html[data-theme="light"] .primary-nav a {
        color: var(--silver-light) !important;
    }

    html[data-theme="light"] .primary-nav a:hover {
        color: var(--electric-blue) !important;
    }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Background image layer - lowest */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Overlay layer - above image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
    transition: background 0.3s ease;
}

/* Decorative radial gradients - above overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

/* Grid pattern - above gradients */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 4;
    pointer-events: none;
}

/* Content - highest */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--electric-blue);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--silver-light);
}

.hero-title .highlight {
    background: var(--gradient-electric);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight-orange {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--silver-dark);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.hero-stat { text-align: center; }

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver-dark);
    margin-top: 0.25rem;
}

/* Hero decorative elements */
.hero-decoration {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 5;
}

.hero-decoration svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   LIGHT THEME - HERO SPECIFIC
   ============================================ */
html[data-theme="light"] .hero-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 50%, #FFF7ED 100%);
}

html[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(240,249,255,0.88) 50%, rgba(255,247,237,0.88) 100%);
}

html[data-theme="light"] .hero-section::before {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
}

html[data-theme="light"] .hero-grid {
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
}

html[data-theme="light"] .hero-badge {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.15);
    color: var(--electric-blue);
}

html[data-theme="light"] .hero-title {
    color: var(--silver-light);
}

html[data-theme="light"] .hero-description {
    color: var(--silver-dark);
}

html[data-theme="light"] .hero-stats {
    border-top: 1px solid rgba(0, 212, 255, 0.12);
}

html[data-theme="light"] .hero-stat-number {
    color: var(--electric-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

html[data-theme="light"] .hero-stat-label {
    color: var(--silver-dark);
}

/* ============================================


/* ============================================
   DROPDOWN NAVIGATION MENU
   ============================================ */

/* Desktop dropdown */
.primary-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.primary-nav .nav-menu li {
    position: relative;
}

.primary-nav .nav-menu a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.primary-nav .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-electric);
    transition: width 0.3s ease;
}

.primary-nav .nav-menu a:hover::after,
.primary-nav .nav-menu .current-menu-item > a::after,
.primary-nav .nav-menu .current-page-ancestor > a::after {
    width: 100%;
}

.primary-nav .nav-menu a:hover {
    color: var(--electric-blue);
}

/* Dropdown arrow */
.dropdown-arrow {
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.has-dropdown:hover > a .dropdown-arrow,
.has-dropdown.active > a .dropdown-arrow {
    transform: rotate(180deg);
}

/* Sub-menu */
.sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-light);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 220px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: var(--shadow-card);
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--navy-light);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-left: 1px solid rgba(0, 212, 255, 0.2);
}

.sub-menu li {
    margin: 0;
    padding: 0;
}

.sub-menu a {
    display: block;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    color: var(--silver);
    font-size: 0.75rem;
    transition: var(--transition-fast);
    text-transform: none;
    letter-spacing: 0.05em;
}

.sub-menu a::after {
    display: none;
}

.sub-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--electric-blue);
}

/* Show sub-menu on hover (desktop) */
@media (min-width: 769px) {
    .has-dropdown:hover > .sub-menu,
    .has-dropdown:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* Light theme dropdown */
html[data-theme="light"] .sub-menu {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .sub-menu::before {
    background: #FFFFFF;
    border-color: rgba(0, 212, 255, 0.15);
}

html[data-theme="light"] .sub-menu a {
    color: var(--silver);
}

html[data-theme="light"] .sub-menu a:hover {
    background: rgba(0, 212, 255, 0.08);
    color: var(--electric-blue);
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.1);
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        min-width: auto;
    }

    .sub-menu::before {
        display: none;
    }

    .has-dropdown.active > .sub-menu {
        display: block;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    html[data-theme="light"] .sub-menu {
        background: rgba(0, 212, 255, 0.03);
        border-color: rgba(0, 212, 255, 0.1);
    }
}

/* ============================================
   ALBUM GALLERY
   ============================================ */

/* Album Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.album-card {
    display: block;
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-card);
}

.album-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--glow-blue), var(--shadow-deep);
}

.album-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--navy-light);
}

.album-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.album-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
}

.album-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 26, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-card-overlay {
    opacity: 1;
}

.album-card-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--electric-blue);
    font-family: var(--font-mono);
}

.album-card-title {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver-light);
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

/* Album Detail */
.album-detail {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.album-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.album-detail-header {
    margin-bottom: 2.5rem;
}

.album-detail-thumb {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-blue);
}

.album-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-detail-desc {
    max-width: 600px;
    margin: 0 auto 0.5rem;
    color: var(--silver-dark);
    font-size: 0.95rem;
}

.album-image-count {
    color: var(--electric-blue);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Album Images Grid */
.album-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.album-image-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy-light);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-normal);
}

.album-image-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--glow-blue);
}

.album-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-image-item:hover img {
    transform: scale(1.08);
}

.album-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 15, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--electric-blue);
}

.album-image-item:hover .album-image-overlay {
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.tritan-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(7, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tritan-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: opacity 0.15s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    padding: 0;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--electric-blue);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--silver);
    font-size: 0.9rem;
    text-align: center;
    max-width: 600px;
    min-height: 1.5em;
}

.lightbox-counter {
    margin-top: 0.5rem;
    color: var(--electric-blue);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    .album-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: 1fr 1fr;
    }
    .album-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .album-card-title {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

/* Light theme overrides */
[data-theme="light"] .album-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,249,255,0.95));
    border-color: rgba(0, 168, 204, 0.2);
}

[data-theme="light"] .album-card:hover {
    border-color: rgba(0, 168, 204, 0.5);
    box-shadow: 0 8px 32px rgba(0, 168, 204, 0.15), 0 20px 60px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .albums-grid .album-card .album-card-title,
html[data-theme="light"] .album-card-title {
    color: #0a0a0a !important;
    text-shadow: none;
}

[data-theme="light"] .album-card-image {
    background: #e2e5e9;
}

[data-theme="light"] .album-image-item {
    background: #e2e5e9;
    border-color: rgba(0, 168, 204, 0.15);
}

[data-theme="light"] .album-image-overlay {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .tritan-lightbox {
    background: rgba(240, 249, 255, 0.95);
}

[data-theme="light"] .lightbox-caption {
    color: var(--navy);
}

/* ============================================
   PRODUCT GROUPS (Level 1)
   ============================================ */

.product-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-group-card {
    display: block;
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-card);
}

.product-group-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--glow-blue), var(--shadow-deep);
}

.product-group-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}

.product-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-group-card:hover .product-group-image img {
    transform: scale(1.08);
}

.product-group-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
}

.product-group-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 26, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-group-card:hover .product-group-overlay {
    opacity: 1;
}

.product-group-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--electric-blue);
    font-family: var(--font-mono);
}

.product-group-title {
    padding: 1rem 1.25rem 0.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--silver-light);
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.product-group-excerpt {
    padding: 0 1.25rem 1rem;
    font-size: 0.85rem;
    color: var(--silver-dark);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   PRODUCT GROUP DETAIL (Level 2)
   ============================================ */

.product-group-detail {
    animation: fadeInUp 0.5s ease;
}

.product-group-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.product-group-thumb {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-blue);
}

.product-group-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--silver-dark);
    font-size: 0.95rem;
    text-align: center;
}

.product-group-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-group-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--silver-dark);
    font-size: 0.95rem;
}

/* ============================================
   PRODUCT CARDS (Level 2 list)
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto 0;
    max-width: 1200px;
    justify-content: center;
}

.product-card {
    display: block;
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--glow-blue), var(--shadow-deep);
}

.product-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}

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

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
}

.product-content {
    padding: 1.25rem;
}

.product-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver-light);
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.product-content p {
    font-size: 0.85rem;
    color: var(--silver-dark);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   PRODUCT DETAIL (Level 3)
   ============================================ */

.product-detail {
    animation: fadeInUp 0.5s ease;
}

.product-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-card);
    background: var(--navy-light);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
    background: var(--navy-light);
}

.product-detail-content {
    padding-top: 0.5rem;
}

.product-detail-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--silver-light);
    margin: 0 0 1rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.product-detail-excerpt {
    font-size: 1.05rem;
    color: var(--electric-blue);
    margin: 0 0 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.product-detail-body {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.8;
}

.product-detail-body h1,
.product-detail-body h2,
.product-detail-body h3,
.product-detail-body h4 {
    color: var(--silver-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-detail-body p {
    margin-bottom: 1rem;
}

.product-detail-body ul,
.product-detail-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.product-detail-body li {
    margin-bottom: 0.35rem;
}

/* ============================================
   PRODUCT RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .product-groups-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-group-title,
    .product-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-groups-grid,
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   PRODUCT LIGHT THEME
   ============================================ */

[data-theme="light"] .product-group-card,
[data-theme="light"] .product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,249,255,0.95));
    border-color: rgba(0, 168, 204, 0.2);
}

[data-theme="light"] .product-group-card:hover,
[data-theme="light"] .product-card:hover {
    border-color: rgba(0, 168, 204, 0.5);
    box-shadow: 0 8px 32px rgba(0, 168, 204, 0.15), 0 20px 60px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .product-groups-grid .product-group-card .product-group-title,
html[data-theme="light"] .product-group-title,
html[data-theme="light"] .products-grid .product-card .product-content h3,
html[data-theme="light"] .product-content h3,
html[data-theme="light"] .product-detail-title {
    color: #0a0a0a !important;
    text-shadow: none;
}

[data-theme="light"] .product-group-excerpt,
[data-theme="light"] .product-content p,
[data-theme="light"] .product-group-desc,
[data-theme="light"] .product-detail-body {
    color: #4a4a4a;
}

[data-theme="light"] .product-detail-excerpt {
    color: #0066cc;
}

[data-theme="light"] .product-group-image,
[data-theme="light"] .product-image,
[data-theme="light"] .product-detail-placeholder {
    background: #e2e5e9;
}

[data-theme="light"] .product-detail-image {
    border-color: rgba(0, 168, 204, 0.2);
}

/* ============================================
   PRODUCT DETAIL GALLERY (Level 3)
   ============================================ */

.product-detail-header {
    margin-bottom: 2.5rem;
}

.product-detail-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--silver-light);
    margin: 0.5rem 0 0.75rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.product-detail-excerpt {
    font-size: 1.1rem;
    color: var(--electric-blue);
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.product-gallery-section {
    margin-top: 2rem;
}

.product-gallery-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin: 0 auto 2rem;
    max-width: 600px;
}

.product-gallery-section {
    margin-top: 2rem;
    text-align: center;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-gallery-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy-light);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-normal);
    cursor: pointer;
}

.product-gallery-thumb:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--glow-blue);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery-thumb:hover img {
    transform: scale(1.08);
}

.product-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 15, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--electric-blue);
}

.product-gallery-thumb:hover .product-gallery-overlay {
    opacity: 1;
}

.product-gallery-desc {
    font-size: 0.85rem;
    color: var(--silver-dark);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.product-detail-body {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.product-detail-body h1,
.product-detail-body h2,
.product-detail-body h3,
.product-detail-body h4 {
    color: var(--silver-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-detail-body p {
    margin-bottom: 1rem;
}

.product-detail-body ul,
.product-detail-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.product-detail-body li {
    margin-bottom: 0.35rem;
}

/* Product gallery responsive */
@media (max-width: 768px) {
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .product-gallery-heading {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .product-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .product-gallery-desc {
        font-size: 0.75rem;
    }
}

/* Light theme overrides for product gallery */
[data-theme="light"] .product-gallery-thumb {
    background: #e2e5e9;
    border-color: rgba(0, 168, 204, 0.15);
}

[data-theme="light"] .product-gallery-overlay {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .product-gallery-desc {
    color: #555;
}

html[data-theme="light"] .product-detail-title {
    color: #0a0a0a !important;
    text-shadow: none;
}

[data-theme="light"] .product-detail-excerpt {
    color: #0066cc;
}

[data-theme="light"] .product-detail-body {
    color: #333;
}

[data-theme="light"] .product-gallery-separator {
    background: linear-gradient(90deg, transparent, rgba(0, 168, 204, 0.3), transparent);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--silver-light);
    margin: 0 0 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--electric-blue);
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--electric-blue);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--silver);
    transition: var(--transition-fast);
}

.contact-info-item a:hover {
    color: var(--electric-blue);
}

.contact-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--electric-blue);
    transition: var(--transition-fast);
}

.contact-social-links a:hover {
    background: var(--electric-blue);
    color: var(--navy-dark);
    box-shadow: var(--glow-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-glass);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-alert-success {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--electric-blue);
}

.contact-alert-error {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form-group {
    margin-bottom: 1rem;
}

.contact-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--silver-light);
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.contact-form-group .required {
    color: var(--orange);
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--silver-light);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--silver-dark);
    opacity: 0.6;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(0, 212, 255, 0.08);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Contact Map */
.contact-map {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: var(--shadow-card);
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-map iframe {
        height: 280px;
    }
}

/* Contact Light Theme */
[data-theme="light"] .contact-info,
[data-theme="light"] .contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,249,255,0.95));
    border-color: rgba(0, 168, 204, 0.2);
}

[data-theme="light"] .contact-info h3 {
    color: #0a0a0a;
    border-color: rgba(0, 168, 204, 0.2);
}

[data-theme="light"] .contact-info-item p,
[data-theme="light"] .contact-info-item a {
    color: #333;
}

[data-theme="light"] .contact-form-group label {
    color: #0a0a0a;
}

[data-theme="light"] .contact-form-group input,
[data-theme="light"] .contact-form-group textarea {
    background: rgba(0, 168, 204, 0.05);
    border-color: rgba(0, 168, 204, 0.2);
    color: #0a0a0a;
}

[data-theme="light"] .contact-form-group input::placeholder,
[data-theme="light"] .contact-form-group textarea::placeholder {
    color: #888;
}

[data-theme="light"] .contact-info-icon,
[data-theme="light"] .contact-social-links a {
    background: rgba(0, 168, 204, 0.1);
    border-color: rgba(0, 168, 204, 0.2);
}
