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

:root {
    --primary-color: #ff6600;
    --primary-dark: #cc5200;
    --secondary-color: #ff8533;
    --accent-color: #ff6600;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --bg-light: #1a1a1a;
    --bg-white: rgba(42, 42, 42, 0.6);
    --bg-dark: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark);
}

body.products-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .container {
    padding: 0 20px;
    max-width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}


.navbar.scrolled {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    gap: 1rem;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.search-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.search-bar {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container:hover .search-bar,
.search-container.active .search-bar,
.search-bar:focus-within {
    width: 200px;
    opacity: 1;
}

.search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-bar input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 140, 50, 0.5);
}

/* Horizontal Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b35);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

/* Remove orange line from active state - only show on hover */
.nav-menu > li > a.active::after {
    width: 0;
}

/* Remove orange underline from Products link */
.nav-menu li.has-dropdown > a::after {
    display: none !important;
}

.nav-menu li.has-dropdown > a:hover::after,
.nav-menu li.has-dropdown > a.active::after {
    display: none !important;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Dropdown Menu */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu li.has-dropdown > a::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.nav-menu li.has-dropdown:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Hide desktop dropdown arrow on Products link */
@media (min-width: 769px) {
    .nav-menu li.has-dropdown > a::before {
        display: block;
    }
}

/* Hide desktop dropdown arrow on mobile */
@media (max-width: 768px) {
    .nav-menu li.has-dropdown > a::before {
        display: none !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 260px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    border: 1px solid rgba(255, 140, 50, 0.2);
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 30px rgba(255, 140, 50, 0.05);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 2px 8px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.dropdown-menu a::before {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-color), #ff6b35);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(255, 140, 50, 0.12) 0%, rgba(255, 140, 50, 0.03) 100%);
    padding-left: 28px;
    text-shadow: 0 0 20px rgba(255, 140, 50, 0.4);
}

.dropdown-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu a:hover::after {
    width: 4px;
}

/* Stagger animation for dropdown items */
.dropdown-menu a:nth-child(1) { transition-delay: 0.02s; }
.dropdown-menu a:nth-child(2) { transition-delay: 0.04s; }
.dropdown-menu a:nth-child(3) { transition-delay: 0.06s; }
.dropdown-menu a:nth-child(4) { transition-delay: 0.08s; }
.dropdown-menu a:nth-child(5) { transition-delay: 0.1s; }
.dropdown-menu a:nth-child(6) { transition-delay: 0.12s; }
.dropdown-menu a:nth-child(7) { transition-delay: 0.14s; }
.dropdown-menu a:nth-child(8) { transition-delay: 0.16s; }
.dropdown-menu a:nth-child(9) { transition-delay: 0.18s; }
.dropdown-menu a:nth-child(10) { transition-delay: 0.2s; }

/* Mobile Menu Toggle - Hidden by default */
.menu-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle-btn span {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.menu-toggle-btn:hover span {
    background-color: #fff;
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
    border-color: rgba(255, 255, 255, 0.3);
}

.menu-text {
    display: block;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
    height: 16px;
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle-btn.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-btn.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sidebar Navigation */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Menu */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 140, 50, 0.15);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.nav-overlay.active {
    right: 0;
}

.nav-overlay-content {
    padding: 30px 20px;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
}

.overlay-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-nav-menu > li {
    position: relative;
    margin-bottom: 4px;
}

.overlay-nav-menu > li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 140, 50, 0.3) 0%, transparent 100%);
}

.overlay-nav-menu > li:last-child::after {
    display: none;
}

.overlay-nav-menu > li > a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.overlay-nav-menu > li > a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.overlay-nav-menu > li > a:hover {
    color: #fff;
    padding-left: 8px;
}

.overlay-nav-menu > li > a:hover::before {
    height: 20px;
}

/* Products Dropdown */
.overlay-nav-menu li.has-products-dropdown {
    position: relative;
}

.overlay-products-dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.overlay-nav-menu li.has-products-dropdown:hover .overlay-products-dropdown {
    max-height: 600px;
    opacity: 1;
}

.overlay-products-dropdown h3 {
    display: none;
}

.overlay-categories-list {
    list-style: none;
    padding: 5px 0 12px 0;
    margin: 0;
    border-left: 2px solid rgba(255, 140, 50, 0.2);
    margin-left: 4px;
}

