/* ===================================
   TORUS MOTION - Modern Professional Design
   Inspired by Dana TM4 Design Patterns
   =================================== */

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

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.preloader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.preloader-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--bonfire-red), var(--embers));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(218, 26, 50, 0.5);
}

.preloader-text {
    color: var(--magnolia-white);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
}

body.loading {
    overflow: hidden;
}

/* End Preloader Styles */

:root {
    /* Brand Colors - From Color Palette Template */
    --black-swarm: #000000;      /* RGB: 0, 0, 0 - Primary dark background */
    --bonfire-red: #da1a32;      /* RGB: 218, 26, 50 - Primary brand color */
    --magnolia-white: #FFFFFF;   /* RGB: 255, 255, 255 - White text/backgrounds */
    --embers: #a00c30;           /* RGB: 160, 12, 48 - Darker red accent */
    
    /* Extended Colors for UI Balance */
    --dark-red: #8B0A1F;
    --light-red: #FF3D56;
    --gray-bg: #F5F7FA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-600: #525252;
    --gray-800: #262626;
    --text-dark: #171717;
    --text-light: #525252;
    --white: #FFFFFF;  /* Deprecated: Use --magnolia-white instead */
    --success: #10B981;
    --border-radius: 8px;
    --box-shadow: 0 4px 16px rgba(218, 26, 50, 0.15);
    --box-shadow-lg: 0 8px 32px rgba(218, 26, 50, 0.25);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--magnolia-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black-swarm);
    box-shadow: 0 2px 12px rgba(218, 26, 50, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--bonfire-red);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 12px;
    padding-right: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
    margin: 0;
    margin-left: -6px;
    filter: brightness(0) invert(1);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--magnolia-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bonfire-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bonfire-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--magnolia-white);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-main {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    margin-top: 96px;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--magnolia-white);
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

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

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--magnolia-white);
    color: var(--bonfire-red);
}

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--magnolia-white);
    border-color: var(--magnolia-white);
}

.btn-secondary:hover {
    background: var(--magnolia-white);
    color: var(--bonfire-red);
}

.btn-outline {
    background: transparent;
    color: var(--bonfire-red);
    border-color: var(--bonfire-red);
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--bonfire-red);
    color: var(--magnolia-white);
}

.btn-primary-large {
    background: var(--bonfire-red);
    color: var(--magnolia-white);
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: var(--embers);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--black-swarm);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(218, 26, 50, 0.4);
    border-color: var(--bonfire-red);
    background: rgba(0, 0, 0, 0.95);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--magnolia-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* White text for sections with red gradient backgrounds */
.stats-section .section-header h2,
.about-section .section-header h2,
.applications-section .section-header h2,
.video-section .section-header h2,
.products-overview .section-header h2 {
    color: var(--magnolia-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.stats-section .section-header p,
.about-section .section-header p,
.applications-section .section-header p,
.video-section .section-header p,
.products-overview .section-header p {
    color: rgba(255, 255, 255, 0.95);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--embers) 0%, var(--bonfire-red) 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: var(--black-swarm);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(218, 26, 50, 0.5);
    border-color: var(--bonfire-red);
    background: rgba(0, 0, 0, 0.95);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bonfire-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: var(--magnolia-white);
}

.about-card h3 {
    color: var(--magnolia-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--bonfire-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* Products Overview */
.products-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.products-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.products-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--black-swarm);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.product-card:hover {
    border-color: var(--bonfire-red);
    box-shadow: 0 8px 24px rgba(218, 26, 50, 0.4);
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.95);
}

.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image-placeholder i {
    font-size: 4rem;
    color: var(--magnolia-white);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--magnolia-white);
    margin-bottom: 1rem;
}

.product-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.product-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-specs li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.product-specs strong {
    color: var(--magnolia-white);
}

/* Applications Section */
.applications-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.applications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.applications-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.application-item {
    background: var(--black-swarm);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(218, 26, 50, 0.4);
    border-color: var(--bonfire-red);
    background: rgba(0, 0, 0, 0.95);
}

.application-item i {
    font-size: 3rem;
    color: var(--magnolia-white);
    margin-bottom: 1rem;
}

.application-item h4 {
    color: var(--magnolia-white);
    margin-bottom: 0.5rem;
}

