/* ===== VARIABLES ===== */
:root {
    /* ARTOIL-Inspired Professional Color Scheme */
    
    /* Primary - Koyu Profesyonel Arka Plan */
    --primary-dark: #1a1a1a;           /* Ana koyu renk */
    --primary-darker: #0d0d0d;         /* Daha koyu */
    --primary-light: #2d2d2d;          /* Açık varyant */
    
    /* Metallic Grey - Kurumsal Kimlik (Logo) */
    --metallic-light: #C9C9C9;
    --metallic-mid: #F2F2F2;
    --metallic-dark: #A8A7A7;
    
    /* Accent Red - CTA & Highlights */
    --accent-red: #E31C25;
    --accent-red-light: #ff4757;
    --accent-red-dark: #c01820;
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-gray-light: #f8f9fa;
    --color-gray: #f5f5f5;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    --gradient-red: linear-gradient(135deg, #E31C25 0%, #ff4757 100%);
    
    --font-family: 'Poppins', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 4px 20px rgba(227, 28, 37, 0.3);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 12px rgba(227, 28, 37, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 28, 37, 0.4);
    background: linear-gradient(135deg, var(--accent-red-light) 0%, var(--accent-red) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-white);
    color: var(--primary-dark);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-light:hover {
    background: var(--accent-red);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(227, 28, 37, 0.4);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--accent-red);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-red);
}

.nav-toggle,
.nav-close {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle {
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(227, 28, 37, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(227, 28, 37, 0.3);
}

.nav-toggle i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-toggle:hover {
    background: rgba(227, 28, 37, 0.2);
    border-color: var(--accent-red);
    transform: scale(1.05);
}

/* ===== MAIN ===== */
.main {
    margin-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 650px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(227, 28, 37, 0.05) 0%, 
        transparent 50%,
        rgba(201, 201, 201, 0.03) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.08) 2px,
            rgba(255, 255, 255, 0.08) 4px
        );
    z-index: 2;
    pointer-events: none;
}

.hero-slider {
    height: 100%;
    position: relative;
    z-index: 3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 4;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--color-accent);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--color-white);
    width: 30px;
    border-radius: 6px;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--color-white);
    position: relative;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-red);
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
}

.feature-card:hover::after {
    height: 4px;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 8px 16px rgba(227, 28, 37, 0.25);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(227, 28, 37, 0.35);
    background: linear-gradient(135deg, var(--accent-red-light) 0%, var(--accent-red) 100%);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: var(--color-text);
}

/* ===== PRODUCTS SECTION ===== */
.products-preview {
    background: var(--color-gray);
}

.products-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--metallic-mid);
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid var(--metallic-mid);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.search-input:focus {
    outline: none;
    border-color: var(--metallic-dark);
    box-shadow: 0 0 0 3px rgba(168, 167, 167, 0.2);
}

.sort-box {
    position: relative;
    min-width: 200px;
}

.sort-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--metallic-mid);
    font-size: 1.1rem;
    pointer-events: none;
}

.sort-select {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid var(--metallic-mid);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B4B9BE' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.sort-select:focus {
    outline: none;
    border-color: var(--metallic-dark);
    box-shadow: 0 0 0 3px rgba(168, 167, 167, 0.2);
}

.products-count {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

.products-count span {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.3rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-gray);
    border-radius: 15px;
    margin-top: 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--metallic-mid);
    margin-bottom: 1rem;
}

.no-results h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--color-text);
    font-size: 1.1rem;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .products-filter {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .products-filter {
        justify-content: flex-start;
        gap: 0.5rem;
    }
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 25px;
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-red);
    color: var(--color-white);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.product-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    background: var(--gradient-metallic);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-metallic-subtle);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(141, 140, 143, 0.05) 0%, rgba(180, 185, 190, 0.08) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-body {
    padding: 1.5rem;
}

.product-category {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-link {
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition);
}