.overlay-categories-list li {
    margin: 0;
}

.overlay-categories-list a {
    display: block;
    padding: 8px 0 8px 15px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.overlay-categories-list a::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.25s ease;
}

.overlay-categories-list a:hover {
    color: #fff;
    padding-left: 20px;
}

.overlay-categories-list a:hover::before {
    height: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #808080;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar:hover .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #808080;
}

/* Dropdown Menu - Nike Style Mega Menu */
.nav-menu li.has-dropdown {
    position: static;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    list-style: none;
    padding: 2rem 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
    border: none;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: #ffffff;
    text-decoration: underline;
    background: transparent;
    padding-left: 0;
    transform: none;
}

.nav-menu a.active::after {
    width: 0;
}

.btn-resources {
    background: rgba(255, 102, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.2);
}

.btn-resources:hover {
    background: rgba(255, 102, 0, 0.3);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.btn-resources::after {
    display: none;
}

.btn-login {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.2);
}

.btn-login::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: white;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 2rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 600px;
    height: 50%;
    max-height: 600px;
    background-image: url('DCCA Logo .jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.9;
    transition: transform 0.3s ease;
    background-color: transparent;
    mix-blend-mode: screen;
}

/* Realistic flame overlay covering the background */
.hero-background::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 200, 0, 0.3) 0%,
            rgba(255, 150, 0, 0.25) 15%,
            rgba(255, 100, 0, 0.2) 30%,
            rgba(255, 68, 0, 0.15) 45%,
            transparent 60%
        ),
        radial-gradient(ellipse at top left, rgba(255, 180, 0, 0.4) 0%, rgba(255, 120, 0, 0.25) 30%, transparent 60%);
    animation: flameMove1 4s ease-in-out infinite;
    z-index: 0;
    filter: blur(20px);
    mix-blend-mode: screen;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -40%;
    width: 180%;
    height: 180%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 190, 0, 0.3) 0%,
            rgba(255, 140, 0, 0.25) 18%,
            rgba(255, 90, 0, 0.2) 35%,
            rgba(255, 60, 0, 0.15) 50%,
            transparent 65%
        ),
        radial-gradient(ellipse at bottom right, rgba(255, 170, 0, 0.4) 0%, rgba(255, 110, 0, 0.25) 30%, transparent 60%);
    animation: flameMove2 5s ease-in-out infinite;
    z-index: 0;
    filter: blur(20px);
    mix-blend-mode: screen;
}

/* Realistic Flame Elements */
.flame {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(15px);
    transition: transform 0.1s ease-out, opacity 0.2s ease-out, filter 0.2s ease-out;
    clip-path: polygon(30% 100%, 50% 0%, 70% 100%);
    mix-blend-mode: screen;
}

.flame-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    animation: particleFloat 1s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        transform: scale(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(-50px);
        opacity: 0;
    }
}

.flame-1 {
    width: 300px;
    height: 600px;
    background: linear-gradient(to top, 
        rgba(255, 200, 0, 0.9) 0%,
        rgba(255, 150, 0, 0.8) 20%,
        rgba(255, 100, 0, 0.7) 40%,
        rgba(255, 68, 0, 0.6) 60%,
        rgba(200, 50, 0, 0.4) 80%,
        transparent 100%
    );
    top: -20%;
    left: 5%;
    animation: realisticFlame1 2.5s ease-in-out infinite;
    clip-path: polygon(40% 100%, 50% 20%, 45% 0%, 55% 0%, 50% 20%, 60% 100%);
}

.flame-2 {
    width: 280px;
    height: 550px;
    background: linear-gradient(to top, 
        rgba(255, 180, 0, 0.85) 0%,
        rgba(255, 130, 0, 0.75) 25%,
        rgba(255, 80, 0, 0.65) 45%,
        rgba(255, 50, 0, 0.55) 65%,
        rgba(180, 40, 0, 0.35) 85%,
        transparent 100%
    );
    top: 45%;
    left: -8%;
    animation: realisticFlame2 3s ease-in-out infinite;
    clip-path: polygon(35% 100%, 48% 25%, 42% 0%, 58% 0%, 52% 25%, 65% 100%);
}

