/* Custom Properties / Variables */
:root {
    --primary-green: #80C342;
    --primary-dark: #6CA637;
    --bg-white: #FFFFFF;
    --bg-light: #F4F6F9;
    --bg-shade: #E2E6EE;
    --text-dark: #1A1A1A;
    --text-gray: #555555;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 230, 238, 0.5);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Hero Background Elements */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    padding-top: 6vh;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Orbit Lines (CSS Alternative for Performance) */
.orbit-lines-css {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed var(--primary-green);
    will-change: transform;
}

.orbit-1 { width: 1000px; height: 1000px; margin-top: -500px; margin-left: -500px; animation: spinOrbit 90s linear infinite; }
.orbit-2 { width: 1400px; height: 1400px; margin-top: -700px; margin-left: -700px; animation: spinOrbit 120s linear infinite reverse; border-dasharray: none; border-style: dotted;} /* standard CSS dotted border */
.orbit-3 { width: 1800px; height: 1800px; margin-top: -900px; margin-left: -900px; animation: spinOrbit 70s linear infinite; border-style: dotted; }

@keyframes spinOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Globe at bottom */
.globe-container {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    border: 1px solid rgba(128, 195, 66, 0.2);
    background: radial-gradient(circle at top, rgba(128, 195, 66, 0.05) 0%, transparent 70%);
}
.globe-bg {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(128, 195, 66, 0.05) 40px, rgba(128, 195, 66, 0.05) 41px),
                      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(128, 195, 66, 0.05) 40px, rgba(128, 195, 66, 0.05) 41px);
    overflow: hidden;
}
.globe-line {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(128, 195, 66, 0.15);
}
.line-1 { width: 100%; height: 30%; }
.line-2 { width: 30%; height: 100%; }
.line-3 { width: 80%; height: 80%; }

/* Floating Icons */
.floating-icon {
    position: absolute;
    color: var(--primary-green);
    opacity: 0.2;
    will-change: transform;
}
.icon-satellite { top: 20%; left: 10%; animation: floatSat 8s ease-in-out infinite; font-size: 4rem; opacity: 0.15; }
.icon-dish { bottom: 20%; left: 8%; animation: floatDish 6s ease-in-out infinite 1s; font-size: 3.5rem; opacity: 0.25; }

@keyframes floatSat {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(50deg); }
}
@keyframes floatDish {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

/* Floating Particles (DVB, NDI, RTMP, SRT) */
.floating-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.04;
    letter-spacing: 2px;
    animation: particleCirculate 20s ease-in-out infinite;
    will-change: transform;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-dvb, .p-png { top: 15%; left: 10%; animation-duration: 25s; animation-delay: -5s; font-size: 1.5rem; }
.p-ndi, .p-tga { top: 75%; left: 15%; animation-duration: 22s; animation-delay: -10s; font-size: 1.2rem; }
.p-rtmp, .p-swf { top: 25%; right: 12%; animation-duration: 28s; animation-delay: -2s; font-size: 1.8rem; }
.p-srt, .p-avi { top: 65%; right: 18%; animation-duration: 20s; animation-delay: -15s; font-size: 1.4rem; }

@keyframes particleCirculate {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(10deg); }
    66% { transform: translate(-30px, -80px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}


/* Floating Labels */
.floating-label {
    position: absolute;
    background: var(--bg-white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0,0,0,0.05); /* Replaced box-shadow with border for performance */
    animation: floatLabel 6s ease-in-out infinite;
    z-index: 5;
    will-change: transform;
}
.floating-label .dot {
    width: 8px; height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
    will-change: transform, opacity;
}
.label-1 { top: 35%; left: 15%; animation-delay: 0s; }
.label-2 { bottom: 15%; left: 18%; animation-delay: 2s; }
.label-3 { top: 25%; right: 10%; animation-delay: 1s; }
.label-4 { bottom: 20%; right: 15%; animation-delay: 3s; }

@keyframes floatLabel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Particles */
.particle {
    position: absolute;
    width: 5px; height: 5px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.4;
    animation-name: drift;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.p-1 { top: 20%; left: 30%; animation-duration: 25s; }
.p-2 { top: 70%; left: 40%; animation-duration: 30s; animation-direction: reverse; }
.p-3 { top: 15%; right: 30%; width: 7px; height: 7px; opacity: 0.2; animation-duration: 20s; }
.p-4 { bottom: 40%; right: 10%; animation-duration: 22s; }
.p-5 { top: 50%; left: 5%; opacity: 0.5; }
.p-6 { bottom: 10%; right: 40%; width: 4px; height: 4px; }

@keyframes drift {
    0% { transform: translate(0, 0); }
    33% { transform: translate(40px, -60px); }
    66% { transform: translate(-30px, -30px); }
    100% { transform: translate(0, 0); }
}

/* Signal Ring */
.signal-ring {
    position: absolute;
    bottom: 25%; right: 18%;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 1px solid var(--primary-green);
    opacity: 0.15;
    animation: rippleRing 4s linear infinite;
    will-change: transform, opacity;
}
.signal-ring::before, .signal-ring::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--primary-green);
    will-change: transform, opacity;
}
.signal-ring::before { width: 70px; height: 70px; }
.signal-ring::after { width: 30px; height: 30px; background: var(--primary-green); opacity: 0.2;}

@keyframes rippleRing {
    0% { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Clients Section */
.clients-section {
    padding: 30px 0 50px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.clients-title {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.clients-title::before,
.clients-title::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(128, 195, 66, 0.3);
}

.clients-title::before {
    margin-right: 20px;
}

.clients-title::after {
    margin-left: 20px;
}

.clients-logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-logos-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scrollLogos 25s linear infinite;
    will-change: transform;
}

.clients-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); }
}

