:root {
    /* High contrast Black & White theme */
    --color-bg: #050505;         
    --color-lite-black: #121212; 
    --color-red: #ffffff;        
    --color-red-glow: rgba(255, 255, 255, 0.2);
    --color-green: #bbbbbb;      
    --color-green-glow: rgba(255, 255, 255, 0.1);
    
    --color-text: #f0f0f0;
    --color-text-muted: #888888;
    --color-glass: rgba(255, 255, 255, 0.03);
    --color-glass-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.text-center { text-align: center; }
.w-100 { width: 100%; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--color-text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
    background-color: #cccccc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background-color: #222222;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #444444;
}
.btn-secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    border-color: #666666;
}

.btn-outline {
    border: 1px solid var(--color-glass-border);
    background-color: transparent;
}
.btn-outline:hover {
    background-color: var(--color-glass);
    border-color: #fff;
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 0.5rem 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-glass-border);
    transition: background 0.3s ease, padding 0.3s ease;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4%; /* Expand space so logo moves towards left */
    max-width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto; /* Push nav links to the right */
}
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}
.logo-img:hover {
    transform: scale(1.03) translateY(-1px);
}
.footer-logo {
    height: 100px;
    margin-bottom: 1rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}
.nav-links a:hover {
    color: #fff;
}
.nav-links .btn {
    color: #fff;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 1001; /* Stay above mobile menu */
}
.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--color-green);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background-color: var(--color-red); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); background-color: var(--color-red); }

/* Hero Section & Carousel */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    /* Background moved to individual carousel slides */
}
.carousel-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    overflow: hidden;
}
.carousel-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}
.carousel-bg.active {
    opacity: 1;
    transform: scale(1);
}
.hero-bg-accent {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--color-red-glow) 0%, transparent 60%);
    opacity: 0.5;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 12s infinite alternate ease-in-out;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: -10%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--color-green-glow) 0%, transparent 60%);
    opacity: 0.4;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 15s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 40px) scale(1.15); }
}

.hero-content {
    max-width: 800px;
    margin-left: 5%; /* Provides a softer, 'lite left' inset */
    margin-right: auto;
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.85)); /* Lite blur black shadow */
}
.hero-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* Lite blur black shadow */
}
.hero-desc strong {
    color: var(--color-red);
    font-size: 1.1em;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.highlight {
    color: var(--color-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(42, 157, 143, 0.4);
}
.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--color-lite-black);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.brands-list {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 2;
}
.about-visual {
    position: relative;
}
.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid var(--color-glass-border);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.image-wrapper:hover {
    transform: translateY(-10px) rotate(1.5deg);
    box-shadow: 0 30px 60px rgba(255, 51, 68, 0.25);
    border-color: rgba(255, 51, 68, 0.5);
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img:hover {
    transform: scale(1.1);
}
.glass-card {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(230, 57, 70, 0.05));
    border: 1px solid var(--color-glass-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.glass-card h3 {
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 1rem;
}
.overlay-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    max-width: 250px;
}

/* Products Breakdown */
.products {
    padding: 6rem 0;
}
/* Transportation Logistics Animations */
.global-network {
    padding: 6rem 0;
    background-color: var(--color-bg); /* Match root bg for seamless flow */
    overflow: hidden;
    position: relative;
}
.map-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: auto;
    aspect-ratio: 2 / 1;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, transparent 60%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.6);
}
.world-svg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 20px;
    z-index: 0;
}
.world-svg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    pointer-events: none;
    animation: mapDrift 12s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes mapDrift {
    0%   { transform: scale(1)    translate(0,    0);    opacity: 0.75; }
    25%  { transform: scale(1.03) translate(-1%, 0.5%);  opacity: 0.90; }
    50%  { transform: scale(1.05) translate(0,    1%);   opacity: 0.95; }
    75%  { transform: scale(1.03) translate(1%,  0.5%);  opacity: 0.90; }
    100% { transform: scale(1)    translate(0,    0);    opacity: 0.75; }
}

/* Radar sweep overlay */
.world-svg-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: conic-gradient(from 0deg,
        transparent 0deg,
        rgba(255,255,255,0.07) 25deg,
        transparent 55deg
    );
    animation: radarSweep 6s linear infinite;
    pointer-events: none;
    z-index: 2;
}
@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Grid overlay */
.world-svg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 70px 45px;
    animation: gridBreath 5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 3;
}
@keyframes gridBreath {
    from { opacity: 0.4; }
    to   { opacity: 1; }
}