.flame-3 {
    width: 320px;
    height: 580px;
    background: linear-gradient(to top, 
        rgba(255, 190, 0, 0.9) 0%,
        rgba(255, 140, 0, 0.8) 22%,
        rgba(255, 90, 0, 0.7) 42%,
        rgba(255, 60, 0, 0.6) 62%,
        rgba(190, 45, 0, 0.4) 82%,
        transparent 100%
    );
    top: -15%;
    right: 8%;
    animation: realisticFlame3 2.8s ease-in-out infinite;
    clip-path: polygon(38% 100%, 49% 22%, 44% 0%, 56% 0%, 51% 22%, 62% 100%);
}

.flame-4 {
    width: 350px;
    height: 600px;
    background: linear-gradient(to top, 
        rgba(255, 170, 0, 0.88) 0%,
        rgba(255, 120, 0, 0.78) 23%,
        rgba(255, 70, 0, 0.68) 43%,
        rgba(255, 55, 0, 0.58) 63%,
        rgba(185, 42, 0, 0.38) 83%,
        transparent 100%
    );
    bottom: -20%;
    right: 3%;
    animation: realisticFlame4 3.2s ease-in-out infinite;
    clip-path: polygon(36% 100%, 47% 24%, 43% 0%, 57% 0%, 53% 24%, 64% 100%);
}

@keyframes flameMove1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes flameMove2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes realisticFlame1 {
    0%, 100% {
        transform: translate(0, 0) scaleY(1) scaleX(1);
        opacity: 0.85;
        filter: blur(15px) brightness(1);
    }
    10% {
        transform: translate(8px, -5px) scaleY(1.05) scaleX(0.95);
        opacity: 0.9;
        filter: blur(18px) brightness(1.1);
    }
    20% {
        transform: translate(-6px, -8px) scaleY(0.98) scaleX(1.03);
        opacity: 0.8;
        filter: blur(16px) brightness(0.95);
    }
    30% {
        transform: translate(12px, -12px) scaleY(1.08) scaleX(0.97);
        opacity: 0.92;
        filter: blur(19px) brightness(1.15);
    }
    40% {
        transform: translate(-4px, -3px) scaleY(0.95) scaleX(1.02);
        opacity: 0.82;
        filter: blur(14px) brightness(0.9);
    }
    50% {
        transform: translate(10px, -10px) scaleY(1.06) scaleX(0.99);
        opacity: 0.88;
        filter: blur(17px) brightness(1.05);
    }
    60% {
        transform: translate(-8px, -6px) scaleY(1.02) scaleX(1.01);
        opacity: 0.86;
        filter: blur(15px) brightness(1);
    }
    70% {
        transform: translate(6px, -9px) scaleY(1.04) scaleX(0.98);
        opacity: 0.9;
        filter: blur(18px) brightness(1.08);
    }
    80% {
        transform: translate(-10px, -4px) scaleY(0.97) scaleX(1.04);
        opacity: 0.83;
        filter: blur(16px) brightness(0.92);
    }
    90% {
        transform: translate(4px, -7px) scaleY(1.03) scaleX(1);
        opacity: 0.87;
        filter: blur(17px) brightness(1.02);
    }
}

@keyframes realisticFlame2 {
    0%, 100% {
        transform: translate(0, 0) scaleY(1) scaleX(1);
        opacity: 0.8;
        filter: blur(16px) brightness(1);
    }
    15% {
        transform: translate(-10px, -6px) scaleY(1.06) scaleX(0.96);
        opacity: 0.88;
        filter: blur(19px) brightness(1.12);
    }
    30% {
        transform: translate(7px, -9px) scaleY(0.99) scaleX(1.04);
        opacity: 0.78;
        filter: blur(15px) brightness(0.93);
    }
    45% {
        transform: translate(-12px, -4px) scaleY(1.07) scaleX(0.98);
        opacity: 0.9;
        filter: blur(20px) brightness(1.1);
    }
    60% {
        transform: translate(5px, -8px) scaleY(0.96) scaleX(1.02);
        opacity: 0.81;
        filter: blur(17px) brightness(0.95);
    }
    75% {
        transform: translate(-8px, -5px) scaleY(1.05) scaleX(1);
        opacity: 0.86;
        filter: blur(18px) brightness(1.06);
    }
    90% {
        transform: translate(9px, -7px) scaleY(1.01) scaleX(0.99);
        opacity: 0.84;
        filter: blur(16px) brightness(0.98);
    }
}

