/* ===== فونت YekanBakh - لوکال ===== */
@font-face {
    font-family: 'YekanBakh';
    src: url('fonts/YekanBakh-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('fonts/YekanBakh-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('fonts/YekanBakh-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('fonts/YekanBakh-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
/* استایل‌های مخصوص فارسی */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: 'YekanBakh', Tahoma, sans-serif;
}

body {
    background: #f6f6f6;
    color: #333;
    line-height: 1.6;
}

/* نوار اطلاعیه */
.announcement-bar {
    background: #FFC400;
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

/* هدر */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.site-title {
    font-size: 20px;
    font-weight: bold;
}

/* منوی دسکتاپ */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
}

.menu-link:hover {
    color: #FFC400;
}

.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 180px;
    display: none;
    z-index: 1000;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

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

.submenu a:hover {
    background: #FFC400;
    color: #000;
}

/* سوییچر زبان */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 30px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.lang-btn.active {
    background: #FFC400;
    color: #000;
}

/* همبرگر منو - مخفی در دسکتاپ */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 30px;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-menu-close:hover {
    color: #FFC400;
}

.mobile-menu-item {
    margin-bottom: 15px;
}

.mobile-menu-item a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item a:hover {
    color: #FFC400;
}

.mobile-submenu {
    display: none;
    padding-right: 20px;
    margin-top: 10px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: none;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
}

.overlay.active {
    display: block;
}

/* فوتر */
.footer {
    background: #000;
    color: white;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-social h3,
.footer-contact h3 {
    color: #FFC400;
    margin-bottom: 20px;
}

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

.social-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link:hover {
    color: #FFC400;
}

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

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

.contact-item i {
    color: #FFC400;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.phone-link {
    direction: ltr;
    display: inline-block;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* بخش قهرمان (hero) */
.hero {
    padding: 60px 30px;
    background: white;
}

.hero-card {
    background: #FFC400;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
}

.hero-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* ریسپانسیو */
@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .site-title {
        font-size: 16px;
    }
}
/* تنظیم نقشه برای موبایل */
@media (max-width: 600px) {
    .quality-map {
        width: 100%;
        overflow: hidden;
    }
    
    .quality-map img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

/* ===== بخش‌های صفحه اصلی ===== */

/* Hero Section */
.hero {
    padding: 40px 30px;
}

.hero-card {
    background: #FFC400;
    border-radius: 16px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
     font-family: 'YekanBakh', Tahoma, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    background: white;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
}

.hero-features {
    list-style: none;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #000;
    color: white;
}

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

.btn-secondary {
    background: white;
    color: #000;
    border: 1px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #000;
    color: white;
}

.hero-image {
    width: 45%;
    max-width: 500px;
    height: auto;
}

/* Featured Products */
.featured-products {
    padding: 80px 30px;
    background: #f6f6f6;
}

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

.section-title {
    font-family: 'YekanBakh', Tahoma, sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFC400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Quality Section */
.quality-section {
    padding: 80px 30px;
    background: white;
    text-align: center;
}

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

.quality-title-wrapper {
    background: #FFC400;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.quality-title {
    font-family: 'YekanBakh', Tahoma, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.quality-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: #f1f1f1;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 25s linear infinite;
    width: fit-content;
}

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

.brands-track img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-card {
        flex-direction: column-reverse;
        padding: 30px 20px;
    }
    
    .hero-content,
    .hero-image {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
    }
}
/* ===== PRODUCT CARDS SECTION ===== */
.product-cards-section {
    padding: 60px 30px;
    background: white;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-cards .product-card {
    background: linear-gradient(180deg, #F5F5F5 0%, #D3D3D3 100%);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.product-cards .product-card img {
    width: 100%;
    border-radius: 12px;
    height: auto; /* این خط رو اضافه کن */
    object-fit: cover; /* این خط رو اضافه کن */
}

/* ===== MIXER SECTION ===== */
.mixer-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.mixer-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.mixer-main {
    width: 100%;
    height: auto;
}

.hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 196, 0, 0.8);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hotspot:hover {
    transform: scale(1.2);
    background: #FFC400;
}

.hotspot::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 24px;
    font-weight: bold;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 60px 30px;
    background: white;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 196, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FFC400;
}

#mainVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ===== MARKET SECTION ===== */
.market-section {
    background: #FFC400;
    margin: 40px 30px;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.market-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.market-content h2 {
    font-family: 'YekanBakh', Tahoma, sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

.market-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #000;
}

.market-image {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 40%;
    max-width: 400px;
    z-index: 1;
}

/* ===== QUALITY SECTION ===== */
.quality-section {
    padding: 80px 30px;
    background: white;
}

.quality-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.quality-content {
    flex: 1;
}

.quality-title-wrapper {
    background: #FFC400;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.quality-title {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.quality-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.quality-map {
    flex: 1;
    text-align: center;
}

.quality-map img {
    max-width: 100%;
    max-width: 500px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .product-cards {
        grid-template-columns: 1fr;
    }
    
    .market-section {
        padding: 40px 20px;
    }
    
    .market-content {
        max-width: 100%;
        text-align: center;
    }
    
    .market-image {
        position: relative;
        width: 80%;
        margin: 30px auto 0;
    }
    
    .quality-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .quality-content,
    .quality-map {
        max-width: 100%;
        text-align: center;
    }
    
    .quality-title-wrapper {
        margin: 0 auto 20px;
    }
}
/* تنظیم اندازه عکس‌های محصولات */
.product-cards .product-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-cards .product-card img {
    max-height: 200px;
    width: 100%;
    object-fit: contain;
}
/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 20px 30px;
    background: white;
    border-bottom: 1px solid #eee;
}

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

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #FFC400;
}

.breadcrumb span {
    color: #999;
    margin: 0 10px;
}

.breadcrumb .current {
    color: #FFC400;
    font-weight: 600;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/arya-truck-project/assets/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFC400;
}

.page-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 30px;
    background: white;
}

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

.category-card {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-content {
    padding: 25px;
}

.category-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.category-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.category-sizes {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.category-sizes li {
    background: #FFC400;
    color: #000;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 400px) {
    .page-header h1 {
        font-size: 28px;
    }
}
/* ===== SERVICES PAGE STYLES ===== */

/* App Section */
.app-section {
    padding: 80px 30px;
    background: white;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-content {
    flex: 1;
}

.app-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.app-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 12px 25px;
    border-radius: 50px;
}

.app-badge i {
    font-size: 30px;
    color: #FFC400;
}

.app-badge span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    max-height: 350px;
}

/* Emergency Section */
.emergency-section {
    padding: 60px 30px;
    background: #FFC400;
}

.emergency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.emergency-content {
    flex: 1;
}

.emergency-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.emergency-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 15px;
}

.emergency-contact {
    margin-top: 25px;
}

.emergency-phone {
    background: #000;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.emergency-phone i {
    color: #FFC400;
}

.emergency-image {
    flex: 1;
    text-align: center;
}

.emergency-image img {
    max-width: 100%;
    max-height: 250px;
}

/* Services Grid */
.services-grid-section {
    padding: 80px 30px;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #000;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #FFC400;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.service-link:hover {
    color: #000;
}

/* Renovation Section */
.renovation-section {
    padding: 80px 30px;
    background: #000;
    color: white;
}

.renovation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.renovation-content {
    flex: 1;
}

.renovation-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFC400;
}

.renovation-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.renovation-features {
    list-style: none;
    margin-top: 25px;
}

.renovation-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.renovation-features i {
    color: #FFC400;
    font-size: 16px;
}

.renovation-image {
    flex: 1;
    text-align: center;
}

.renovation-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
}