.application-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Video Section */
/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.partners-section .section-header {
    position: relative;
    z-index: 1;
}

.partners-section .section-header h2,
.partners-section .section-header p {
    color: var(--magnolia-white);
}

.partners-section .section-header h2 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.partners-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
}

.partners-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
    justify-items: center;
}

.partners-grid-additional {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3.5rem;
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 3px solid rgba(255, 255, 255, 0.25);
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: var(--magnolia-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(218, 26, 50, 0.5);
    border-color: var(--bonfire-red);
}

.partner-logo img {
    max-width: 100%;
    max-height: 240px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* Video Section - Keep for other pages */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.video-grid-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.video-card-main {
    background: var(--black-swarm);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-card-main:hover {
    box-shadow: 0 8px 24px rgba(218, 26, 50, 0.4);
    border-color: var(--bonfire-red);
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.95);
}

.video-card-main video {
    width: 100%;
    height: auto;
    display: block;
}

.video-card-main h3 {
    padding: 1.5rem;
    font-size: 1.1rem;
    color: var(--magnolia-white);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--magnolia-white);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header with Video Background */
.page-header-main {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 73px;
    background: var(--dark-blue);
}

.page-header-main .hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-header-main .hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.35;
}

.page-header-main .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 13, 15, 0.85) 0%, 
        rgba(110, 30, 42, 0.15) 50%, 
        rgba(13, 13, 15, 0.9) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.page-header-main h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--magnolia-white);
    margin: 0;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Motors Page Styles */
.motors-intro,
.solutions-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.motors-intro::before,
.solutions-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--magnolia-white);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.intro-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.benefit-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--black-swarm);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.benefit-inline i {
    color: var(--magnolia-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-inline span {
    color: var(--magnolia-white);
    font-weight: 500;
}

/* Motor Series Styles */
.motor-series-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.motor-series-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.motor-series-card {
    background: var(--black-swarm);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

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

.series-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bonfire-red);
    color: var(--magnolia-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.series-header h3 {
    font-size: 2rem;
    color: var(--magnolia-white);
    margin-bottom: 0.5rem;
}

.series-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.series-variants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.variant-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--border-radius);
    padding: 2rem;
    border-left: 4px solid var(--bonfire-red);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--bonfire-red);
}

.variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.variant-header h4 {
    font-size: 1.3rem;
    color: var(--magnolia-white);
    margin: 0;
}

.cooling-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Motor Technical Drawings */
.motor-technical-drawing {
    margin: 1.5rem 0 2rem;
    background: var(--magnolia-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 2px solid var(--gray-200);
}

.motor-technical-drawing img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.drawing-caption {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    font-style: italic;
}

.cooling-badge.air {
    background: #E3F2FD;
    color: #1976D2;
}

.cooling-badge.liquid {
    background: #E8F5E9;
    color: #388E3C;
}

.variant-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-300);
}

.spec-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.spec-value {
    color: var(--magnolia-white);
    font-weight: 600;
}

.variant-applications h5 {
    color: var(--magnolia-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.variant-applications ul {
    list-style: none;
}

.variant-applications li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.variant-applications li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--magnolia-white);
    font-weight: bold;
}

/* Specifications Table */
.specs-table-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.specs-table-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black-swarm);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.specs-table thead {
    background: var(--bonfire-red);
}