@keyframes realisticFlame3 {
    0%, 100% {
        transform: translate(0, 0) scaleY(1) scaleX(1);
        opacity: 0.82;
        filter: blur(15px) brightness(1);
    }
    12% {
        transform: translate(9px, -7px) scaleY(1.04) scaleX(0.97);
        opacity: 0.89;
        filter: blur(18px) brightness(1.09);
    }
    25% {
        transform: translate(-7px, -5px) scaleY(0.98) scaleX(1.03);
        opacity: 0.79;
        filter: blur(16px) brightness(0.94);
    }
    38% {
        transform: translate(11px, -11px) scaleY(1.09) scaleX(0.99);
        opacity: 0.91;
        filter: blur(19px) brightness(1.13);
    }
    50% {
        transform: translate(-5px, -3px) scaleY(0.95) scaleX(1.01);
        opacity: 0.8;
        filter: blur(14px) brightness(0.91);
    }
    62% {
        transform: translate(8px, -9px) scaleY(1.06) scaleX(0.98);
        opacity: 0.87;
        filter: blur(17px) brightness(1.04);
    }
    75% {
        transform: translate(-9px, -6px) scaleY(1.02) scaleX(1.02);
        opacity: 0.85;
        filter: blur(16px) brightness(1.01);
    }
    88% {
        transform: translate(6px, -8px) scaleY(1.03) scaleX(1);
        opacity: 0.88;
        filter: blur(18px) brightness(1.07);
    }
}

@keyframes realisticFlame4 {
    0%, 100% {
        transform: translate(0, 0) scaleY(1) scaleX(1);
        opacity: 0.81;
        filter: blur(16px) brightness(1);
    }
    14% {
        transform: translate(-11px, -8px) scaleY(1.05) scaleX(0.96);
        opacity: 0.9;
        filter: blur(19px) brightness(1.11);
    }
    28% {
        transform: translate(8px, -4px) scaleY(0.97) scaleX(1.04);
        opacity: 0.77;
        filter: blur(15px) brightness(0.92);
    }
    42% {
        transform: translate(-9px, -10px) scaleY(1.08) scaleX(0.98);
        opacity: 0.92;
        filter: blur(20px) brightness(1.14);
    }
    56% {
        transform: translate(7px, -6px) scaleY(0.99) scaleX(1.02);
        opacity: 0.83;
        filter: blur(17px) brightness(0.96);
    }
    70% {
        transform: translate(-6px, -7px) scaleY(1.06) scaleX(1);
        opacity: 0.88;
        filter: blur(18px) brightness(1.08);
    }
    84% {
        transform: translate(10px, -5px) scaleY(1.01) scaleX(0.99);
        opacity: 0.85;
        filter: blur(16px) brightness(1.02);
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.5s both;
}

.scroll-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    animation: bounceDown 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.scroll-arrow:hover {
    border-color: rgba(255, 140, 50, 0.4);
    color: var(--primary-color);
    background: rgba(255, 140, 50, 0.08);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

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

/* Spark Particles */
.spark {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.spark-small {
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 140, 0, 1) 0%, rgba(255, 100, 0, 0.9) 50%, rgba(200, 60, 0, 0.7) 80%, transparent 100%);
    box-shadow: 0 0 6px rgba(255, 120, 0, 0.9);
}

.spark-medium {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 120, 0, 1) 0%, rgba(255, 80, 0, 0.9) 50%, rgba(180, 50, 0, 0.7) 80%, transparent 100%);
    box-shadow: 0 0 8px rgba(255, 100, 0, 1);
}

.spark-large {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 100, 0, 1) 0%, rgba(255, 60, 0, 0.95) 50%, rgba(160, 40, 0, 0.8) 80%, transparent 100%);
    box-shadow: 0 0 10px rgba(255, 80, 0, 1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-primary {
    background: rgba(255, 102, 0, 0.2);
    color: white;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 8px 32px 0 rgba(255, 102, 0, 0.2);
}

.btn-primary:hover {
    background: rgba(255, 102, 0, 0.3);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Page Header */
/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-dark);
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-light);
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 600;
}