.product-link:hover {
    text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient-dark);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.04) 10px,
            rgba(255, 255, 255, 0.04) 20px
        );
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    position: relative;
    z-index: 3;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    background: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--tech-blue) 0%, 
        var(--tech-blue-light) 100%
    );
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--tech-blue-light);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 16px rgba(227, 28, 37, 0.25);
}

.category-card:hover .category-icon {
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 12px 24px rgba(227, 28, 37, 0.35);
    background: linear-gradient(135deg, var(--accent-red-light) 0%, var(--accent-red) 100%);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== STATS HOME SECTION ===== */
.stats-home {
    background: var(--primary-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
}

.stats-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.05) 2px,
            rgba(255, 255, 255, 0.05) 4px
        );
    z-index: 2;
}

.stats-home .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.stats-home .stat-card {
    text-align: center;
    position: relative;
    z-index: 3;
}

.stats-home .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(227, 28, 37, 0.5), 0 0 20px rgba(227, 28, 37, 0.3);
}

.stats-home .stat-label {
    font-size: 1.1rem;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
    background: var(--color-gray);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(180, 185, 190, 0.2);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-metallic-subtle);
    opacity: 0;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
    border-color: var(--metallic-mid);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(227, 28, 37, 0.3));
}

.cert-card h4 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: var(--color-text);
    font-size: 0.95rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="blur"><feGaussianBlur stdDeviation="20"/></filter></defs><circle cx="200" cy="150" r="100" fill="%23E31C25" opacity="0.15" filter="url(%23blur)"/><circle cx="800" cy="400" r="150" fill="%23C9C9C9" opacity="0.1" filter="url(%23blur)"/><circle cx="1000" cy="200" r="120" fill="%23E31C25" opacity="0.12" filter="url(%23blur)"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.page-header > * {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-description {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.mission-vision {
    background: var(--color-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #e8e8e8;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-red);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
}

.mv-card:hover::after {
    height: 4px;
}

.mv-card > * {
    position: relative;
    z-index: 1;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(227, 28, 37, 0.3);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(227, 28, 37, 0.4);
}

.mv-card h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mv-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.stats {
    background: var(--color-primary);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(227, 28, 37, 0.5), 0 0 20px rgba(227, 28, 37, 0.3);
}

.stat-label {
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--color-secondary);
    font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info h2 {
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(227, 28, 37, 0.3);
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(227, 28, 37, 0.4);
}

.contact-details h3 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-form-wrapper h2 {
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(227, 28, 37, 0.1);
}

.error-message {
    color: var(--accent-red);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.map-section {
    height: 400px;
    background: var(--color-gray);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 3rem;
}

.map-placeholder p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.breadcrumb {
    background: var(--color-gray);
    padding: 1rem 0;
    overflow-x: hidden;
    max-width: 100%;
}

.breadcrumb-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
    .breadcrumb-list {
        font-size: 0.9rem;
        gap: 0.4rem;
    }
}

@media screen and (max-width: 480px) {
    .breadcrumb-list {
        font-size: 0.85rem;
        gap: 0.3rem;
    }
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-text);
    flex-shrink: 0;
}

.breadcrumb-list a {
    color: var(--color-primary);
    transition: var(--transition);
    word-break: break-word;
    overflow-wrap: break-word;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 360px) {
    .product-detail-grid {
        gap: 1rem;
    }
}

.product-main-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .product-main-image {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .product-main-image {
        height: 300px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 360px) {
    .product-main-image {
        height: 250px;
    }
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    padding-bottom: 0.5rem;
}

@media screen and (max-width: 480px) {
    .product-thumbnails {
        gap: 0.5rem;
    }
}

@media screen and (max-width: 360px) {
    .product-thumbnails {
        gap: 0.4rem;
    }
}

.product-thumbnail {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

@media screen and (max-width: 480px) {
    .product-thumbnail {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 360px) {
    .product-thumbnail {
        width: 70px;
        height: 70px;
    }
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--color-primary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info .product-name {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .product-info .product-name {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .product-info .product-name {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 360px) {
    .product-info .product-name {
        font-size: 1.3rem;
    }
}

.product-info .product-category {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-info .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .product-info .product-price {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 480px) {
    .product-info .product-price {
        font-size: 1.5rem;
    }
}

.product-description h2 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-description p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

@media screen and (max-width: 480px) {
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 360px) {
    .product-actions {
        gap: 0.5rem;
    }
}

.product-specs {
    margin-bottom: 3rem;
}

.specs-title {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.spec-item {
    background: var(--color-gray);
    padding: 1.5rem;
    border-radius: 5px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media screen and (max-width: 480px) {
    .spec-item {
        padding: 1.25rem;
    }
}

.spec-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.spec-value {
    color: var(--color-text);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox.active {
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--color-white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--color-secondary);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: var(--color-white);
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-darker);
    color: var(--color-white);
    padding: 60px 0 20px;
    position: relative;
    border-top: 3px solid var(--accent-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(180, 185, 190, 0.2);
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(227, 28, 37, 0.5);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-links i,
.footer-hours i {
    font-size: 0.8rem;
    color: var(--metallic-mid);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--color-accent);
    font-size: 1rem;
}

.footer-newsletter {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(180, 185, 190, 0.2);
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(227, 28, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.newsletter-btn i {
    font-size: 1.1rem;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 28, 37, 0.4);
    background: linear-gradient(135deg, var(--accent-red-light) 0%, var(--accent-red) 100%);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #ff2830 0%, #E31C25 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 28, 37, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(180, 185, 190, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-developer {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-developer span {
    margin-right: 0.3rem;
}

.footer-developer a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-weight: 500;
}

.footer-developer a:hover {
    color: var(--metallic-light);
    text-decoration: underline;
}

/* Footer Hover Animations */
.footer-links li {
    transition: var(--transition);
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a i {
    transition: var(--transition);
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: var(--color-secondary);
}

.footer-contact li {
    transition: var(--transition);
}

.footer-contact li:hover {
    transform: translateX(3px);
}

.footer-contact li:hover i {
    transform: scale(1.2);
    color: var(--metallic-light);
}

.footer-hours li {
    transition: var(--transition);
}

.footer-hours li:hover {
    transform: translateX(3px);
    color: var(--metallic-light);
}

.footer-title {
    position: relative;
    transition: var(--transition);
}

.footer-title:hover {
    color: var(--metallic-light);
    transform: translateX(3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--color-white);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-gray);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--metallic-mid);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    border-color: var(--metallic-mid);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--metallic-mid);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--metallic-mid);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 6px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--metallic-light);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 4px solid var(--color-white);
    box-shadow: 0 5px 25px rgba(227, 28, 37, 0.5);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 35px rgba(227, 28, 37, 0.8);
    background: linear-gradient(135deg, #ff2830 0%, #E31C25 100%);
}

.video-play-btn i {
    font-size: 2rem;
    color: var(--color-white);
    margin-left: 5px;
}

.video-title {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.video-description {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== PROCESS/TIMELINE SECTION ===== */
.process {
    background: var(--color-gray-light);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--metallic-light) 50%, 
        transparent 100%
    );
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--metallic-light) 0%, 
        var(--metallic-mid) 50%, 
        var(--metallic-dark) 100%
    );
    box-shadow: 0 0 15px rgba(168, 167, 167, 0.5);
}

.process-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    width: 45%;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid #e8e8e8;
    transition: var(--transition);
}

.process-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-red);
    border-radius: 0 0 12px 12px;
    transition: var(--transition);
}

.process-content:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.process-content:hover::after {
    height: 4px;
}

.process-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--metallic-light) 0%, var(--metallic-mid) 50%, var(--metallic-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 20px rgba(168, 167, 167, 0.4), 0 0 0 8px rgba(201, 201, 201, 0.1);
    z-index: 2;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(227, 28, 37, 0.35);
    transition: var(--transition);
}

.process-content:hover .process-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(227, 28, 37, 0.45);
}

.process-content h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.process-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== COUNTER ANIMATION ===== */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(227, 28, 37, 0.3), 0 0 20px rgba(180, 185, 190, 0.2);
}

