﻿/* إعادة تعيين الأنماط الأساسية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* إزالة الخط السفلي من جميع الروابط */
a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    text-decoration: none !important;
}

a:visited {
    text-decoration: none !important;
}

a:active {
    text-decoration: none !important;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Auto-responsive grid system */
.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.auto-grid-lg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: inherit;
}

.fox-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .fox-icon {
    transform: rotate(10deg);
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo-text h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
}

.logo-text h1 .orange-f {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text h1 .orange-w {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text p {
    color: #cccccc;
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.nav-links {
    display: none;
    gap: 35px;
    align-items: center;
    position: relative;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-links.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.nav-links a::before {
    display: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff6b35;
    background: none;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(229, 90, 43, 0.15));
    border: 2px solid rgba(255, 107, 53, 0.5);
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle::before {
    content: '☰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 107, 53, 0.8);
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(229, 90, 43, 0.25));
    border-color: rgba(255, 107, 53, 0.7);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle:hover::before {
    color: rgba(255, 107, 53, 1);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.mobile-menu-toggle span:nth-child(1) {
    margin-top: 6px;
}

.mobile-menu-toggle span:nth-child(3) {
    margin-bottom: 6px;
}

.mobile-menu-toggle:hover span {
    background: rgba(255, 107, 53, 0.9);
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ff6b35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
    background: #ff6b35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5);
}


/* Hero Section */
.hero {
    background: #1a1a1a;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.highlight {
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.hero-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d4481a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 18px 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Products Preview Section */
.products-preview {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #2c2c2c 100%);
    padding: 100px 0;
    position: relative;
}

.products-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.product-card {
    background: #2a2a2a;
    border: 2px solid #444444;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.product-card.search-result {
    animation: productSlideIn 0.5s ease-out;
}

@keyframes productSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-image {
    height: 200px;
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #444444;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.product-placeholder {
    font-size: 48px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-tag {
    background: #ff6b35;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin: 15px auto;
    align-self: center;
}

.btn-details {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-details::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;
}

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

.btn-details:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d4481a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Catalog Section */
.catalog-section {
    background: #2a2a2a;
    padding: 100px 0;
    text-align: center;
}

.catalog-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-card {
    background: #1a1a1a;
    border: 2px solid #444444;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.catalog-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.catalog-card p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.catalog-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

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

.feature-label {
    display: block;
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-value {
    display: block;
    font-size: 12px;
    color: #cccccc;
}

.btn-catalog {
    background: #ff6b35;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-catalog:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Download Icon Styles */
.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.download-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.download-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.logo-fox-icon {
    font-size: 40px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.catalog-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.download-icon:hover .logo-fox-icon {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.download-icon:hover .catalog-logo-image {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* About Section */
.about-section {
    background: #1a1a1a;
    padding: 100px 0;
    text-align: center;
}

.about-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Factory Section */
.factory-section {
    background: #2a2a2a;
    padding: 100px 0;
}

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

.factory-image {
    position: relative;
}

.image-placeholder {
    height: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* تأثيرات الصورة */
.image-placeholder img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.factory-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.factory-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon {
    font-size: 24px;
    margin-top: 5px;
}

.service-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.service-content p {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .fox-icon {
    font-size: 24px;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.footer-logo .logo-text p {
    font-size: 12px;
    color: #cccccc;
    margin: 0;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333333;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    font-size: 16px;
    margin-top: 2px;
    color: #ff6b35;
}

.contact-item div p {
    margin: 0 0 2px 0;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.4;
}

.phone-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
}

.phone-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

/* Location Link Styling */
.location-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.location-link::after {
    content: '🗺️';
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.location-link:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Email Link Styling */
.email-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.email-link::after {
    content: '✉️';
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.email-link:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Catalog Logo Styles */
.catalog-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.catalog-logo .logo-fox {
    font-size: 28px;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.3));
}

.catalog-logo-main {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
}

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

.catalog-logo .logo-main {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(255, 107, 53, 0.4);
    margin-bottom: 2px;
}

.catalog-logo .logo-subtitle {
    font-size: 10px;
    color: #cccccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: white;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    white-space: pre-line;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.notification-success {
    border-left: 4px solid #4CAF50;
}

.notification-error {
    border-left: 4px solid #f44336;
}

.notification-info {
    border-left: 4px solid #2196F3;
}

/* Responsive notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 12px 16px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}

/* Products Page Styles */
.products {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #2c2c2c 100%);
    padding: 120px 0 80px;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    color: #cccccc;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 25px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(42, 42, 42, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle:hover {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.2),
        0 0 20px rgba(255, 107, 53, 0.1);
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.section-subtitle:hover::before {
    opacity: 1;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 1px;
    transition: width 0.4s ease;
}

.section-subtitle:hover::after {
    width: 80%;
}

@keyframes subtitleGlow {
    0% {
        box-shadow: 
            0 10px 30px rgba(255, 107, 53, 0.2),
            0 0 20px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(255, 107, 53, 0.3),
            0 0 30px rgba(255, 107, 53, 0.2);
    }
    100% {
        box-shadow: 
            0 10px 30px rgba(255, 107, 53, 0.2),
            0 0 20px rgba(255, 107, 53, 0.1);
    }
}

.section-subtitle:hover {
    animation: subtitleGlow 2s ease-in-out infinite;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.search-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    justify-content: center;
}

.search-description {
    color: #cccccc;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
    line-height: 1.6;
    max-width: 600px;
    position: relative;
    transition: all 0.3s ease;
}


.search-description:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.search-box {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.search-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 53, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #aaaaaa;
    font-weight: 400;
    transition: all 0.3s ease;
}

.search-input:focus::placeholder {
    color: #cccccc;
    transform: translateX(5px);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ff6b35;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.search-input:focus + .search-icon {
    color: #e55a2b;
    transform: translateY(-50%) scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.search-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease;
    z-index: 1;
}

.search-input:focus ~ .search-box::after {
    width: calc(100% - 40px);
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), transparent, rgba(255, 107, 53, 0.1));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.search-input:focus ~ .search-box::before {
    opacity: 1;
}

.search-input:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 12px 45px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@keyframes searchGlow {
    0% {
        box-shadow: 
            0 0 0 0 rgba(255, 107, 53, 0.3),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(255, 107, 53, 0.1),
            0 15px 50px rgba(0, 0, 0, 0.4);
    }
    100% {
        box-shadow: 
            0 0 0 0 rgba(255, 107, 53, 0.3),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }
}

.search-input:focus {
    animation: searchGlow 2s ease-in-out infinite;
}

.search-input:focus:not(:placeholder-shown) {
    animation: none;
}

.search-input:not(:placeholder-shown) {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(26, 26, 26, 0.9);
}

.search-input:not(:placeholder-shown) + .search-icon {
    color: #e55a2b;
    transform: translateY(-50%) scale(1.1);
}

.search-results-count {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-input:focus ~ .search-results-count {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.search-filters {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.filter-select {
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    min-width: 200px;
    font-family: 'Cairo', sans-serif;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.filter-select:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 53, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.filter-select:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 12px 45px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Catalog Page Styles */
.catalog-page {
    background: #1a1a1a;
    padding: 120px 0 80px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
}

.catalog-download {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.download-card {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.download-icon {
    font-size: 64px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.download-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.download-card p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
}

.catalog-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: right;
}

.catalog-features li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.catalog-features li::before {
    content: '✓';
    color: #ff6b35;
    position: absolute;
    right: 0;
    font-weight: bold;
}

.btn-catalog-large {
    background: #ff6b35;
    color: #ffffff;
    padding: 20px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
}

.btn-catalog-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.download-note {
    font-size: 12px;
    color: #999999;
}

.catalog-categories {
    margin-bottom: 80px;
}

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

.category-card {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.category-card p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-count {
    background: #ff6b35;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.technical-specs {
    margin-bottom: 60px;
}

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

.spec-item {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.spec-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 20px;
}

.spec-item ul {
    list-style: none;
    padding: 0;
}

.spec-item li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}

.spec-item li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    right: 0;
}

/* About Page Styles */
.about-page {
    background: #1a1a1a;
    padding: 120px 0 80px;
}

.about-content {
    margin-bottom: 80px;
}

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

.about-section p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.values-section {
    margin-bottom: 80px;
}

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

.value-item {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.certifications-section {
    margin-bottom: 60px;
}

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

.cert-item {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.cert-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.cert-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.cert-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 12px;
    color: #cccccc;
    margin: 0;
}

/* Contact Page Styles */
.contact-page {
    background: #1a1a1a;
    padding: 120px 0 80px;
}

.contact-cta {
    text-align: center;
    margin-bottom: 60px;
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-form {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #444444;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #cccccc;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    background: #ff6b35;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.btn-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.submit-icon {
    font-size: 18px;
}

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

.contact-card {
    background: #2a2a2a;
    border: 2px solid #444444;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.contact-card .contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

.contact-card .whatsapp-link {
    color: #ffffff !important;
    text-decoration: none;
}

.contact-card .whatsapp-link:hover {
    color: #ff6b35 !important;
}

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

.modal-content {
    background: #2a2a2a;
    margin: 2% auto;
    padding: 0;
    border: 2px solid #444444;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #ff6b35;
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px 30px 0;
    text-align: center;
}

.modal-header h2 {
    color: #ff6b35;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 20px 30px 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.modal-image-container {
    text-align: center;
}

.modal-product-image {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #444444, #555555);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #666666;
    margin: 0 auto;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modal-product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.1) 25%, 
        transparent 50%, 
        rgba(255, 107, 53, 0.1) 75%, 
        transparent 100%);
    background-size: 20px 20px;
    animation: woodGrain 3s ease-in-out infinite;
    pointer-events: none;
}

.modal-product-image:hover {
    transform: scale(1.02);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.modal-specs,
.modal-features,
.modal-usage {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #444444;
    margin-bottom: 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modal-specs h3,
.modal-features h3,
.modal-usage h3 {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-specs ul,
.modal-features ul,
.modal-usage ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-specs li,
.modal-features li,
.modal-usage li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
    padding-right: 20px;
    position: relative;
}

.modal-specs li::before,
.modal-features li::before,
.modal-usage li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* إجبار ظهور قسم الاستخدامات */
.modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* إجبار ظهور قسم الاستخدامات في جميع الصفحات */
#productModal .modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
}

/* إجبار ظهور قسم الاستخدامات في صفحة المنتجات */
.products .modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
}

/* إجبار ظهور قسم الاستخدامات في صفحة المنتجات */
.products .modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
    min-height: 100px !important;
    width: 100% !important;
}

/* إجبار ظهور قسم الاستخدامات في جميع الحالات */
.modal .modal-usage,
#productModal .modal-usage,
.modal-content .modal-usage,
.modal-body .modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
}

/* إجبار ظهور قسم الاستخدامات في جميع المنتجات */
.product-card .modal-usage,
.products .modal-usage,
.modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
}

/* إجبار ظهور قسم الاستخدامات في جميع الحالات */
.modal-usage,
#modalUsage,
.modal .modal-usage,
#productModal .modal-usage,
.modal-content .modal-usage,
.modal-body .modal-usage,
.modal-info .modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
    min-height: 100px !important;
    width: 100% !important;
}

/* إجبار ظهور قسم الاستخدامات في صفحة المنتجات */
.products .modal-usage,
.products #modalUsage,
.products .modal .modal-usage,
.products #productModal .modal-usage,
.products .modal-content .modal-usage,
.products .modal-body .modal-usage,
.products .modal-info .modal-usage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    background: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 8px !important;
    border: 1px solid #444444 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 1 !important;
    min-height: 100px !important;
    width: 100% !important;
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.modal-actions .btn-primary {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    min-width: 280px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.modal-actions .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 20px 20px;
    }
    
    .modal-product-image {
        width: 200px;
        height: 250px;
        font-size: 36px;
        border-radius: 12px;
    }
    
    .modal-actions .btn-primary {
        width: 100%;
        min-width: auto;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .modal-header {
        padding: 20px 20px 0;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(229, 90, 43, 0.2)) !important;
        border: 2px solid rgba(255, 107, 53, 0.6) !important;
        box-shadow: 0 5px 18px rgba(255, 107, 53, 0.4) !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        display: flex !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1000 !important;
    }
    
    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid #333333;
        text-align: center;
        font-size: 18px;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.active {
        background: none;
        color: #ff6b35;
    }

    .nav-links a.active::before {
        display: none;
    }

    .nav-links a.active::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: #ff6b35;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }

    .nav-links a.active:hover::after {
        transform: translateY(-50%) scale(1.2);
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    }

    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.4;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 30px;
        margin-top: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .factory-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .factory-image {
        height: 300px;
    }
    
    .factory-stats {
        bottom: 15px;
        right: 15px;
    }
    
    .factory-stats .stat-number {
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 12px;
        padding: 0 8px;
        word-spacing: 1px;
        letter-spacing: 0.5px;
    }
    
    .hero-description {
        font-size: 12px;
        line-height: 1.3;
        padding: 0 8px;
        margin-bottom: 18px;
        word-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .factory-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .search-description {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .search-box {
        max-width: 100%;
        min-width: auto;
        margin: 0 20px;
    }
    
    .search-input {
        padding: 16px 50px 16px 20px;
        font-size: 14px;
    }
    
    .search-icon {
        right: 18px;
        font-size: 18px;
    }
    
    .search-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
        max-width: 100%;
    }
    
    .search-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 300px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 12px 20px;
    }
    
    .section-subtitle:hover {
        transform: translateY(-2px);
    }
    
    .section-title {
        font-size: 40px;
        padding: 20px 30px;
        letter-spacing: 2px;
    }
    
    .section-title:hover {
        transform: translateY(-5px) scale(1.05);
    }
    
    .catalog-download {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .download-card {
        max-width: 100%;
        padding: 40px 30px;
    }
}

/* Section Title Styles */
.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
    padding: 25px 40px;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(42, 42, 42, 0.3);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-title:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.4),
        0 0 40px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.section-title:hover::before {
    left: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b, #ff6b35);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.section-title:hover::after {
    width: 95%;
}

@keyframes titleGlow {
    0% {
        box-shadow: 
            0 20px 60px rgba(255, 107, 53, 0.4),
            0 0 40px rgba(255, 107, 53, 0.3);
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
    50% {
        box-shadow: 
            0 25px 80px rgba(255, 107, 53, 0.5),
            0 0 60px rgba(255, 107, 53, 0.4);
        text-shadow: 0 0 30px rgba(255, 107, 53, 1);
    }
    100% {
        box-shadow: 
            0 20px 60px rgba(255, 107, 53, 0.4),
            0 0 40px rgba(255, 107, 53, 0.3);
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

.section-title:hover {
    animation: titleGlow 1.5s ease-in-out infinite;
}

@keyframes titleShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.section-title:hover {
    background-image: linear-gradient(
        90deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(255, 107, 53, 0.3) 50%,
        rgba(255, 107, 53, 0.1) 100%
    );
    background-size: 200% 100%;
    animation: 
        titleGlow 1.5s ease-in-out infinite,
        titleShimmer 2s ease-in-out infinite;
}

.section-title {
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b, #ff6b35, #e55a2b);
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
    filter: blur(10px);
}

.section-title:hover::before {
    opacity: 0.3;
}

/* About Page Styles */
.about-page {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 120px 0 60px;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.about-image-section {
    position: relative;
}

.factory-image {
    position: relative;
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #444444;
    width: 100%;
}

.factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.image-placeholder {
    font-size: 80px;
    z-index: 2;
    position: relative;
}

.factory-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.factory-stats .stat-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.factory-stats .stat-number {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.about-info-section h2 {
    color: #ff6b35;
    font-size: 32px;
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-content h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
}

.service-content p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 14px;
}

.customer-service-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    margin-bottom: 60px;
}

.customer-service-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.service-description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hide mobile menu button on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 35px !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
    }
    
    .nav-links a {
        padding: 8px 16px !important;
        background: none !important;
        transform: none !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        border-radius: 20px !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-links a:hover {
        color: #ff6b35 !important;
        background: none !important;
    }
}

/* Enhanced Responsive Design */

/* إجبار ظهور القائمة في الشاشات الكبيرة */
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 35px !important;
    }
    
    .nav-links a {
        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-links a:hover {
        color: #ff6b35 !important;
        background: none !important;
    }
}

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 56px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .catalog-download {
        gap: 50px;
    }
    
    .download-card {
        padding: 60px 50px;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: row !important;
        gap: 30px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .catalog-download {
        gap: 45px;
    }
    
    .download-card {
        padding: 55px 45px;
    }
}

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: row !important;
        gap: 35px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .catalog-download {
        gap: 50px;
    }
    
    .download-card {
        padding: 60px 50px;
    }
}

/* Medium Large Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: row !important;
        gap: 25px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .catalog-download {
        gap: 35px;
    }
    
    .download-card {
        padding: 45px 35px;
    }
    
    .search-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box {
        width: 100%;
        max-width: 100%;
    }
    
    .search-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 350px;
    }
}

/* Medium Screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 750px;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border-top: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: row !important;
        gap: 25px;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 17px;
        padding: 18px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .factory-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .catalog-download {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }
    
    .download-card {
        max-width: 100%;
        padding: 45px 40px;
    }
    
    .search-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box {
        width: 100%;
        max-width: 100%;
    }
    
    .search-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 350px;
    }
}

/* Small Screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 15px 20px;
        border-radius: 8px;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: none;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.active {
        background: none;
        color: #ff6b35;
    }


    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
        padding: 15px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .services-list {
        gap: 20px;
    }

    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .service-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .search-description {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .search-box {
        max-width: 100%;
        min-width: auto;
        margin: 0 20px;
    }

    .search-input {
        padding: 16px 50px 16px 20px;
        font-size: 14px;
    }

    .search-icon {
        right: 18px;
        font-size: 18px;
    }

    .search-row {
        flex-direction: column;
        gap: 15px;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .search-filters {
        width: 100%;
        justify-content: center;
    }

    .filter-select {
        width: 100%;
        max-width: 300px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 12px 20px;
    }

    .section-subtitle:hover {
        transform: translateY(-2px);
    }

    .section-title {
        font-size: 40px;
        padding: 20px 30px;
        letter-spacing: 2px;
    }

    .section-title:hover {
        transform: translateY(-5px) scale(1.05);
    }

    .catalog-download {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .download-card {
        max-width: 100%;
        padding: 40px 30px;
    }
}

/* Extra Small Screens (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(229, 90, 43, 0.2)) !important;
        border: 2px solid rgba(255, 107, 53, 0.6) !important;
        box-shadow: 0 5px 18px rgba(255, 107, 53, 0.4) !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 15px 20px;
        border-radius: 8px;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: none;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.active {
        background: none;
        color: #ff6b35;
    }


    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
        padding: 12px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 14px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 8px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 11px;
    }

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

/* Extra Small Screens (less than 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 15px;
        line-height: 1.1;
        margin-bottom: 8px;
        padding: 0 5px;
        word-break: keep-all;
        hyphens: none;
    }
    
    .hero-description {
        font-size: 10px;
        line-height: 1.2;
        padding: 0 5px;
        margin-bottom: 12px;
        word-break: keep-all;
    }
    
    .hero-buttons {
        padding: 0 5px;
        margin-bottom: 20px;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 240px;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .stats-grid {
        gap: 10px;
        padding: 0 5px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .image-placeholder {
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .factory-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .about-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-section {
        order: 1;
    }

    .about-info-section {
        order: 2;
    }

    .services-list {
        gap: 15px;
    }

    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .service-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    .search-description {
        font-size: 15px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .search-box {
        max-width: 100%;
        min-width: auto;
        margin: 0 15px;
    }

    .search-input {
        padding: 14px 45px 14px 18px;
        font-size: 14px;
    }

    .search-icon {
        right: 16px;
        font-size: 16px;
    }

    .search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .search-filters {
        width: 100%;
        justify-content: center;
    }

    .filter-select {
        width: 100%;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
        padding: 10px 15px;
    }

    .section-subtitle:hover {
        transform: translateY(-1px);
    }

    .section-title {
        font-size: 36px;
        padding: 15px 25px;
        letter-spacing: 1px;
    }

    .section-title:hover {
        transform: translateY(-3px) scale(1.03);
    }

    .catalog-download {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .download-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    .page-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* Catalog Buttons */
.catalog-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 15px;
}

.btn-catalog-large {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-catalog-large::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;
}

.btn-catalog-large:hover::before {
    left: 100%;
}

.btn-catalog-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
}

.btn-catalog-large:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-catalog-view {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-catalog-view::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;
}

.btn-catalog-view:hover::before {
    left: 100%;
}

.btn-catalog-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
}

.btn-catalog-view:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive for catalog buttons */
@media (max-width: 768px) {
    .catalog-buttons {
        gap: 12px;
    }
    
    .btn-catalog-large {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .btn-catalog-view {
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* Products Page Hero Section */
.products .hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.products .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.products .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.products .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products .hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.products .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.products .stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.products .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.products .stat-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Preview Section - 6 Products Layout */
.products-preview .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Responsive for products preview */
@media (max-width: 992px) {
    .products-preview .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Products Page Hero Medium Screens */
    .products .hero-title {
        font-size: 40px;
    }

    .products .hero-subtitle {
        font-size: 18px;
    }

    .products .hero-stats {
        gap: 30px;
    }

    .products .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .products-preview .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Product Categories */
.product-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(229, 90, 43, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    letter-spacing: 2px;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.6s ease;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
}

.category-title:hover {
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(229, 90, 43, 0.1));
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.3),
        0 0 30px rgba(255, 107, 53, 0.2);
    text-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.4),
        0 0 20px rgba(255, 107, 53, 0.3);
}

.category-title:hover::before {
    left: 100%;
}

.category-title:hover::after {
    width: 120px;
    height: 5px;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
}

.product-category .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Responsive for product categories */
@media (max-width: 992px) {
    .product-category .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-category .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 20px 25px;
        letter-spacing: 1px;
    }

    /* Products Page Hero Responsive */
    .products .hero {
        min-height: 50vh;
    }

    .products .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .products .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .products .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }

    .products .stat-item {
        padding: 20px 15px;
    }

    .products .stat-number {
        font-size: 28px;
    }

    .products .stat-label {
        font-size: 14px;
    }
}

/* Social Links Styling */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cccccc;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.social-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.social-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #ff8c42);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    box-shadow: 0 0 0 4px #ff6b35;
}

.timeline-year {
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Fluid Responsive Timeline - Works on ALL screen sizes from 320px to 4000px+ */

.social-link:hover i {
    transform: scale(1.1);
}

/* Font Awesome specific styling */
.social-link .fa-whatsapp:hover {
    color: #25D366;
}

.social-link .fa-facebook:hover {
    color: #1877F2;
}

.social-link .fa-instagram:hover {
    color: #E4405F;
}

/* Footer Orange Letters */
.footer-section h3 .orange-f,
.footer-section h3 .orange-w {
    color: #ff6b35 !important;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #2a2a2a;
    border: 2px solid #444444;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 24px;
    color: #ff6b35;
    opacity: 0.3;
    z-index: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ff6b35;
    font-size: 16px;
    transition: all 0.3s ease;
}

.testimonial-rating i:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 2;
}

.author-info h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.author-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-stats .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.testimonials-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.testimonials-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    position: relative;
    z-index: 2;
}

.testimonials-stats .stat-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Testimonials Animation */
@keyframes testimonialSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-card {
    animation: testimonialSlideIn 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .testimonials-stats .stat-item {
        padding: 25px 15px;
    }
    
    .testimonials-stats .stat-number {
        font-size: 28px;
    }
    
    .testimonials-stats .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .testimonials-stats .stat-item {
        padding: 20px 15px;
    }
    
    .testimonials-stats .stat-number {
        font-size: 24px;
    }
    
    .testimonials-stats .stat-label {
        font-size: 12px;
    }
}