/* Pulsing glow border on container */
.map-container {
    animation: borderGlow 4s ease-in-out infinite;
}
@keyframes borderGlow {
    0%   { box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.04); }
    50%  { box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.14); }
    100% { box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.04); }
}
.marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}
.marker p {
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.8;
    background: rgba(0,0,0,0.6);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.marker:hover p {
    opacity: 1;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.marker:hover {
    z-index: 10;
}

/* Glowing Map Pins with Radar Pulse */
.pin-design {
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 30px rgba(255,255,255,0.5);
    position: relative;
}


/* Positions calculated from real lat/lon for img crop: left:-50%, width:160% */
.india    { top: 31%; left: 65%; }
.dubai    { top: 27%; left: 55%; }
.srilanka { top: 43%; left: 66%; }
.hongkong { top: 30%; left: 81%; }
.australia{ top: 73%; left: 90%; }

.worldwide-text {
    font-size: 1.2rem;
    color: var(--color-green);
    font-weight: 600;
}

/* Flag Buttons */
.flag-btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 20;
}

.btn-flag {
    position: relative;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.btn-flag::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    transition: var(--transition);
    opacity: 0.85;
}

.btn-flag:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #fff;
}

.btn-flag:hover::before {
    opacity: 1;
}

/* India Button gradient */
.btn-india::before {
    background: linear-gradient(135deg, #FF9933 25%, #FFFFFF 50%, #138808 75%);
}
.btn-india { box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3); }
.btn-india:hover { box-shadow: 0 12px 30px rgba(255, 153, 51, 0.6); }