.specs-table th {
    padding: 1rem;
    text-align: left;
    color: var(--magnolia-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.specs-table tbody tr:hover {
    background: rgba(218, 26, 50, 0.15);
}

/* Features Highlight Section */
.features-highlight-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.features-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-highlight-card {
    background: var(--black-swarm);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(218, 26, 50, 0.4);
    border-color: var(--bonfire-red);
}

.feature-highlight-card i {
    font-size: 3rem;
    color: var(--magnolia-white);
    margin-bottom: 1rem;
}

.feature-highlight-card h3 {
    font-size: 1.3rem;
    color: var(--magnolia-white);
    margin-bottom: 1rem;
}

.feature-highlight-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Solutions Video Showcase */
.solutions-video-showcase {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.solutions-video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.showcase-video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-container-showcase {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2.5rem;
}

.showcase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-description h2 {
    font-size: 2.2rem;
    color: var(--magnolia-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.showcase-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
}

/* Solutions Page Styles */
.solutions-section-main {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.solutions-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.solution-block {
    background: var(--black-swarm);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

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

.solution-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bonfire-red);
    color: var(--magnolia-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.solution-block-header h2 {
    font-size: 2.2rem;
    color: var(--magnolia-white);
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.solution-main-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.package-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-list i {
    color: var(--success);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.advantages-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.advantage-item {
    padding: 1.5rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--bonfire-red);
}

.advantage-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.comparison-table-compact {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
}

.comparison-table-compact thead {
    background: var(--gray-bg);
}

.comparison-table-compact th {
    padding: 1rem;
    text-align: left;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--gray-300);
}

.comparison-table-compact td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-light);
}

.comparison-table-compact tbody tr:last-child td {
    border-bottom: none;
}

/* Solution Images */
.solution-images {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.solution-images h3 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.image-gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.image-card-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.image-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.image-card-modern img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: block;
}

.image-caption {
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.features-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-modern {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.feature-item-modern i {
    font-size: 2rem;
    color: var(--bonfire-red);
    flex-shrink: 0;
}

.feature-item-modern strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item-modern p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

.benefit-card-modern {
    padding: 1.5rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-card-modern i {
    font-size: 2rem;
    color: var(--bonfire-red);
    flex-shrink: 0;
}

.benefit-card-modern h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-card-modern p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Golf Solutions */
.golf-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.golf-solution-card {
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.golf-card-header {
    background: var(--bonfire-red);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.golf-card-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.golf-badge {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.golf-badge.premium {
    background: var(--success);
}

.golf-card-body {
    padding: 2rem;
}

.golf-card-body p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.golf-card-body h4 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.golf-card-body ul {
    list-style: none;
}

.golf-card-body li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.golf-card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* AGV Features */
/* Solution Video Section */
.solution-video-section {
    margin: 3rem 0;
}

.video-container-modern {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.solution-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-caption-modern {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--gray-bg);
    margin: 0;
}

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

.agv-feature-card {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.agv-feature-card i {
    font-size: 2.5rem;
    color: var(--bonfire-red);
    margin-bottom: 1rem;
}

.agv-feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.agv-recommended {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.agv-recommended h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.config-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--bonfire-red);
}

.config-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.config-item p {
    color: var(--text-light);
    margin: 0;
}

/* Industrial Solutions */
.industrial-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industrial-solution-card {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--bonfire-red);
}

.industrial-solution-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.industrial-specs {
    margin-bottom: 1.5rem;
}

.industrial-specs p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.industrial-solution-card h4 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.industrial-solution-card ul {
    list-style: none;
}

.industrial-solution-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.industrial-solution-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--bonfire-red);
    font-weight: bold;
}

.industrial-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industrial-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.industrial-benefit i {
    font-size: 2rem;
    color: var(--bonfire-red);
    flex-shrink: 0;
}

.industrial-benefit span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--black-swarm);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--bonfire-red);
}

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

.footer-section h3 {
    color: var(--magnolia-white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section h4 {
    color: var(--magnolia-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bonfire-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bonfire-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .partners-grid-additional {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .page-header-main h1 {
        font-size: 2.8rem;
    }

    .series-variants,
    .solution-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: var(--black-swarm);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: var(--box-shadow-lg);
        padding: 2rem;
        align-items: flex-start;
        gap: 1rem;
        border-top: 2px solid var(--bonfire-red);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-link.active::after {
        bottom: -4px;
    }

    .hero-title {
        font-size: 2.2rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .page-header-main h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }

    .products-grid,
    .video-grid-main,
    .image-gallery-modern {
        grid-template-columns: 1fr;
    }

    .video-container-modern {
        border-radius: 8px;
    }

    .video-caption-modern {
        padding: 1rem;
        font-size: 1rem;
    }

    .video-container-showcase {
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .showcase-description {
        padding: 0 1rem;
    }

    .showcase-description h2 {
        font-size: 1.8rem;
    }

    .showcase-description p {
        font-size: 1rem;
    }

    .about-grid,
    .applications-grid,
    .features-highlight-grid,
    .agv-features-grid,
    .golf-solutions-grid,
    .industrial-solutions-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .partners-grid-additional {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .partner-logo {
        padding: 2.5rem;
        min-height: 170px;
    }

    .partner-logo img {
        max-height: 180px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header-main h1 {
        font-size: 2.2rem;
    }

    .motor-series-card,
    .solution-block {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h2 {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .showcase-description h2 {
        font-size: 1.5rem;
    }

    .showcase-description p {
        font-size: 0.95rem;
    }

    .video-container-showcase {
        border-radius: 6px;
    }

    .hero-title {
        font-size: 1.8rem;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-top: 1rem !important;
        line-height: 1.5;
    }

    .hero-main {
        min-height: 600px;
    }

    .intro-benefits {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partners-grid-additional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

    .partner-logo {
        padding: 2rem;
        min-height: 140px;
    }

    .partner-logo img {
        max-height: 150px;
    }
}

/* ===================================
   CASE STUDIES SECTION
   =================================== */

.case-studies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, var(--embers) 50%, var(--bonfire-red) 100%);
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.case-studies-section .section-header {
    position: relative;
    z-index: 1;
}

.case-studies-section .section-header h2,
.case-studies-section .section-header p {
    color: var(--magnolia-white);
}

.case-studies-section .section-header h2 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.case-studies-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: var(--black-swarm);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(218, 26, 50, 0.5);
    border-color: var(--bonfire-red);
}

.case-study-badge {
    display: inline-block;
    background: var(--bonfire-red);
    color: var(--magnolia-white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.case-study-title {
    font-size: 2rem;
    color: var(--magnolia-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.case-study-challenge,
.case-study-result {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.case-study-challenge strong,
.case-study-result strong {
    color: var(--magnolia-white);
    font-weight: 600;
}

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

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

.stat-value-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bonfire-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-case {
    font-size: 0.9rem;
    color: var(--magnolia-white);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-comparison {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.case-study-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 26, 50, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(218, 26, 50, 0.3);
}

.highlight-item i {
    color: var(--bonfire-red);
    font-size: 1rem;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.case-study-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-location,
.case-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.case-location i {
    color: var(--bonfire-red);
}

.case-partner {
    font-style: italic;
}

/* ===================================
   INVESTORS SECTION
   =================================== */

.investors-section {
    padding: 100px 0;
    background: var(--magnolia-white);
    position: relative;
}

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

.investors-placeholder {
    background: var(--black-swarm);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.investors-placeholder i {
    font-size: 4rem;
    color: var(--bonfire-red);
    margin-bottom: 1.5rem;
}

.investors-placeholder h3 {
    font-size: 2rem;
    color: var(--magnolia-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.investors-placeholder p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Case Studies Responsive */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-value-large {
        font-size: 2rem;
    }
    
    .case-study-title {
        font-size: 1.5rem;
    }
    
    .case-study-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .investors-placeholder {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .case-study-card {
        padding: 2rem 1.5rem;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Case Studies Page Styles */
.case-study-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(218, 26, 50, 0.3);
    padding-bottom: 1.5rem;
}

.case-study-header h3 {
    font-size: 1.8rem;
    color: var(--magnolia-white);
    margin-top: 1rem;
    font-weight: 700;
}

.case-study-content {
    margin-top: 2rem;
}

.case-study-section {
    margin-bottom: 2rem;
}

.case-study-section h4 {
    color: var(--magnolia-white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.case-study-section h4 i {
    color: var(--bonfire-red);
    font-size: 1.3rem;
}

.case-study-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
}

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

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

.stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bonfire-red);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--magnolia-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-item .stat-detail {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.case-study-highlights {
    margin: 2rem 0;
}

.case-study-highlights h4 {
    color: var(--magnolia-white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(218, 26, 50, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(218, 26, 50, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(218, 26, 50, 0.25);
    border-color: var(--bonfire-red);
    transform: translateY(-2px);
}

.highlight-item i {
    color: var(--bonfire-red);
    font-size: 1.3rem;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.case-study-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-item i {
    color: var(--bonfire-red);
    font-size: 1.1rem;
}

.footer-item strong {
    color: var(--magnolia-white);
    font-weight: 600;
}

/* Responsive adjustments for case studies page */
@media (max-width: 768px) {
    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-header h3 {
        font-size: 1.5rem;
    }
    
    .case-study-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