/* Parts Section */
.parts-section {
    padding: 60px 30px;
    background: #FFC400;
}

.parts-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.parts-content {
    flex: 1;
}

.parts-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.parts-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
}

.parts-btn {
    background: #000;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.parts-btn i {
    color: #FFC400;
}

.parts-image {
    flex: 1;
    text-align: center;
}

.parts-image img {
    max-width: 100%;
    max-height: 200px;
}

/* Consulting Section */
.consulting-section {
    padding: 80px 30px;
    background: white;
}

.consulting-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.consulting-content {
    flex: 1;
}

.consulting-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.consulting-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.consulting-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.consulting-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.consulting-feature i {
    color: #FFC400;
    font-size: 16px;
}

.consulting-image {
    flex: 1;
    text-align: center;
}

.consulting-image img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 60px 30px;
    background: #000;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFC400;
}

.cta-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.cta-btn-primary {
    background: #FFC400;
    color: #000;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #FFC400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .app-container,
    .emergency-container,
    .renovation-container,
    .parts-container,
    .consulting-container {
        flex-direction: column;
        text-align: center;
    }
    
    .app-badge {
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consulting-features {
        grid-template-columns: 1fr;
        text-align: right;
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .app-badge {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== ABOUT PAGE STYLES ===== */

/* About Intro */
.about-intro {
    padding: 80px 30px;
    background: white;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-content {
    flex: 1;
}

.intro-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.intro-image {
    flex: 1;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    border-radius: 16px;
}

/* History Section */
.history-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 2;
    color: #666;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Stats Section */
.stats-section {
    padding: 60px 30px;
    background: #FFC400;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* Mission Section */
.mission-section {
    padding: 80px 30px;
    background: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #000;
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.mission-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* R&D Section */
.rd-section {
    padding: 80px 30px;
    background: #000;
    color: white;
}

.rd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.rd-content {
    flex: 1;
}

.rd-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFC400;
}

.rd-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.rd-image {
    flex: 1;
    text-align: center;
}

.rd-image img {
    max-width: 100%;
    border-radius: 16px;
}

/* Standards Section */
.standards-section {
    padding: 80px 30px;
    background: white;
}

.standards-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.standard-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 16px;
}

.standard-icon {
    width: 70px;
    height: 70px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #000;
}

.standard-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.standard-item p {
    font-size: 14px;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 30px;
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 5px;
    color: #000;
}

.member-position {
    font-size: 14px;
    color: #FFC400;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .intro-container,
    .rd-container {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-container {
        grid-template-columns: 1fr;
    }
    
    .standards-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}



/* ===== CONTACT PAGE STYLES ===== */

/* Contact Section */
.contact-section {
    padding: 80px 30px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* اطلاعات تماس */
.contact-info-box {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #FFC400;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-content p {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-info-content a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-content a:hover {
    color: #FFC400;
}

/* شبکه‌های اجتماعی */
.contact-social-box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.contact-social-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-social-icons a {
    width: 45px;
    height: 45px;
    background: #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transition: all 0.3s;
}

.contact-social-icons a:hover {
    background: #000;
    color: #FFC400;
    transform: translateY(-3px);
}

/* فرم تماس */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: #FFC400;
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: #FFC400;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,196,0,0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #FFC400;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

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

/* نقشه */
.contact-map-section {
    padding: 0 30px 80px;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-map-section {
        padding: 0 20px 60px;
    }
    
    .contact-map-container {
        height: 350px;
    }
    
    .contact-info-title::after,
    .contact-form-title::after {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 400px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info-content {
        text-align: center;
    }
    
    .contact-social-icons {
        justify-content: center;
    }
    
    .contact-map-container {
        height: 250px;
    }
}

/* ===== BLOG PAGE STYLES ===== */

.blog-section {
    padding: 80px 30px;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-meta i {
    color: #FFC400;
    margin-left: 5px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #FFC400;
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #FFC400;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 10px;
    color: #000;
}

/* ===== SINGLE POST PAGE STYLES ===== */

.single-post-section {
    padding: 60px 30px;
    background: white;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.single-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-post-header h1 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #666;
    font-size: 14px;
}

.single-post-meta i {
    color: #FFC400;
    margin-left: 5px;
}

.single-post-image {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.single-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-content {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.single-post-content h2 {
    font-size: 24px;
    color: #000;
    margin: 30px 0 15px;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 20px 0;
    padding-right: 20px;
}

.single-post-content li {
    margin-bottom: 10px;
}

/* پست‌های مرتبط */
.related-posts-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.related-post-card:hover {
    transform: translateY(-3px);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 15px;
    font-size: 16px;
    color: #000;
    text-align: center;
}

.related-post-card a {
    text-decoration: none;
    color: inherit;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .single-post-header h1 {
        font-size: 28px;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .single-post-image {
        height: 300px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .blog-section {
        padding: 60px 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .single-post-image {
        height: 200px;
    }
}
/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-number:hover {
    background: #FFC400;
    color: #000;
}

.pagination-number.active {
    background: #FFC400;
    color: #000;
}

.pagination-prev,
.pagination-next {
    padding: 10px 20px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.pagination-prev:hover,
.pagination-next:hover {
    background: #FFC400;
    color: #000;
}

.pagination-prev i,
.pagination-next i {
    font-size: 14px;
}

@media (max-width: 400px) {
    .pagination {
        gap: 5px;
    }
    
    .pagination-number {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pagination-prev,
    .pagination-next {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* ===== CATEGORY PRODUCTS PAGE STYLES ===== */

.category-products-section {
    padding: 60px 30px;
    background: #f9f9f9;
}

.category-products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,196,0,0.15);
}

.product-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-item-content {
    padding: 25px;
    background: white;
}

.product-item-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.product-item-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.product-item-specs span {
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 30px;
}

.product-item-specs strong {
    color: #FFC400;
    margin-left: 5px;
}

.product-item-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.product-item-content .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #FFC400;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.product-item-content .btn:hover {
    background: #000;
    color: #FFC400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .product-item {
        flex-direction: column;
        gap: 0;
    }
    
    .product-item-image {
        flex: none;
        width: 100%;
        height: 220px;
    }
    
    .product-item-content {
        padding: 25px;
    }
    
    .product-item-specs {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .category-products-section {
        padding: 60px 20px;
    }
    
    .product-item-image {
        height: 180px;
    }
    
    .product-item-content h3 {
        font-size: 20px;
    }
}
/* ===== ERROR PAGES STYLES ===== */

.error-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: white;
    text-align: center;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 120px;
    font-weight: 900;
    color: #FFC400;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 5px 5px 0 rgba(255,196,0,0.2);
}

.error-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.error-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 400px) {
    .error-number {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-text {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
    }
}
/* ===== PRODUCT DETAILS PAGE STYLES ===== */

.product-details {
    padding: 60px 30px;
    background: white;
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
}

/* گالری تصاویر */
.product-gallery {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 20px;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    background: white;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* اطلاعات محصول */
.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-specs-summary {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

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

.spec-label {
    font-weight: 600;
    color: #666;
    font-size: 16px;
}

.spec-value {
    font-weight: 700;
    color: #FFC400;
    font-size: 18px;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

.product-features h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FFC400;
    border-radius: 2px;
}

.product-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 10px;
}

.product-features li i {
    color: #FFC400;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-actions .btn-primary {
    flex: 2;
    padding: 15px;
    background: #FFC400;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
}

.product-actions .btn-primary:hover {
    background: #000;
    color: #FFC400;
    transform: translateY(-2px);
}

.product-actions .btn-secondary {
    flex: 1;
    padding: 15px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.product-actions .btn-secondary:hover {
    background: #ddd;
}

/* مشخصات فنی کامل */
.product-specs-full {
    grid-column: 1 / -1;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.product-specs-full h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.product-specs-full h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFC400;
    border-radius: 2px;
}

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

.specs-column {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
}

.specs-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFC400;
}

.specs-column ul {
    list-style: none;
}

.specs-column li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
    color: #555;
}

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

.specs-column li span {
    font-weight: 600;
    color: #333;
}

/* محصولات مرتبط */
.related-products {
    padding: 60px 30px;
    background: #f9f9f9;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.related-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,196,0,0.2);
}

.related-item a {
    text-decoration: none;
    color: inherit;
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-item h4 {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    color: #333;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .category-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-details-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .product-item-specs {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-image {
        height: 250px;
    }
}
/* ===== PAGES CONTENT STYLES ===== */
.content-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 2;
    font-size: 16px;
}

.content-box h2 {
    font-size: 24px;
    color: #000;
    margin: 30px 0 15px;
}

.content-box h3 {
    font-size: 20px;
    color: #333;
    margin: 25px 0 10px;
}

.content-box p {
    margin-bottom: 20px;
    color: #555;
}

.content-box ul, 
.content-box ol {
    margin: 20px 0;
    padding-right: 20px;
}

.content-box li {
    margin-bottom: 10px;
}
/* ===== HOTSPOT TOOLTIP ===== */
.hotspot-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 15px;
    border-radius: 8px;
    max-width: 250px;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.hotspot-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.hotspot-tooltip img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

.hotspot-tooltip h4 {
    margin: 0 0 5px 0;
    color: #FFC400;
}

.hotspot-tooltip p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}