/* Dubai Button gradient */
.btn-dubai::before {
    background: linear-gradient(80deg, #ff0000 15%, #00732f 15%, #00732f 45%, #ffffff 45%, #ffffff 75%, #000000 75%);
}
.btn-dubai { box-shadow: 0 8px 25px rgba(0, 115, 47, 0.3); }
.btn-dubai:hover { box-shadow: 0 12px 30px rgba(0, 115, 47, 0.6); }

/* Sri Lanka Button gradient */
.btn-srilanka::before {
    background: linear-gradient(135deg, #005f56 15%, #eb7400 35%, #8d153a 70%);
}
.btn-srilanka { box-shadow: 0 8px 25px rgba(141, 21, 58, 0.3); }
.btn-srilanka:hover { box-shadow: 0 12px 30px rgba(141, 21, 58, 0.6); }

/* Hong Kong Button gradient */
.btn-hongkong::before {
    background: linear-gradient(135deg, #de2910 80%, #b81b09 100%);
}
.btn-hongkong { box-shadow: 0 8px 25px rgba(222, 41, 16, 0.3); }
.btn-hongkong:hover { box-shadow: 0 12px 30px rgba(222, 41, 16, 0.6); }
.btn-hongkong .flower {
    color: white;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}



/* Contact Section */
.contact {
    padding: 6rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}
.info-item {
    background: var(--color-lite-black);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-glass-border);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.contact-form-glass {
    background: var(--color-lite-black);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--color-glass-border);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--color-glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 10px var(--color-red-glow);
}
.form-group select {
    color: var(--color-text-muted);
}
.form-group select option {
    background: var(--color-lite-black);
    color: #fff;
}

/* Main Expanded Footer */
.main-footer {
    background: var(--color-lite-black);
    padding-top: 5rem;
    position: relative;
    color: #ccc;
    font-family: var(--font-body);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col hr {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}
.footer-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.footer-info strong {
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.footer-bottom {
    background: #111;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.flex-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
}
.footer-links a:hover {
    color: var(--color-red);
}
.copyright {
    font-size: 0.85rem;
    color: #777;
}
.scroll-top {
    position: absolute;
    bottom: 30px;
    right: 5%;
    background: #00b4d8; 
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    transition: var(--transition);
    z-index: 10;
}
.scroll-top:hover {
    transform: translateY(-5px);
    background: #0096c7;
}
.footer-logo-small {
    height: 60px;
    object-fit: contain;
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .container { width: 95%; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .hamburger { display: flex; }
    .nav-content { flex-direction: row; justify-content: space-between; align-items: center; padding: 0 1rem; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--color-red-glow);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { font-size: 1.3rem; display: block; padding: 15px 0; }
    
    .hero { text-align: center; padding-top: 100px; display: flex; flex-direction: column; justify-content: center; min-height: 100vh; }
    .hero-content { margin: 0 auto !important; padding-top: 0; padding-bottom: 3rem; }
    .hero h1 { font-size: 2.3rem; margin-bottom: 1rem; line-height: 1.3; }
    .hero-desc { margin: 0 auto 2rem; font-size: 0.95rem; padding: 0 10px; }
    .hero-cta { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 1rem; }
    .hero-cta .btn { width: 80%; }
    
    .section-title { font-size: 2rem; }
    
    .map-container { height: auto; min-height: 250px; }
    .marker p { font-size: 0.7rem; }
    .flag-design { width: 24px; height: 24px; }
    
    .flag-btn-group { flex-direction: column; width: 100%; align-items: center; }
    .btn-flag { width: 85%; justify-content: center; font-size: 1rem; }
    
    .contact-form-glass { padding: 1.5rem; }
    .glass-card { padding: 2rem 1.2rem; }
    .overlay-card { position: relative; bottom: auto; left: auto; max-width: 100%; margin-top: -2rem; margin-left: auto; margin-right: auto; }
    
    .prod-card { padding: 1.5rem; }
    .cat-btn { padding: 0.8rem 1rem; font-size: 0.85rem; }
    
    
    /* Footer & Logo fixes */
    .logo-img { height: 60px; } /* Scale down top logo */
    .main-footer { padding-top: 3rem; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-col h4 { justify-content: center; }
    .footer-col hr { margin: 1.5rem auto; width: 50%; }
    .footer-logo-small { margin-bottom: 1.5rem; }
    .flex-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 2rem; }
}

/* Products Breakdown & Brand Marquee */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.visual-card {
    background: var(--color-lite-black);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    min-width: 130px;
}
.visual-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 30px var(--color-green-glow);
}
.visual-card.active {
    background: var(--color-red);
    border-color: var(--color-red);
    box-shadow: 0 10px 25px var(--color-red-glow);
}
.vis-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.vis-title {
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.visual-card.active .vis-icon {
    transform: scale(1.1);
}

.product-displays {
    max-width: 800px;
    margin: 0 auto;
}
.prod-card {
    display: none;
    background: var(--color-lite-black);
    border: 1px solid var(--color-glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    animation: fadeIn 0.4s ease;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--color-green-glow);
    border-color: var(--color-green);
}
.prod-card.active {
    display: block;
}
/* Breaking News Layout */
.news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.news-header h3 {
    font-size: 1.8rem;
    color: var(--color-green);
}
.live-badge {
    background: #e63946;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    animation: flash 2s infinite;
}
@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.news-ticker {
    background: rgba(230, 57, 70, 0.1);
    border-left: 4px solid #e63946;
    padding: 12px 15px;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    position: relative;
}
.ticker-content {
    display: inline-block;
    animation: ticker 15s linear infinite;
    font-weight: 600;
    color: #ffd166;
    font-size: 0.95rem;
}
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.news-article {
    background: rgba(10, 10, 10, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}
.news-article:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.news-article.hidden {
    display: none !important;
}
.article-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; 
    border-bottom: 2px solid rgba(255,255,255,0.05);
}
.bg-generic {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.8));
}
.article-content {
    padding: 1.2rem;
}
.article-content .tag {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}
.article-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
}
.article-content p {
    font-size: 0.85rem;
    color: #999;
}

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

/* Brands Marquee Carousel */
.brands-marquee {
    margin: 4rem 0 0 0;
    padding: 2.5rem 0;
    background: rgba(10, 10, 10, 0.4);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.brands-marquee::before, .brands-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}
.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}
.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}
.marquee-track, .marquee-track-reverse {
    display: flex;
    width: max-content;
    white-space: nowrap;
}
.marquee-track {
    animation: scrollMarquee 35s linear infinite;
}
.marquee-track-reverse {
    animation: scrollMarqueeReverse 40s linear infinite;
}
.marquee-track span, .marquee-track-reverse span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}
.brand-svg {
    height: 40px;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
    transition: var(--transition);
}
.marquee-track span:hover .brand-svg, .marquee-track-reverse span:hover .brand-svg {
    filter: grayscale(100%) brightness(0) invert(1) opacity(1);
    transform: scale(1.15) translateY(-2px);
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollMarqueeReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Viewport Scroll Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-50px); transition: 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-zoom { opacity: 0; transform: scale(0.9); transition: 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-zoom.active { opacity: 1; transform: scale(1); }

.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }

/* Mobile Brand Logo Grid */
.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.2rem;
    padding: 0.5rem 0;
}
.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.brand-logo-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}
.brand-logo-img {
    height: 48px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: all 0.3s ease;
}
.brand-logo-item:hover .brand-logo-img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.12);
}
.brand-custom-img {
    filter: opacity(0.8) !important;
}
.brand-logo-item:hover .brand-custom-img {
    filter: opacity(1) !important;
    transform: scale(1.12);
}
.brand-logo-item span {
    font-size: 0.75rem;
    color: #777;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.brand-logo-item:hover span {
    color: #fff;
}
.brand-wordmark {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.brand-logo-item:hover .brand-wordmark {
    color: #fff;
}