.client-logo {
    color: #666;
    font-weight: 800;
    font-size: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo.SONY { font-family: 'Times New Roman', serif; font-size: 2rem; font-weight: bold; letter-spacing: 2px; }
.client-logo.Panasonic { font-family: Helvetica, sans-serif; font-size: 1.6rem; letter-spacing: -1px; }
.client-logo.ARRI { font-family: Arial, sans-serif; font-size: 2rem; font-weight: 900; }
.client-logo.Canon { font-family: 'Times New Roman', serif; font-size: 2.2rem; font-style: italic; font-weight: bold; letter-spacing: -1px; }
.client-logo.GrassValley { font-family: Arial, sans-serif; font-size: 1.4rem; font-weight: 400; display: flex; align-items: center; gap: 5px; }
.client-logo.GrassValley i { font-weight: 800; font-size: 1.8rem; font-style: italic; }
.client-logo.Blackmagic { font-family: Arial, sans-serif; font-size: 1.4rem; font-weight: 400; display: flex; align-items: center; gap: 5px; }
.client-logo.Blackmagic .dots { display: flex; flex-direction: column; font-size: 0.5rem; line-height: 0.5; color: #666; }

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 span, h2 span {
    color: var(--primary-green);
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 9px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--bg-white);
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(128, 195, 66, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(128, 195, 66, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--bg-shade);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
}



/* Top Bar */
.top-bar {
    background: #000000;
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-center, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left {
    gap: 16px;
}

.top-bar-left i {
    margin-right: 6px;
}

.top-bar-center {
    flex-grow: 1;
    justify-content: center;
    text-align: center;
}

.top-bar-right {
    gap: 16px;
}

.top-bar-right a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.top-bar-right a:hover {
    opacity: 1;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bg-shade);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
}

/* Scrolled Round Model */
header.scrolled {
    top: 20px;
    width: 95%;
    max-width: 1200px;
    border-radius: 50px;
    border-bottom: none;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    padding: 6px 0;
}

header.scrolled .container {
    padding: 0 40px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled .logo-img {
    height: 55px;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

.nav-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    color: var(--text-gray);
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--primary-green);
}

.btn-text:hover {
    color: var(--primary-dark);
}



/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-white) 100%);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--bg-shade);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* NRCS Section */
.nrcs-section {
    padding: 100px 0;
    background: var(--text-dark);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.nrcs-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(128, 195, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.nrcs-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/teleprompter_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.nrcs-section .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nrcs-text {
    max-width: 500px;
}

.nrcs-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--bg-white);
}

.nrcs-btn-mobile-wrapper {
    display: none;
    text-align: center;
    margin-top: 25px;
}

