/* Vision Home Appliances - Main Stylesheet */

:root {
    --navy: #0a1a2e;
    --light-navy: #1a2a3a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gold-accent: #d4af37;
    --silver-accent: #c0c0c0;
    --electric-blue: #0a2042;
    --tv-glow: rgba(10, 32, 66, 0.3);
    --section-spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.logo {
    height: 70px;
    transition: all 0.3s ease;
}

header.scrolled .logo {
    height: 50px;
}

.logo img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--navy);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--gold-accent), var(--silver-accent));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.active {
    color: var(--electric-blue) !important;
}

.active::after {
    width: 100% !important;
}

/* Floating Hero Section */
.floating-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
    padding: 180px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -50px;
}

.floating-tv-container {
    position: relative;
    height: 500px;
    margin: 0 auto;
    perspective: 1000px;
    max-width: 900px;
}

.floating-tv {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float 8s ease-in-out infinite;
}

.floating-tv img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}

.floating-tv-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, var(--tv-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.hero-content {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.model-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    color: var(--navy);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.floating-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, var(--white), var(--silver-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    color: var(--navy);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    box-shadow: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    color: var(--navy);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Quantum Showcase Section */
.quantum-showcase {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
    position: relative;
}

.quantum-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.quantum-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.quantum-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 10px;
}

.quantum-dot {
    background: conic-gradient(
        from var(--angle),
        #ff0000,
        #ffff00,
        #00ff00,
        #00ffff,
        #0000ff,
        #ff00ff,
        #ff0000
    );
    border-radius: 50%;
    animation: colorShift 5s linear infinite, pulseDot 2s ease-in-out infinite alternate;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.quantum-dot.active {
    opacity: 1;
    transform: scale(1);
}

.quantum-content {
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--navy);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--silver-accent));
}

.quantum-content p {
    color: var(--light-navy);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Immersive Experience Section */
.immersive-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    margin: -50px 0;
}

.immersive-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.immersive-content {
    flex: 1;
}

.immersive-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.sound-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sound-wave {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: soundWave 3s ease-out infinite;
    opacity: 0;
}

.sound-wave:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.sound-wave:nth-child(2) {
    width: 80%;
    height: 80%;
    animation-delay: 0.5s;
}

.sound-wave:nth-child(3) {
    width: 60%;
    height: 60%;
    animation-delay: 1s;
}

.sound-wave:nth-child(4) {
    width: 40%;
    height: 40%;
    animation-delay: 1.5s;
}

.sound-wave:nth-child(5) {
    width: 20%;
    height: 20%;
    animation-delay: 2s;
}