/* ===== METALLIC SHINE EFFECT ===== */
.metallic-shine {
    position: relative;
    overflow: hidden;
}

.metallic-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

/* ===== CERTIFICATES PAGE ===== */
.certificates-page .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.certificates-page .cert-card {
    height: 100%;
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-metallic);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.cert-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-metallic);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.cert-subtitle {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cert-date {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--metallic-mid);
    font-size: 0.9rem;
    color: var(--metallic-dark);
    font-weight: 600;
}

.cert-info {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--color-gray);
    border-radius: 15px;
    border: 2px solid var(--metallic-mid);
}

.cert-info h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cert-info p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cert-download {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--metallic-mid);
    text-align: center;
}

.cert-download h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cert-download p {
    margin-bottom: 1.5rem;
}

/* ===== QUALITY POLICY PAGE ===== */
.quality-policy .policy-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.quality-policy .policy-intro h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.quality-policy .policy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.policy-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
    border-color: var(--metallic-mid);
}

.policy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.policy-card:hover .policy-icon {
    background: var(--gradient-metallic);
    transform: scale(1.1) rotate(5deg);
}

.policy-card h3 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.policy-card p {
    color: var(--color-text);
    line-height: 1.7;
}

.policy-principles {
    margin-bottom: 4rem;
}

