/* ==========================================
   NUVYA CORPORATION - MAIN STYLESHEET
   ========================================== */

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

:root {
    /* Primary Colors - Blue from Logo */
    --primary-color: #2E4FB8;
    --primary-dark: #1E3A8A;
    --primary-light: #3B82F6;
    
    /* Secondary Colors - Orange from Logo */
    --secondary-color: #FF6B35;
    --secondary-dark: #E55A2B;
    --secondary-light: #FF8C69;
    
    /* Accent Colors */
    --accent-color: #F59E0B;
    --accent-dark: #D97706;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #e2e8f0;
    --dark-gray: #334155;
    --black: #0f172a;
    --text-muted: #6B7280;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.welcome-text {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    font-size: 0.9rem;
}

.top-bar .contact-info span {
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar .contact-info i {
    color: var(--primary-color);
}

/* Main Navigation */
.main-nav {
    background-color: var(--white);
    padding: var(--spacing-sm) 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-circular {
    height: 50px;
    width: auto;
}

.logo-text {
    height: 55px;
    width: auto;
}

.brand-info h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.brand-info p {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.brand-info .brand-tagline {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin: 2px 0 0 0;
    font-style: normal;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    padding: 12px 20px;
    display: block;
    border-radius: 0;
}

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

.nav-menu a.active {
    background-color: #5a9ca8;
    color: var(--white);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #2563eb 50%, #3b82f6 75%, #60a5fa 100%);
    color: var(--white);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="circuit" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="none"/><path d="M20 20h60v60h-60z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="50" cy="50" r="3" fill="rgba(255,107,53,0.3)"/><path d="M0 50h20m80 0h20M50 0v20m0 80v20" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circuit)"/><polygon points="0,0 300,0 250,150 0,100" fill="rgba(255,107,53,0.05)"/><polygon points="900,300 1200,200 1200,500 800,450" fill="rgba(255,255,255,0.03)"/><circle cx="200" cy="150" r="40" fill="none" stroke="rgba(255,107,53,0.15)" stroke-width="2"/><circle cx="1000" cy="600" r="60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="600" y="100" width="80" height="80" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1" transform="rotate(45 640 140)"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,107,53,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255,107,53,0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero::before {
    animation: pulse 8s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.product-content {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.product-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.product-features li {
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
}

.product-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

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

.about-intro {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.about-intro p {
    text-align: justify;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.7;
}

.about-intro h3 {
    color: var(--black);
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
    font-family: var(--font-family);
}

.about-lead {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    text-align: justify;
    font-family: var(--font-family);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.about-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.card-header i {
    font-size: 2rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    font-family: var(--font-family);
}

.about-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    text-align: justify;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.mission-card {
    border-left: 4px solid var(--primary-color);
}

.why-us-card {
    border-left: 4px solid var(--secondary-color);
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    flex-direction: column;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-family: var(--font-family);
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.stat-item {
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

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

/* Industries Section */
.industries {
    background-color: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
}

.industry-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.industry-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background-color: var(--light-gray);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: var(--spacing-xs);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}



/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.developer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-secondary {
    color: var(--secondary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-light {
    background-color: var(--light-gray);
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* ==========================================
   CATEGORY PAGES STYLES
   ========================================== */

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 120px 0 var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 950,100 0,100"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.breadcrumb-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    color: var(--white);
    opacity: 0.6;
}

.breadcrumb-nav .current {
    color: var(--white);
    font-weight: 600;
}

/* Category Overview */
.category-overview {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

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

.category-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.category-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Products Listing */
.products-listing {
    padding: var(--spacing-xxl) 0;
}

.products-listing .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.products-listing .product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray);
}

.products-listing .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.products-listing .product-image {
    height: 200px;
    overflow: hidden;
}

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

.products-listing .product-card:hover .product-image img {
    transform: scale(1.05);
}

.products-listing .product-content {
    padding: var(--spacing-lg);
}

.products-listing .product-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
}

.products-listing .product-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.products-listing .product-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.products-listing .product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.products-listing .product-features li i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 950,100 0,100"/></svg>');
    background-size: cover;
    background-position: bottom;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-content .btn {
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta-content .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Safety Standards Section */
.safety-standards {
    background-color: var(--light-gray);
    padding: var(--spacing-xxl) 0;
}

.standards-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.standards-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.standards-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.standard-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.standard-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.standard-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.partners .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.partners .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.partners .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200% + 40px);
}

.partner-logo {
    flex: 0 0 200px;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.partner-type {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: center;
}

.partner-logo[data-type="authorized"] .partner-type {
    color: #28a745;
}

.partner-logo[data-type="associate"] .partner-type {
    color: #007bff;
}

.partner-logo[data-type="dealer"] .partner-type {
    color: #6f42c1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive for Partners */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners .section-title {
        font-size: 2rem;
    }
    
    .partner-logo {
        flex: 0 0 160px;
        margin: 0 15px;
        padding: 15px;
        min-height: 100px;
    }
    
    .partner-logo img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .partners-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        flex: 0 0 140px;
        margin: 0 10px;
    }
    
    .partner-logo img {
        max-width: 100px;
        max-height: 40px;
    }
} 