.immersive-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.immersive-feature {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.immersive-feature:nth-child(1) {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.immersive-feature:nth-child(2) {
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.immersive-feature:nth-child(3) {
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.immersive-feature:nth-child(4) {
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.immersive-feature:hover {
    transform: translateY(-10px) !important;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.immersive-feature i {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.immersive-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.immersive-feature p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Gaming Section */
.gaming-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.gaming-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gaming-feature {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.gaming-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gaming-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--navy);
    font-size: 2rem;
}

.gaming-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.gaming-feature p {
    color: var(--light-navy);
    font-size: 1rem;
}

/* Smart Features Section */
.smart-features {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--navy);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.feature-card p {
    color: var(--light-navy);
    font-size: 1rem;
}

/* Tech Specs Grid */
.tech-specs-grid {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.spec-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.spec-card:nth-child(1) {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.spec-card:nth-child(2) {
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.spec-card:nth-child(3) {
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.spec-card:nth-child(4) {
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.spec-card:nth-child(5) {
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.spec-card:nth-child(6) {
    animation: fadeInUp 1s ease-out 1.3s forwards;
}

.spec-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.spec-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--navy);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    transform: rotate(15deg) scale(1.1);
}

.spec-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.spec-card p {
    color: var(--light-navy);
    font-size: 1rem;
    line-height: 1.6;
}

/* Living Room Showcase */
.living-room-showcase {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    margin: -50px 0;
}

.showcase-container {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.showcase-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    /* IMPORTANT FIX: 
      Changed path from 'https://i.ibb.co/0n7s6Y3/tv-living-room.jpg' 
      to a relative path. Since this CSS file is in /assets/css/,
      we go up one level (../) and into the images/ folder.
    */
    background: url('../images/showcase-living-room.jpg') center/cover no-repeat;
    transition: transform 10s ease;
}

.showcase-container:hover .showcase-bg {
    transform: scale(1.05);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,26,46,0.9), transparent);
    color: var(--white);
    padding: 60px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.showcase-container:hover .showcase-content {
    transform: translateY(0);
    opacity: 1;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.showcase-content p {
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(var(--gold-accent) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
    margin-top: -50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 90px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-section, .location-section {
    text-align: center;
}

.contact-section h3, .location-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold-accent);
}

.contact-section p, .location-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.location-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-section a:hover {
    color: var(--gold-accent);
}

/* ADDED FOOTER LINKS FOR CONSISTENCY */
.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-accent);
}

/* ADDED SOCIAL LINKS FOR CONSISTENCY */
.social-links {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--gold-accent);
}

.copyright {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 300;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(var(--gold-accent) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
}

@keyframes colorShift {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes soundWave {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .quantum-container, .immersive-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gaming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-hero h1 {
        font-size: 3.2rem;
    }
    
    .immersive-section {
        padding: 100px 0;
    }
    
    .showcase-container {
        height: 500px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .floating-hero {
        padding: 150px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }
    
    .floating-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-links.active {
        right: 0;
        display: flex;
    }
    
    .nav-links li {
        margin: 20px 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gaming-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .immersive-features {
        grid-template-columns: 1fr;
    }

    /* Index page specific responsive */
    .contacts-container {
        flex-direction: column;
        gap: 40px;
    }

    .series-container {
        flex-direction: column;
        gap: 40px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .floating-hero h1 {
        font-size: 2rem;
    }
    
    .floating-hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .showcase-content {
        padding: 40px 20px;
    }
    
    .showcase-content h2 {
        font-size: 2rem;
    }
    
    .quantum-dots {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
}

/* INDEX.HTML SPECIFIC STYLES 
  (These were in the original index.html file, 
  but are better placed in the main.css file)
*/

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
    padding: 180px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, var(--white), var(--silver-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.series-overview {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: -20px auto 60px;
    color: var(--light-navy);
}

.series-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.series-card {
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    flex: 1;
    max-width: 500px;
    transition: all 0.5s ease;
    position: relative;
}

.series-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.series-image {
    padding: 40px;
    position: relative;
    text-align: center;
    background: #e9eef3;
}

.series-image img {
    width: 100%;
    max-width: 400px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.series-card:hover .series-image img {
    transform: scale(1.05);
}

.tv-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--tv-glow);
    border-radius: 50%;
    filter: blur(100px);
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    transition: all 0.5s ease;
    z-index: 0;
}

.series-card:hover .tv-glow {
    opacity: 0.8;
}

.series-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    color: var(--navy);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.series-info {
    padding: 40px;
    text-align: center;
}

.series-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.series-info p {
    color: var(--light-navy);
    margin-bottom: 30px;
}

.series-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.series-feature {
    background: rgba(10, 32, 66, 0.05);
    color: var(--navy);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.tech-showcase {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
    color: var(--white);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    margin: -50px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.tech-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 25px;
}

.tech-item h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.tech-item p {
    opacity: 0.8;
}

.contacts {
    padding: var(--section-spacing) 0;
    background: var(--light-gray);
}

.contacts-container {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contacts-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-accent), var(--silver-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-content p,
.contact-content a {
    font-size: 1.1rem;
    color: var(--light-navy);
    text-decoration: none;
    display: block;
}

.contact-content a:hover {
    color: var(--electric-blue);
}

.contacts-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}