.policy-principles h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.principles-list {
    max-width: 900px;
    margin: 0 auto;
}

.principle-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--metallic-mid);
}

.principle-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
    border-left-color: var(--color-secondary);
}

.principle-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-metallic);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.principle-content h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.principle-content p {
    color: var(--color-text);
    line-height: 1.7;
}

.policy-commitment {
    background: var(--gradient-metallic);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.policy-commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.45) 0%, 
        rgba(0, 0, 0, 0.25) 50%, 
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.policy-commitment > * {
    position: relative;
    z-index: 2;
}

.policy-commitment h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-commitment > p {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-commitment ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.policy-commitment ul li {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-commitment ul li i {
    color: var(--color-secondary);
    font-size: 1.3rem;
}

.commitment-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
        padding: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
        border-left: 3px solid var(--accent-red);
        overflow-y: auto;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(227, 28, 37, 0.03) 10px,
            rgba(227, 28, 37, 0.03) 20px
        );
        z-index: 1;
        pointer-events: none;
    }
    
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, 
            var(--accent-red) 0%, 
            var(--accent-red-light) 50%, 
            var(--accent-red) 100%
        );
        z-index: 3;
    }
    
    .nav-list {
        position: relative;
        z-index: 2;
        padding: 5rem 2rem 2rem;
    }
    
    .nav-menu.show-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(227, 28, 37, 0.2);
        transition: var(--transition);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item:hover {
        background: rgba(227, 28, 37, 0.1);
        border-left: 3px solid var(--accent-red);
        padding-left: 0.5rem;
    }
    
    .nav-link {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--accent-red);
        border-radius: 50%;
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        opacity: 1;
        left: -1rem;
    }
    
    .nav-link.active {
        color: var(--accent-red);
        font-weight: 600;
    }
    
    .nav-link:hover {
        color: var(--accent-red);
        padding-left: 0.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 3;
        width: 40px;
        height: 40px;
        background: rgba(227, 28, 37, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        border: 2px solid var(--accent-red);
    }
    
    .nav-close:hover {
        background: var(--accent-red);
        transform: rotate(90deg);
        box-shadow: 0 4px 12px rgba(227, 28, 37, 0.5);
    }
    
    /* Mobile Menu Header with Logo */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--accent-red) 50%, 
            transparent 100%
        );
        z-index: 2;
    }
    
    .nav-logo .logo-img {
        height: 50px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-controls {
        flex-direction: column;
    }
    
    .search-box,
    .sort-box {
        min-width: 100%;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .process-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .process-content {
        width: 100%;
    }
    
    .process-number {
        left: 30px;
        transform: translateY(-50%);
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-description {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        height: 450px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .filter-btn i {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .hero-controls {
        bottom: 20px;
        gap: 1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 25px;
    }
    
    .feature-icon,
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .video-play-btn i {
        font-size: 1.75rem;
    }
}


/* ===== CATEGORY PAGE ===== */
.category-info .category-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.category-intro h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.category-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.category-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-feature-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
    border-color: var(--metallic-mid);
}

.feature-icon-large {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-metallic);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.category-feature-card:hover .feature-icon-large {
    transform: scale(1.1) rotate(10deg);
}

.category-feature-card h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.category-feature-card p {
    color: var(--color-text);
    line-height: 1.7;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.type-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-metallic);
    border-color: var(--metallic-mid);
}

.type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.type-card h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.type-card > p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.type-specs {
    list-style: none;
    margin-bottom: 2rem;
}

.type-specs li {
    color: var(--color-text);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.type-specs i {
    color: var(--color-secondary);
    font-size: 1rem;
}

.type-card .btn {
    width: 100%;
}

.selection-guide {
    background: var(--color-white);
}

.guide-steps {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--color-gray);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--metallic-mid);
}

.guide-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-left-color: var(--color-secondary);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-metallic);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text);
    line-height: 1.7;
}