.page-header {
    background: #0a0a0a;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.page-header .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.6) 0%, 
        rgba(10, 10, 10, 0.3) 50%, 
        rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 80, 0, 0.6) 20%, 
        rgba(255, 140, 50, 0.8) 50%, 
        rgba(255, 80, 0, 0.6) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.5), 0 0 40px rgba(255, 60, 0, 0.3);
    z-index: 3;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 30px rgba(255, 100, 0, 0.5), 0 0 60px rgba(255, 60, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border-color: rgba(255, 102, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 102, 0, 0.05);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card-featured {
    grid-column: span 1;
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.08) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-color: rgba(255, 102, 0, 0.15);
}

.industry-card-featured:hover {
    border-color: rgba(255, 102, 0, 0.3);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.industry-icon svg {
    stroke: #ff6600;
}

.industry-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.industry-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    transition: color 0.2s ease;
}

.industry-card:hover .industry-features li {
    color: rgba(255, 255, 255, 0.7);
}

.industry-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.industry-card:hover .industry-features li::before {
    transform: translateX(2px);
}

/* Capabilities Section */
.capabilities-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.capability-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    border-color: rgba(255, 102, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 102, 0, 0.05);
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card-featured {
    grid-column: span 1;
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.08) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-color: rgba(255, 102, 0, 0.15);
}

.capability-card-featured:hover {
    border-color: rgba(255, 102, 0, 0.3);
}

.capability-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.capability-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff6600;
}

.capability-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.capability-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    transition: color 0.2s ease;
}

.capability-card:hover .capability-list li {
    color: rgba(255, 255, 255, 0.7);
}

.capability-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.capability-card:hover .capability-list li::before {
    transform: translateX(2px);
}

/* Responsive for Industries & Capabilities */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-card-featured {
        grid-column: span 2;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capability-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .industries-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card-featured,
    .capability-card-featured {
        grid-column: span 1;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

.products-title-section {
    background: #0a0a0a;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.products-title-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.products-title-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.6) 0%, 
        rgba(10, 10, 10, 0.3) 50%, 
        rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.products-title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 80, 0, 0.6) 20%, 
        rgba(255, 140, 50, 0.8) 50%, 
        rgba(255, 80, 0, 0.6) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(255, 100, 0, 0.5), 0 0 40px rgba(255, 60, 0, 0.3);
    z-index: 3;
}

.products-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 30px rgba(255, 100, 0, 0.5), 0 0 60px rgba(255, 60, 0, 0.3);
    position: relative;
    z-index: 2;
}