.nrcs-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.nrcs-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.nrcs-features li i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.nrcs-image-container {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.nrcs-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.nrcs-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/broadcast_watermark_v2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.product-carousel-wrapper {
    display: flex;
    align-items: center;
    padding-left: max(20px, calc((100vw - 1200px) / 2));
    gap: 20px;
}

.scroll-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.scroll-btn {
    background: var(--bg-white);
    border: 1px solid var(--bg-shade);
    color: var(--primary-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.scroll-btn:hover {
    background: var(--primary-green);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-grid {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding-bottom: 20px;
    padding-right: 40px;
    margin-left: 0;
    flex-grow: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 380px; /* Fixed width to prevent squishing */
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-shade);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(128, 195, 66, 0.5);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-white), transparent);
    opacity: 0.2;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: var(--bg-light);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-shade);
    overflow: hidden;
}

.contact-form-wrapper {
    padding: 25px 30px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-header {
    text-align: left;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--bg-shade);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(128, 195, 66, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 60px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--bg-shade);
}

.captcha-question {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-green);
    letter-spacing: 2px;
    user-select: none;
    background: var(--bg-white);
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px dashed var(--primary-green);
}

.captcha-input {
    width: 100px;
    text-align: center;
}

.form-submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;
    margin-top: 5px;
    border: none;
}

.form-message {
    display: none;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: rgba(128, 195, 66, 0.1);
    color: var(--primary-dark);
    border: 1px solid var(--primary-green);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Footer Redesign */
footer {
    background: #091116;
    padding: 80px 0 0;
    color: #a0aec0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
    z-index: 10;
}

.footer-bg-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-world-map {
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(128, 195, 66, 0.15) 0%, transparent 60%);
    opacity: 0.6;
}

.footer-globe-override {
    bottom: -600px;
    opacity: 0.3;
}