.guide-cta {
    text-align: center;
    padding: 3rem;
    background: var(--color-gray);
    border-radius: 15px;
    border: 2px solid var(--metallic-mid);
}

.guide-cta h3 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-cta p {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


/* ===== LEGAL PAGES ===== */
.legal-content {
    background: var(--color-white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--color-secondary);
}

.legal-intro p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--metallic-mid);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-section ul {
    list-style: none;
    margin-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--color-secondary);
}


/* ===== STATS ABOUT SECTION ===== */
.stats-about {
    background: var(--primary-dark);
    color: var(--color-white);
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
}

.stats-about .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stats-about .stat-card {
    text-align: center;
}

.stats-about .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(227, 28, 37, 0.5);
}

.stats-about .stat-label {
    font-size: 1.1rem;
    color: var(--color-white);
}


/* ===== FAQ PAGE ===== */
.faq-section {
    background: var(--color-white);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.faq-intro a {
    color: var(--accent-red);
    text-decoration: underline;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 12px 24px;
    border-radius: 25px;
    background: var(--color-white);
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e8e8e8;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.faq-category-btn i {
    font-size: 1rem;
    transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);
    color: var(--color-white);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 28, 37, 0.3);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 2px solid #e8e8e8;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-red);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--accent-red);
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--color-text);
    font-weight: 600;
}

.faq-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-red);
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    z-index: 1;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta i {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    display: block;
}

.faq-cta h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Responsive */
@media screen and (max-width: 768px) {
    .faq-categories {
        gap: 0.75rem;
    }
    
    .faq-category-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta i {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-categories {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .faq-category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .faq-category-btn i {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.95rem;
    }
}


/* ===== OVERFLOW FIX FOR MOBILE ===== */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

.product-images,
.product-info {
    max-width: 100%;
    overflow: hidden;
}

.product-description {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-description h2,
.product-description p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Prevent horizontal scroll on all pages */
.main {
    overflow-x: hidden;
    max-width: 100vw;
}

.section {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix for product detail page specifically */
.product-detail {
    overflow-x: hidden;
    max-width: 100%;
}

@media screen and (max-width: 480px) {
    .product-detail-grid {
        padding: 0;
    }
    
    .product-images {
        margin-bottom: 1.5rem;
    }
    
    .product-main-image {
        border-radius: 8px;
    }
}


/* ===== RELATED PRODUCTS ===== */
.related-products {
    margin-top: 4rem;
    overflow-x: hidden;
    max-width: 100%;
}

.related-products .section-title {
    margin-bottom: 2rem;
}

.related-products .products-grid {
    overflow-x: hidden;
}

@media screen and (max-width: 480px) {
    .related-products {
        margin-top: 3rem;
    }
}