.products-title-section .container {
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 3rem 0;
    scroll-margin-top: 100px;
    background: transparent;
    border: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Corporate Section */
.corporate-section {
    background: linear-gradient(180deg, #080808 0%, #111111 50%, #080808 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 50, 0.2), transparent);
}

.corporate-intro {
    text-align: center;
    margin-bottom: 4.5rem;
}

.corporate-intro .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.corporate-intro .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Corporate Stats */
.corporate-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.corporate-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.corporate-stats .stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Corporate Cards */
.corporate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

.corporate-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.corporate-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 140, 50, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 50, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.corporate-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.corporate-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* Corporate Products Preview */
.corporate-products {
    margin-bottom: 4.5rem;
}

.corporate-products h3 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
    text-align: center;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-preview:hover {
    background: rgba(255, 140, 50, 0.06);
    border-color: rgba(255, 140, 50, 0.15);
}

.preview-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.product-preview:hover .preview-title {
    color: #fff;
}

.preview-arrow {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.product-preview:hover .preview-arrow {
    opacity: 0.7;
    transform: translateX(0);
}

/* Corporate CTA */
.corporate-cta {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: rgba(255, 140, 50, 0.04);
    border: 1px solid rgba(255, 140, 50, 0.1);
    border-radius: 16px;
}

.corporate-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.corporate-cta p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 450px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #ff8c42;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-buttons .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Corporate Section Responsive */
@media (max-width: 1024px) {
    .corporate-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .corporate-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .corporate-section {
        padding: 4rem 0;
    }
    
    .corporate-intro .section-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .corporate-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .corporate-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .corporate-cards {
        grid-template-columns: 1fr;
    }
    
    .products-row {
        grid-template-columns: 1fr;
    }
    
    .corporate-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* About Section */
.about {
    background: transparent;
    padding: 7rem 0 5rem;
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    position: relative;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text .lead {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-text blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.8;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 0 8px 8px 0;
    position: relative;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.about-text blockquote:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.12);
    box-shadow: -5px 0 20px rgba(255, 107, 53, 0.2);
}


.about-text .tagline {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--primary-color);
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 8px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-text .tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-text .tagline:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.about-text .tagline:hover::before {
    left: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Products Preview Section */
.products-preview {
    background: transparent;
}

/* Quick Stats Section */
.quick-stats {
    background: transparent;
    padding: 2rem 0;
    border-bottom: none;
    margin-top: -2rem;
}

/* Products Section */
.products {
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 102, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.product-card.featured {
    background: rgba(255, 102, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 8px 32px 0 rgba(255, 102, 0, 0.3);
}

.product-card.featured h3,
.product-card.featured p {
    color: white;
}

.product-card.featured .product-link {
    color: white;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card:not(.featured) h3 {
    color: var(--primary-color);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.product-link:hover {
    color: var(--primary-dark);
}

/* Industries Section */
.industries {
    background: transparent;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.industry-item:hover {
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    background: transparent;
    padding: 4rem 0;
}

.testimonial-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonial-quote p {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-quote cite {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
    text-align: right;
}

/* Manufacturing Section */
.manufacturing {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #ff6600 100%);
    color: white;
}

.manufacturing-content {
    max-width: 800px;
    margin: 0 auto;
}

.manufacturing h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.manufacturing p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    font-size: 1.125rem;
    margin: 2rem 0;
    padding: 0;
}

.feature-list li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: -10px;
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.feature-list li:hover {
    background: rgba(255, 107, 53, 0.08);
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    padding-left: 2rem;
}

.feature-list li:hover::before {
    opacity: 1;
    transform: translateX(0);
    left: 0.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Resources Section */
.resources {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.resource-card .btn {
    width: 100%;
    text-align: center;
}

/* Contact Info Section */
.contact-info {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: transparent;
    border-radius: 12px;
    border: none;
}

.contact-info-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Contact Section */
.contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.login-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-box {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: #080808;
    color: white;
    padding: 3.5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column:nth-child(2) {
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
}

.footer-column:nth-child(2) .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-column:nth-child(2) .footer-section a {
    font-size: 1rem;
}

.footer-column:nth-child(2) .footer-section ul li {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .footer-column:nth-child(2) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-column:nth-child(3) .footer-section p {
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.footer-section .contact-info {
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    padding-left: 0;
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
}

.footer-section .contact-info li {
    padding: 0;
    background: transparent;
}

.footer-section .contact-info li:last-child {
    margin-bottom: 0;
}

/* Ensure consistent spacing in footer sections */
.footer-section > *:first-child {
    margin-top: 0;
}

.footer-section > *:last-child {
    margin-bottom: 0;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: auto;
    display: block;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: lighten;
    filter: brightness(1.05);
    width: auto;
    height: auto;
    opacity: 1;
    text-align: left;
}

.footer-section .btn-secondary {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

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

.social-links h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.active,
.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #151515;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.modal-login-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dropdown-menu {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 20px;
    }

    .nav-overlay {
        width: 220px;
        right: -220px;
    }
}

@media (max-width: 900px) {
    .dropdown-menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding: 1.25rem 20px;
    }

    .nav-overlay {
        width: 220px;
        right: -220px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }

    .menu-toggle-btn {
        display: flex !important;
        order: 3;
    }

    .search-container {
        order: 1;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 280px;
        max-width: 85vw;
        padding: 5rem 1.5rem 1.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        transition: right 0.3s ease;
        gap: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 16px 0;
        font-size: 13px;
        width: 100%;
        display: block;
        position: relative;
    }
    
    /* Remove arrow/indicator from mobile menu Products */
    .nav-menu li.has-dropdown > a::after {
        display: none !important;
        content: none !important;
    }
    
    .nav-menu li.has-dropdown.active > a::after {
        display: none !important;
        content: none !important;
    }
    
    /* Hide search on mobile when menu is open */
    .nav-menu.active ~ .search-container {
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu li.has-dropdown .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 0;
        box-shadow: none;
        border: none;
        background: transparent;
        min-width: auto;
        max-width: 100%;
        padding: 0;
        border-radius: 0;
        display: block;
        transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }
    
    .nav-menu li.has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 0.5rem 0 0.5rem 1rem;
    }

    .dropdown-menu a {
        padding: 10px 0;
        font-size: 11px;
        margin: 0;
        border-radius: 0;
    }
    
    .dropdown-menu a::before,
    .dropdown-menu a::after {
        display: none;
    }
    
    /* Ensure navbar doesn't cover content on mobile */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    /* Fix product image container on mobile - remove sticky positioning */
    .product-image-container {
        position: static !important;
        top: auto !important;
    }
    
    /* Add padding to body to account for fixed navbar - mobile only */
    body {
        padding-top: 70px;
    }
    
    body.products-page {
        padding-top: 70px;
    }
    
    /* Products page title section adjustment */
    .products-title-section {
        margin-top: -70px;
        padding-top: 70px;
    }

    /* Hero section full screen on mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding-top: 0;
        padding-bottom: 0;
        margin-top: -70px; /* Offset for fixed navbar */
        position: relative;
    }

    .hero-video {
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-overlay {
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Mobile menu overlay */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        pointer-events: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .modal-login-options {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Product Category Section Styles */
.product-category-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.product-category-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 3rem;
    justify-content: center;
}

.category-link {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-link:hover {
    background: rgba(255, 140, 50, 0.08);
    color: #fff;
    border-color: rgba(255, 140, 50, 0.2);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-title:first-of-type {
    margin-top: 0;
}

.subcategory-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.subcategory-title:first-of-type {
    margin-top: 1rem;
}

.product-count {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 0.5rem;
}

/* Products Grid for Product Page */
.product-category-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
}

.product-category-section .product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.product-category-section .product-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 140, 50, 0.15);
    transform: translateY(-2px);
}

.product-category-section .product-code {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.product-category-section .product-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

.product-category-section .product-status {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.product-category-section .product-status:not(.low-stock) {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.product-category-section .product-status.low-stock {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.product-category-section .product-card.out-of-stock {
    opacity: 0.7;
}

.product-category-section .contact-note {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-style: italic;
}

/* Product Thumbnails */
.product-thumbnail {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

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

.product-detail-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #fff;
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-4px);
}

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

@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Remove sticky positioning on mobile to prevent overlap */
    .product-image-container {
        position: static;
        top: auto;
    }
}

.product-image-container {
    position: sticky;
    top: 100px;
}

.product-image-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.product-image-placeholder svg {
    opacity: 0.5;
}

.product-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-image-loaded {
    background: #f5f5f5 !important;
    border: none !important;
    border-radius: 16px;
    padding: 1rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-loaded img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 8px;
}

.product-info {
    padding: 1rem 0;
}

.product-sku {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-family: 'Inter', monospace;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.product-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.spec-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.in-stock {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-badge.low-stock {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.status-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal .modal-content {
    position: relative;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.modal .modal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-subtitle strong {
    color: var(--primary-color);
}

/* Drawing Request Form */
.drawing-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

/* Product Select Dropdown Styles */
.product-select-wrapper {
    position: relative;
    width: 100%;
}

#productSearch {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#productSearch:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 140, 50, 0.2);
}

.product-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.product-list {
    padding: 0.5rem 0;
}

.product-category-group {
    padding: 0.5rem 0;
}

.product-category-header {
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 140, 50, 0.1);
    border-left: 3px solid var(--primary-color);
    margin: 0.5rem 0;
}

.product-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-item:hover {
    background: rgba(255, 140, 50, 0.1);
}

.product-item:last-child {
    border-bottom: none;
}

.product-item-name {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.product-item-sku {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.product-item-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.selected-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 140, 50, 0.1);
    border: 1px solid rgba(255, 140, 50, 0.3);
    border-radius: 8px;
}

.selected-product span {
    color: #fff;
    font-size: 0.9rem;
}

.clear-product-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.clear-product-btn:hover {
    color: #fff;
}

/* Scrollbar styling for dropdown */
.product-dropdown::-webkit-scrollbar {
    width: 8px;
}

.product-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.product-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 50, 0.5);
    border-radius: 4px;
}

.product-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 50, 0.7);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    gap: 1rem;
}

.form-success svg {
    color: #22c55e;
}

.form-success h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.form-success p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.form-success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    margin-top: 1.5rem;
    animation: slideIn 0.3s ease-out;
}

.form-success-message svg {
    color: #22c55e;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.form-success-message p {
    margin: 0;
    color: #22c55e;
    font-weight: 500;
    font-size: 0.95rem;
}

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