.footer-orbit-override {
    bottom: -600px;
    opacity: 0.05;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2.5fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    color: var(--primary-green);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links h4 {
    color: var(--bg-white);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col a {
    color: #a0aec0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.links-col a i {
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: transform var(--transition-fast);
}

.links-col a:hover {
    color: var(--primary-green);
}

.links-col a:hover i {
    transform: translateX(4px);
}

.contact-card-col {
    position: relative;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-item span {
    display: block;
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a, .contact-item p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.footer-bottom-item.center {
    color: #718096;
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .brand-col, .contact-card-col {
        grid-column: 1 / -1;
    }
    .footer-satellite {
        display: none;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu { gap: 20px; }
    .nav-links { gap: 16px; }
    .hero h1 { font-size: 3.5rem; }
    .about .container { grid-template-columns: 1fr; gap: 40px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Reduce background animation opacity on mobile */
    .orbit-lines-css { opacity: 0.05; }
    .icon-satellite { opacity: 0.05; }
    .icon-dish { opacity: 0.08; }
    .globe-container { opacity: 0.3; }
    .floating-label { display: none; }

    /* Reduce space between carousel and about section */
    .clients-section { padding-bottom: 10px; }
    .about { padding-top: 30px; }

    .top-bar { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
    }

    .nav-menu.active { transform: translateY(0); }
    .nav-links { flex-direction: column; align-items: center; gap: 30px; }
    .nav-link { font-size: 1.5rem; }

    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .product-grid { 
        scroll-snap-type: x mandatory;
        gap: 20px;
    }
    .product-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
    }
    .about-stats { grid-template-columns: 1fr; }
    .about-text h2, .stat-card { text-align: center; }
    .about-text p { text-align: justify; }
    
    /* NRCS section mobile fixes */
    .nrcs-section .container { grid-template-columns: 1fr; gap: 40px; }
    .nrcs-text h2 { font-size: 2rem; }
    .nrcs-btn-desktop { display: none; }
    .nrcs-btn-mobile-wrapper { display: block; }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h3,
    .footer-col .social-icons,
    .contact-item {
        justify-content: center;
    }
    .footer-col ul {
        padding-left: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-item.left, 
    .footer-bottom-item.right {
        display: none;
    }
}

/* =========================================
   PRODUCT PAGE STYLES
   ========================================= */

.product-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-white);
    overflow: hidden;
}

.product-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.product-hero-text {
    flex: 1;
}

.product-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(128, 195, 66, 0.15);
    color: var(--primary-green);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(128, 195, 66, 0.3);
}

.product-hero-text h1 {
    font-size: 3.5rem;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 24px;
}

.product-hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.product-hero-image {
    flex: 1.2;
    perspective: 1000px;
}

.browser-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.browser-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.browser-header {
    background: #e6e6e6;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid #dcdcdc;
}

.browser-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-header .dot.red { background: #ff5f56; }
.browser-header .dot.yellow { background: #ffbd2e; }
.browser-header .dot.green { background: #27c93f; }

.browser-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

/* Features */
.product-features {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--bg-shade);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(128, 195, 66, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(128, 195, 66, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Specs Integration */
.product-specs {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-sims {
    position: relative;
}

.why-sims::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/pcr_news_desk.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    z-index: 1;
}

.why-sims .container {
    position: relative;
    z-index: 2;
}

.specs-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.specs-image {
    flex: 1;
}

.specs-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.specs-content {
    flex: 1;
}

.specs-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.specs-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.specs-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* CTA */
.product-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-card {
    background: #091116;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--bg-white);
}

.cta-card h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-card p {
    color: #a0aec0;
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-card .btn-primary {
    position: relative;
    z-index: 2;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Dashboard Showcase */
.dashboard-showcase {
    padding: 80px 0;
    background: #ffffff;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}
.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.showcase-title {
    flex: 1.2;
}
.showcase-title h2 {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.2;
}
.showcase-title h2 .text-green { color: #00d18b; }
.showcase-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}
.showcase-desc {
    flex: 1;
    padding: 0 40px;
    border-left: 2px solid #cbd5e1;
}
.showcase-desc p {
    color: var(--primary-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}
.showcase-logo {
    display: flex;
    justify-content: flex-end;
}
.showcase-main {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}
.showcase-interface {
    flex: 3;
}
.supported-formats {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.sf-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sf-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.format-logo {
    display: flex;
    align-items: center;
    user-select: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.format-logo:hover {
    opacity: 1;
}
.format-logo.blackmagic { font-family: Arial, sans-serif; font-size: 1.2rem; gap: 3px; font-weight: 600; color: #000; }
.format-logo.blackmagic .dots { font-size: 0.7rem; line-height: 0.8; margin-top: -3px; }
.format-logo.ndi { font-family: 'Arial Black', sans-serif; font-size: 1.1rem; font-style: italic; font-weight: 900; background: #222; color: #fff; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.format-logo.srt { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 1.4rem; font-weight: 800; color: #FF4F00; letter-spacing: 1px; }
.format-logo.dvb { font-family: 'Times New Roman', Times, serif; font-size: 1.5rem; font-style: italic; font-weight: 900; color: #004B87; letter-spacing: -2px; }
.format-logo.rtmp { font-family: Arial, sans-serif; font-size: 1.3rem; font-weight: 800; color: #333; letter-spacing: -0.5px; }
.showcase-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.s-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.sf-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.green-bg { background: #dcfce7; color: #16a34a; }
.blue-bg { background: #dbeafe; color: #2563eb; }
.purple-bg { background: #f3e8ff; color: #9333ea; }
.orange-bg { background: #ffedd5; color: #ea580c; }
.teal-bg { background: #ccfbf1; color: #0d9488; }
.sf-text h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}
.sf-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}
.showcase-stats {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.s-stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
}
.st-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}
.green-solid { background: #00d18b; }
.blue-solid { background: #3b82f6; }
.purple-solid { background: #8b5cf6; }
.orange-solid { background: #f97316; }
.teal-solid { background: #14b8a6; }
.st-text { display: flex; flex-direction: column; }
.st-label { font-size: 0.8rem; color: var(--text-gray); font-weight: 600; text-transform: uppercase; }
.st-val { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.st-sub { font-size: 0.75rem; color: var(--text-gray); }

@media (max-width: 1200px) {
    .showcase-header { flex-direction: column; gap: 30px; text-align: center; }
    .showcase-desc { border-left: none; border-top: 1px solid #cbd5e1; padding: 20px 0 0; }
    .showcase-main { flex-direction: column; }
    .showcase-stats { flex-wrap: wrap; }
    .s-stat-card { min-width: 200px; }
}

@media (max-width: 992px) {
    .product-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .product-hero-text h1 {
        font-size: 2.8rem;
    }
    .specs-grid {
        flex-direction: column;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float i {
    font-size: 24px;
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    background-color: #1ebe57;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.client-logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
