/* ===== تنظیمات کلی ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl; /* راست‌چین برای عربی */
}

body {
    font-family: "Noto Sans Arabic", "Tahoma", "Arial", sans-serif;
    background-color: #f9fbf8;
    color: #1e2f23;
    line-height: 1.8;
}

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

/* ===== سربرگ ===== */
header {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo p {
    font-size: 14px;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(255,255,255,0.2);
    color: #ffd700;
}

/* ===== بخش قهرمان (Hero) ===== */
.hero {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #2d6a3e;
}

.hero-content h2 {
    font-size: 42px;
    color: #1e4d2b;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #2d4a2d;
}

.btn-primary {
    display: inline-block;
    background-color: #1e4d2b;
    color: white;
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 77, 43, 0.3);
}

.btn-primary:hover {
    background-color: #ffd700;
    color: #1e4d2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 77, 43, 0.4);
}

/* ===== بخش ویژگی‌ها ===== */
.features {
    padding: 60px 0;
    background-color: white;
}

.features .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: #f5faf5;
    padding: 35px 25px;
    border-radius: 16px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-right: 5px solid #2d6a3e;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(45, 106, 62, 0.15);
}

.feature-box h3 {
    font-size: 24px;
    color: #1e4d2b;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 16px;
    color: #3d5a3d;
}

/* ===== فوتر ===== */
footer {
    background-color: #1e2f23;
    color: #ddd;
    padding: 30px 0;
    margin-top: 40px;
}

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

.footer-info p {
    margin: 5px 0;
    font-size: 15px;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.7;
}

/* ===== ریسپانسیو برای موبایل ===== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 17px;
    }
    
    .features .container {
        flex-direction: column;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== آمار و ارقام ===== */
.stats {
    padding: 50px 0;
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 16px;
    opacity: 0.85;
}

/* ===== دسته‌بندی محصولات ===== */
.product-categories {
    padding: 60px 0;
    background: #f9fbf8;
}

.product-categories h2 {
    text-align: center;
    font-size: 32px;
    color: #1e4d2b;
    margin-bottom: 10px;
}

.product-categories > .container > p {
    text-align: center;
    color: #4a6a4a;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-bottom: 4px solid #2d6a3e;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(45, 106, 62, 0.15);
}

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

.category-card h3 {
    font-size: 22px;
    color: #1e4d2b;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 15px;
    color: #4a6a4a;
    margin-bottom: 15px;
}

.category-card a {
    color: #2d6a3e;
    font-weight: 600;
    text-decoration: none;
}

.category-card a:hover {
    color: #ffd700;
}

/* ===== مزایای صادرات ===== */
.export-benefits {
    padding: 60px 0;
    background: white;
}

.export-benefits h2 {
    text-align: center;
    font-size: 32px;
    color: #1e4d2b;
    margin-bottom: 40px;
}

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

.benefit-item {
    background: #f5faf5;
    padding: 25px 20px;
    border-radius: 12px;
    border-right: 4px solid #ffd700;
}

.benefit-item h3 {
    font-size: 20px;
    color: #1e4d2b;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #3d5a3d;
    line-height: 1.7;
}

/* ===== وبلاگ در صفحه اصلی ===== */
.latest-blog {
    padding: 60px 0;
    background: #f9fbf8;
}

.latest-blog h2 {
    text-align: center;
    font-size: 32px;
    color: #1e4d2b;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.blog-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-card h3 a {
    color: #1e4d2b;
    text-decoration: none;
    font-size: 18px;
}

.blog-card h3 a:hover {
    color: #ffd700;
}

.blog-card p {
    color: #4a6a4a;
    margin: 10px 0;
}

.blog-date {
    font-size: 13px;
    color: #888;
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #2d6a3e;
    color: #2d6a3e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* ===== فوتر با گرید ===== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.footer-col h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

/* ===== دکمه ثانویه ===== */
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 35px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid white;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #1e4d2b;
    border-color: #ffd700;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .stat-number {
        font-size: 30px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .btn-secondary {
        margin-right: 0;
        margin-top: 10px;
    }
    
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== صفحات محصولات ===== */

/* صفحه جزئیات محصول */
.product-detail {
    padding: 50px 0;
    background: #f9fbf8;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* بخش تصویر محصول */
.product-image {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #1e4d2b;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.product-icon {
    font-size: 120px;
    display: block;
    margin: 20px 0;
}

.image-caption {
    color: #666;
    font-size: 14px;
}

/* بخش اطلاعات محصول */
.product-info h1 {
    font-size: 36px;
    color: #1e4d2b;
    margin-bottom: 10px;
}

.product-rating {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 20px;
}

.product-description {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 25px;
}

.product-description strong {
    color: #1e4d2b;
}

/* جدول مشخصات */
.specs-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.specs-box h3 {
    color: #1e4d2b;
    margin-bottom: 15px;
    font-size: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table td {
    padding: 10px 5px;
    font-size: 15px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1e4d2b;
    width: 40%;
}

.specs-table tr:last-child {
    border-bottom: none;
}

/* دکمه‌های اقدام */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-actions .btn-outline {
    background: transparent;
    border: 2px solid #2d6a3e;
    color: #2d6a3e;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-actions .btn-outline:hover {
    background: #2d6a3e;
    color: white;
}

/* فواید محصول */
.product-benefits {
    padding: 50px 0;
    background: white;
}

.product-benefits h2 {
    text-align: center;
    font-size: 30px;
    color: #1e4d2b;
    margin-bottom: 40px;
}

/* محصولات مشابه */
.related-products {
    padding: 50px 0;
    background: #f9fbf8;
}

.related-products h2 {
    text-align: center;
    font-size: 30px;
    color: #1e4d2b;
    margin-bottom: 40px;
}

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

.related-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.related-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.related-card h4 {
    color: #1e4d2b;
    font-size: 18px;
}

.related-card p {
    color: #4a6a4a;
    font-size: 14px;
    margin-top: 5px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-info h1 {
        font-size: 28px;
    }
    
    .product-icon {
        font-size: 80px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn-primary,
    .product-actions .btn-outline {
        text-align: center;
    }
    
    .specs-table td {
        font-size: 14px;
        padding: 8px 5px;
    }
}
/* ===== صفحه مواصفات ===== */

/* جدول کامل مواصفات */
.specs-full-table {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

.specs-full-table h2 {
    color: #1e4d2b;
    font-size: 26px;
    margin-bottom: 20px;
}

.specs-table-full {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.specs-table-full thead {
    background: #1e4d2b;
    color: white;
}

.specs-table-full th {
    padding: 12px 15px;
    text-align: right;
}

.specs-table-full td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.specs-table-full tbody tr:hover {
    background: #f5faf5;
}

.specs-table-full a {
    color: #2d6a3e;
    text-decoration: none;
    font-weight: 600;
}

.specs-table-full a:hover {
    color: #ffd700;
}

/* جزئیات مواصفات */
.specs-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.detail-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-right: 4px solid #2d6a3e;
}

.detail-box h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 10px;
}

.detail-box p {
    color: #3d5a3d;
    line-height: 1.8;
}

/* جدول مقایسه */
.comparison-table {
    background: #f9fbf8;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-table h2 {
    color: #1e4d2b;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .specs-table-full {
        font-size: 13px;
    }
    
    .specs-table-full th,
    .specs-table-full td {
        padding: 8px 10px;
    }
    
    .specs-full-table {
        padding: 15px;
        overflow-x: auto;
    }
    
    .comparison-table {
        padding: 15px;
        overflow-x: auto;
    }
    
    .specs-details {
        grid-template-columns: 1fr;
    }
}
/* ===== صفحات صادرات ===== */

/* صفحه اصلی صادرات */
.export-overview {
    padding: 60px 0;
    background: #f9fbf8;
}

.export-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.export-text h2 {
    color: #1e4d2b;
    font-size: 30px;
    margin-bottom: 20px;
}

.export-text p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 20px;
}

.export-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.export-features li {
    padding: 8px 0;
    color: #3d5a3d;
    font-size: 16px;
}

/* آمار صادرات */
.export-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid #ffd700;
}

.stat-card .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1e4d2b;
}

.stat-card .stat-label {
    font-size: 14px;
    color: #4a6a4a;
}

/* خطوات التصدير */
.export-steps {
    padding: 60px 0;
    background: white;
}

.export-steps h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 30px;
    margin-bottom: 40px;
}

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

.step-card {
    background: #f9fbf8;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #1e4d2b;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h3 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 8px;
}

.step-card p {
    color: #4a6a4a;
    font-size: 15px;
}

/* المدن المستهدفة */
.target-cities {
    padding: 60px 0;
    background: #f9fbf8;
}

.target-cities h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 30px;
    margin-bottom: 40px;
}

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

.city-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.city-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.city-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.city-card h3 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 5px;
}

.city-card p {
    color: #4a6a4a;
    font-size: 13px;
}

/* أسعار تنافسية */
.export-pricing {
    padding: 60px 0;
    background: white;
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 50px;
    border-radius: 16px;
}

.pricing-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.pricing-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.pricing-box .btn-primary {
    background: #ffd700;
    color: #1e4d2b;
}

.pricing-box .btn-primary:hover {
    background: white;
}

/* ===== صفحات المدن (بغداد، البصرة، النجف) ===== */

.city-page-header {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.city-page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.city-page-header p {
    font-size: 18px;
    opacity: 0.85;
}

.city-details {
    padding: 50px 0;
    background: #f9fbf8;
}

.city-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.city-text h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 20px;
}

.city-text p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* جدول الأسعار */
.price-table {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-table h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 15px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table table th {
    background: #1e4d2b;
    color: white;
    padding: 10px 12px;
    text-align: right;
    font-size: 14px;
}

.price-table table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.price-table table tr:hover td {
    background: #f5faf5;
}

.price-table table a {
    color: #2d6a3e;
    text-decoration: none;
}

.price-note {
    color: #888;
    font-size: 13px;
    margin-top: 10px;
}

/* اطلاعات تحویل */
.delivery-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.delivery-info h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 15px;
}

.delivery-info ul {
    list-style: none;
    padding: 0;
}

.delivery-info ul li {
    padding: 6px 0;
    color: #3d5a3d;
    font-size: 15px;
}

/* ستون کناری */
.city-aside {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card p {
    opacity: 0.85;
    margin-bottom: 20px;
}

.contact-card .btn-primary {
    background: #ffd700;
    color: #1e4d2b;
}

.contact-card .btn-primary:hover {
    background: white;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-right: 4px solid #ffd700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    color: #3d5a3d;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 10px;
}

.testimonial span {
    color: #888;
    font-size: 14px;
}

/* مناطق التوصيل */
.delivery-areas {
    padding: 50px 0;
    background: white;
}

.delivery-areas h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 30px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: #f5faf5;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #c8e6c9;
    color: #2d6a3e;
    font-size: 14px;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: #2d6a3e;
    color: white;
    cursor: default;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .export-grid,
    .city-content {
        grid-template-columns: 1fr;
    }
    
    .export-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .city-page-header h1 {
        font-size: 28px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
    
    .price-table table {
        font-size: 13px;
    }
    
    .price-table table th,
    .price-table table td {
        padding: 8px 10px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .export-stats {
        grid-template-columns: 1fr;
    }
}
/* ===== صفحات تخصصی ===== */

/* --- صفحه تغلیف --- */
.packaging-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.packaging-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.packaging-text h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 20px;
}

.packaging-text > p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
}

.packaging-methods {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.packaging-methods h3 {
    color: #1e4d2b;
    font-size: 22px;
    margin-bottom: 20px;
}

.method-card {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.method-card:last-child {
    border-bottom: none;
}

.method-icon {
    font-size: 32px;
    min-width: 45px;
}

.method-info h4 {
    color: #1e4d2b;
    font-size: 17px;
    margin-bottom: 4px;
}

.method-info p {
    color: #4a6a4a;
    font-size: 14px;
    line-height: 1.7;
}

/* --- صفحه شحن --- */
.logistics-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.logistics-text h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 20px;
}

.logistics-text > p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
}

.logistics-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.logistics-card {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-right: 4px solid #2d6a3e;
}

.logistics-icon {
    font-size: 32px;
    min-width: 45px;
}

.logistics-card h3 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 4px;
}

.logistics-card p {
    color: #4a6a4a;
    font-size: 14px;
    line-height: 1.7;
}

.logistics-features {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logistics-features h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 15px;
}

.logistics-features ul {
    list-style: none;
    padding: 0;
}

.logistics-features ul li {
    padding: 6px 0;
    color: #3d5a3d;
    font-size: 15px;
}

/* --- صفحه استشارات --- */
.consulting-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.consulting-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.consulting-text h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 20px;
}

.consulting-text > p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
}

.consulting-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.consulting-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.consulting-item h3 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 8px;
}

.consulting-item p {
    color: #4a6a4a;
    font-size: 14px;
    line-height: 1.7;
}

.consulting-benefits {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.consulting-benefits h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 15px;
}

.consulting-benefits ul {
    list-style: none;
    padding: 0;
}

.consulting-benefits ul li {
    padding: 6px 0;
    color: #3d5a3d;
    font-size: 15px;
}

/* تیم مشاوران */
.consultant {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.consultant:last-child {
    border-bottom: none;
}

.consultant-icon {
    font-size: 28px;
    min-width: 40px;
}

.consultant h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 2px;
}

.consultant p {
    color: #888;
    font-size: 13px;
}

/* --- صفحه شهادات --- */
.certificates-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.certificates-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.certificates-text h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 20px;
}

.certificates-text > p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
}

.certificates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.certificate-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cert-icon {
    font-size: 28px;
    min-width: 40px;
}

.certificate-item h3 {
    color: #1e4d2b;
    font-size: 17px;
    margin-bottom: 4px;
}

.certificate-item p {
    color: #4a6a4a;
    font-size: 14px;
    line-height: 1.7;
}

.certificates-process {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.certificates-process h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 15px;
}

.certificates-process ol {
    padding-right: 20px;
}

.certificates-process ol li {
    padding: 6px 0;
    color: #3d5a3d;
}

/* --- صفحه قیمت‌گذاری --- */
.pricing-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.price-update {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.update-badge {
    background: #ffd700;
    color: #1e4d2b;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

.price-update p {
    color: #3d5a3d;
    margin: 0;
}

/* جدول أسعار بزرگ */
.price-table-large {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-table-large h2 {
    color: #1e4d2b;
    font-size: 22px;
    margin-bottom: 20px;
}

.price-table-large table {
    width: 100%;
    border-collapse: collapse;
}

.price-table-large table th {
    background: #1e4d2b;
    color: white;
    padding: 12px 15px;
    text-align: right;
    font-size: 14px;
}

.price-table-large table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.price-table-large table tr:hover td {
    background: #f5faf5;
}

.price-table-large table a {
    color: #2d6a3e;
    text-decoration: none;
    font-weight: 600;
}

.price-table-large table a:hover {
    color: #ffd700;
}

.price-comparison {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-comparison h2 {
    color: #1e4d2b;
    font-size: 22px;
    margin-bottom: 20px;
}

.price-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.price-comparison table th {
    background: #1e4d2b;
    color: white;
    padding: 12px 15px;
    text-align: right;
    font-size: 14px;
}

.price-comparison table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.price-comparison table tr:hover td {
    background: #f5faf5;
}

.pricing-notes {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pricing-notes h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 15px;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes ul li {
    padding: 6px 0;
    color: #3d5a3d;
    font-size: 15px;
}

/* ===== عناصر مشترک ===== */

/* کارت‌های اطلاعاتی (برای تمام صفحات تخصصی) */
.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 10px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 6px 0;
    color: #3d5a3d;
    font-size: 14px;
    border-bottom: 1px solid #f5faf5;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card .note {
    color: #888;
    font-size: 12px;
    margin-top: 10px;
}

/* CTA مینی برای ستون کناری */
.cta-mini {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.cta-mini p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cta-mini .btn-primary {
    background: #ffd700;
    color: #1e4d2b;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-mini .btn-primary:hover {
    background: white;
}

/* خدمات مرتبط (برای تمام صفحات) */
.related-services {
    padding: 50px 0;
    background: white;
}

.related-services h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 40px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .packaging-grid,
    .logistics-grid,
    .consulting-grid,
    .certificates-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-services {
        grid-template-columns: 1fr;
    }
    
    .price-table-large table,
    .price-comparison table {
        font-size: 12px;
    }
    
    .price-table-large table th,
    .price-table-large table td,
    .price-comparison table th,
    .price-comparison table td {
        padding: 8px 10px;
    }
    
    .method-card {
        flex-direction: column;
        gap: 8px;
    }
    
    .logistics-card {
        flex-direction: column;
        gap: 8px;
    }
    
    .certificate-item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .price-table-large table {
        font-size: 11px;
    }
    
    .price-table-large table th,
    .price-table-large table td {
        padding: 6px 8px;
    }
    
    .price-comparison table {
        font-size: 11px;
    }
    
    .price-comparison table th,
    .price-comparison table td {
        padding: 6px 8px;
    }
}
/* ===== صفحات وبلاگ ===== */

.blog-post {
    padding: 50px 0;
    background: #f9fbf8;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== بخش اصلی مقاله ===== */
.blog-main article {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
}

.post-meta span {
    font-size: 14px;
    color: #4a6a4a;
}

.post-date, .post-category, .post-read-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-main h1 {
    font-size: 32px;
    color: #1e4d2b;
    line-height: 1.4;
    margin-bottom: 25px;
}

.post-image-placeholder {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.post-image-placeholder span {
    font-size: 64px;
    display: block;
    margin-bottom: 10px;
}

.post-image-placeholder p {
    color: #2d6a3e;
    font-size: 16px;
}

.post-content {
    color: #3d5a3d;
    line-height: 1.9;
}

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

.post-content h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin: 20px 0 10px;
}

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

.post-content ul {
    padding-right: 25px;
    margin-bottom: 20px;
}

.post-content ul li {
    margin-bottom: 8px;
    color: #3d5a3d;
}

.post-content ul li strong {
    color: #1e4d2b;
}

.post-note {
    background: #e8f5e9;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-right: 4px solid #2d6a3e;
}

.post-note p {
    margin: 0;
    color: #1e4d2b;
}

/* ===== بخش اشتراک‌گذاری ===== */
.post-share {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e8f5e9;
}

.post-share h4 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:nth-child(1) {
    background: #1877f2;
    color: white;
}

.share-btn:nth-child(2) {
    background: #000;
    color: white;
}

.share-btn:nth-child(3) {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* ===== ستون کناری وبلاگ ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 10px;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5faf5;
    color: #3d5a3d;
    font-size: 14px;
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.sidebar-card ul li a {
    color: #2d6a3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card ul li a:hover {
    color: #ffd700;
}

.sidebar-card.cta-card {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    text-align: center;
}

.sidebar-card.cta-card h3 {
    color: #ffd700;
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-card.cta-card p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.sidebar-card.cta-card .btn-primary {
    background: #ffd700;
    color: #1e4d2b;
}

.sidebar-card.cta-card .btn-primary:hover {
    background: white;
}

/* ===== صفحه اصلی وبلاگ (برای بعد) ===== */
.blog-page-header {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.blog-page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.blog-page-header p {
    font-size: 18px;
    opacity: 0.85;
}

.blog-grid {
    padding: 50px 0;
    background: #f9fbf8;
}

.blog-grid .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-list-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-list-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-list-item h2 a {
    color: #1e4d2b;
    text-decoration: none;
}

.blog-list-item h2 a:hover {
    color: #ffd700;
}

.blog-list-item p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
}

.blog-list-item .blog-item-meta {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .blog-post-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-main article {
        padding: 20px;
    }
    
    .blog-main h1 {
        font-size: 26px;
    }
    
    .post-meta {
        gap: 12px;
        font-size: 13px;
    }
    
    .post-image-placeholder {
        padding: 40px 15px;
    }
    
    .post-image-placeholder span {
        font-size: 48px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .blog-main article {
        padding: 15px;
    }
    
    .blog-main h1 {
        font-size: 22px;
    }
    
    .post-content h2 {
        font-size: 20px;
    }
    
    .blog-grid .blog-list {
        grid-template-columns: 1fr;
    }
}
/* ===== صفحه اصلی وبلاگ ===== */

/* هدر صفحه وبلاگ */
.blog-page-header {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.blog-page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.blog-page-header p {
    font-size: 18px;
    opacity: 0.85;
}

/* گرید مقالات */
.blog-grid {
    padding: 50px 0;
    background: #f9fbf8;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.blog-list-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-category {
    display: inline-block;
    background: #e8f5e9;
    color: #2d6a3e;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    align-self: flex-start;
}

.blog-list-item h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-list-item h2 a {
    color: #1e4d2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list-item h2 a:hover {
    color: #ffd700;
}

.blog-list-item p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.blog-item-meta {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e8f5e9;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.blog-item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* آمار وبلاگ */
.blog-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 2px solid #e8f5e9;
    margin-top: 20px;
}

.blog-stats .stat-box {
    text-align: center;
}

.blog-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1e4d2b;
}

.blog-stats .stat-label {
    font-size: 14px;
    color: #4a6a4a;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .blog-page-header h1 {
        font-size: 28px;
    }
    
    .blog-list {
        grid-template-columns: 1fr;
    }
    
    .blog-stats {
        gap: 20px;
    }
    
    .blog-stats .stat-number {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .blog-list-item {
        padding: 18px;
    }
    
    .blog-list-item h2 {
        font-size: 18px;
    }
    
    .blog-item-meta {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
    }
    
    .blog-stats .stat-number {
        font-size: 22px;
    }
}
/* ===== صفحه درباره ما ===== */

/* داستان شرکت */
.about-story {
    padding: 60px 0;
    background: #f9fbf8;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: #1e4d2b;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-text strong {
    color: #1e4d2b;
}

.about-image {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.about-icon-large {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.mini-stat {
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mini-stat span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1e4d2b;
}

.mini-stat p {
    font-size: 13px;
    color: #4a6a4a;
    margin: 0;
}

/* ===== رؤیت و رسالت ===== */
.about-vision {
    padding: 60px 0;
    background: white;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vision-box {
    background: #f9fbf8;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 4px solid #2d6a3e;
}

.vision-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.vision-box h3 {
    color: #1e4d2b;
    font-size: 22px;
    margin-bottom: 12px;
}

.vision-box p {
    color: #3d5a3d;
    line-height: 1.8;
    font-size: 15px;
}

.vision-box ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.vision-box ul li {
    padding: 6px 0;
    color: #3d5a3d;
    font-size: 15px;
}

/* ===== چرا ما؟ ===== */
.about-why {
    padding: 60px 0;
    background: #f9fbf8;
}

.about-why h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.why-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.why-item h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 8px;
}

.why-item p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== تیم ما ===== */
.about-team {
    padding: 60px 0;
    background: white;
}

.about-team h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 32px;
    margin-bottom: 8px;
}

.team-subtitle {
    text-align: center;
    color: #4a6a4a;
    font-size: 17px;
    margin-bottom: 40px;
}

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

.team-member {
    background: #f9fbf8;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.member-avatar {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.team-member h4 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 4px;
}

.team-member p {
    color: #2d6a3e;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.team-member span {
    color: #888;
    font-size: 13px;
}

/* ===== شرکاؤنا ===== */
.about-partners {
    padding: 60px 0;
    background: #f9fbf8;
}

.about-partners h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 32px;
    margin-bottom: 8px;
}

.about-partners > .container > p {
    text-align: center;
    color: #4a6a4a;
    font-size: 17px;
    margin-bottom: 40px;
}

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

.partner-item {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.partner-item span {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.partner-item p {
    color: #1e4d2b;
    font-weight: 600;
    font-size: 15px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text h2 {
        font-size: 26px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-mini {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
}
/* ===== صفحه خدمات ===== */

/* لیست خدمات */
.services-list {
    padding: 50px 0;
    background: #f9fbf8;
}

.service-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 35px 30px;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-right: 6px solid #2d6a3e;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(45, 106, 62, 0.12);
}

.service-icon {
    font-size: 48px;
    min-width: 70px;
    text-align: center;
    line-height: 1.2;
}

.service-content h3 {
    font-size: 24px;
    color: #1e4d2b;
    margin-bottom: 12px;
}

.service-content p {
    color: #3d5a3d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    margin-bottom: 15px;
}

.service-features li {
    font-size: 15px;
    color: #1e2f23;
}

.service-link {
    color: #2d6a3e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== چرا خدمات ما؟ ===== */
.services-why {
    padding: 60px 0;
    background: white;
}

.services-why h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why-service-item {
    background: #f9fbf8;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.why-service-item .why-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.why-service-item h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 8px;
}

.why-service-item p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .service-icon {
        font-size: 40px;
        text-align: right;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-features {
        flex-direction: column;
        gap: 5px;
    }
    
    .why-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .why-services-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== صفحه محصولات ===== */

/* مقدمه محصولات */
.products-intro {
    padding: 20px 0 40px;
    background: #f9fbf8;
}

.products-intro p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #3d5a3d;
    font-size: 18px;
    line-height: 1.9;
}

/* گرید محصولات */
.products-grid-section {
    padding: 0 0 50px;
    background: #f9fbf8;
}

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

.product-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-bottom: 4px solid #2d6a3e;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(45, 106, 62, 0.15);
}

.product-card-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 10px;
}

.product-card h3 {
    color: #1e4d2b;
    font-size: 22px;
    margin-bottom: 8px;
}

.product-card-badge {
    display: inline-block;
    background: #ffd700;
    color: #1e4d2b;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.product-card-specs {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
}

.product-card-specs span {
    background: #f5faf5;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-card-specials {
    border-bottom-color: #ffd700;
    background: #fafaf5;
}

.btn-outline-small {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #2d6a3e;
    color: #2d6a3e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: #2d6a3e;
    color: white;
}

/* ===== مزایای محصولات ===== */
.products-benefits {
    padding: 60px 0;
    background: white;
}

.products-benefits h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 32px;
    margin-bottom: 40px;
}

.products-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.products-benefits .benefit-item {
    background: #f9fbf8;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border-right: 4px solid #ffd700;
}

.products-benefits .benefit-item h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 8px;
}

.products-benefits .benefit-item p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-intro p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .products-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== صفحه تماس با ما ===== */

.contact-section {
    padding: 50px 0;
    background: #f9fbf8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ===== ستون اطلاعات تماس ===== */
.contact-info h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info > p {
    color: #4a6a4a;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 28px;
    min-width: 40px;
}

.contact-item h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: #3d5a3d;
    font-size: 15px;
    margin: 0;
}

.whatsapp-link {
    color: #25d366;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* ===== شبکه‌های اجتماعی ===== */
.contact-social {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-social h4 {
    color: #1e4d2b;
    font-size: 18px;
    margin-bottom: 12px;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #e8f5e9;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== فرم تماس ===== */
.contact-form {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.contact-form h2 {
    color: #1e4d2b;
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-form > p {
    color: #4a6a4a;
    font-size: 15px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: #1e4d2b;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e8e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fafcfa;
    color: #1e2f23;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a3e;
    box-shadow: 0 0 0 3px rgba(45, 106, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    appearance: auto;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 18px;
}

/* ===== نقشه ===== */
.contact-map {
    padding: 50px 0;
    background: white;
}

.contact-map h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 30px;
}

.map-placeholder {
    background: #f5faf5;
    padding: 60px 20px;
    text-align: center;
    border-radius: 16px;
    border: 2px dashed #c8e6c9;
}

.map-placeholder span {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
}

.map-placeholder p {
    color: #3d5a3d;
    font-size: 18px;
}

.map-note {
    font-size: 14px !important;
    color: #888 !important;
    margin-top: 8px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item h4 {
        font-size: 15px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
    
    .map-placeholder {
        padding: 40px 15px;
    }
    
    .map-placeholder span {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-form h2 {
        font-size: 22px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}
/* ===== صفحه درخواست قیمت (بدون عدد) ===== */

.pricing-request {
    padding: 50px 0;
    background: #f9fbf8;
}

/* ===== باکس اصلی ===== */
.pricing-main-box {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    margin-bottom: 50px;
    border-bottom: 4px solid #2d6a3e;
}

.pricing-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
}

.pricing-main-box h2 {
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 15px;
}

.pricing-main-box p {
    color: #3d5a3d;
    font-size: 17px;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto 25px;
}

.pricing-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-highlights span {
    background: #e8f5e9;
    color: #1e4d2b;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}

/* ===== سه گزینه ارتباطی ===== */
.pricing-contact-options {
    margin-bottom: 50px;
}

.pricing-contact-options h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 35px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.option-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #2d6a3e;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(45, 106, 62, 0.12);
}

.option-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.option-card h3 {
    color: #1e4d2b;
    font-size: 20px;
    margin-bottom: 8px;
}

.option-card p {
    color: #4a6a4a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.option-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.option-note {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 12px;
}

/* کارت تماس */
.call-card {
    border-top-color: #2d6a3e;
}

.phone-btn {
    background: #1e4d2b;
    color: white;
}

.phone-btn:hover {
    background: #2d6a3e;
    transform: scale(1.02);
}

/* کارت واتساپ */
.whatsapp-card {
    border-top-color: #25d366;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.02);
}

/* کارت فرم */
.form-card {
    border-top-color: #ffd700;
}

.form-btn {
    background: #ffd700;
    color: #1e4d2b;
}

.form-btn:hover {
    background: #f0c800;
    transform: scale(1.02);
}

/* ===== عوامل تعیین قیمت ===== */
.price-factors {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 50px;
}

.price-factors h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 30px;
}

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

.factor-card {
    background: #f9fbf8;
    padding: 20px 18px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.factor-card:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
}

.factor-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.factor-card h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 5px;
}

.factor-card p {
    color: #4a6a4a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== دعوت نهایی ===== */
.pricing-final-cta {
    margin-bottom: 20px;
}

.final-cta-box {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e);
    color: white;
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(30, 77, 43, 0.25);
}

.final-cta-box h3 {
    font-size: 30px;
    color: #ffd700;
    margin-bottom: 12px;
}

.final-cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

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

.final-buttons .btn-primary {
    background: #ffd700;
    color: #1e4d2b;
    padding: 14px 40px;
    font-size: 18px;
}

.final-buttons .btn-primary:hover {
    background: white;
}

.final-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.final-buttons .btn-secondary:hover {
    background: white;
    color: #1e4d2b;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .pricing-main-box {
        padding: 30px 20px;
    }
    
    .pricing-main-box h2 {
        font-size: 24px;
    }
    
    .pricing-highlights {
        gap: 10px;
    }
    
    .pricing-highlights span {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .factors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .final-cta-box {
        padding: 30px 20px;
    }
    
    .final-cta-box h3 {
        font-size: 24px;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-buttons .btn-primary,
    .final-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-main-box p {
        font-size: 15px;
    }
}
/* ===== صفحه دليل الزراعة في بغداد ===== */

.guide-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.guide-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== ستون اصلی ===== */
.guide-main {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.guide-intro {
    font-size: 17px;
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f5e9;
}

/* بخش‌های راهنما */
.guide-section {
    margin-bottom: 35px;
}

.guide-section h2 {
    color: #1e4d2b;
    font-size: 26px;
    margin-bottom: 15px;
    padding-right: 15px;
    border-right: 4px solid #2d6a3e;
}

.section-content h3 {
    color: #2d6a3e;
    font-size: 20px;
    margin: 20px 0 10px;
}

.section-content p {
    color: #3d5a3d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.section-content ul {
    padding-right: 25px;
    list-style: none;
}

.section-content ul li {
    color: #3d5a3d;
    padding: 6px 0;
    line-height: 1.7;
    position: relative;
    padding-right: 20px;
}

.section-content ul li::before {
    content: "•";
    color: #2d6a3e;
    font-weight: 700;
    position: absolute;
    right: 0;
}

.section-content ul li strong {
    color: #1e4d2b;
}

/* گرید محصولات */
.crops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.crop-item {
    display: flex;
    gap: 15px;
    background: #f9fbf8;
    padding: 15px;
    border-radius: 12px;
    align-items: flex-start;
}

.crop-icon {
    font-size: 28px;
    min-width: 40px;
}

.crop-item h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 2px;
}

.crop-item p {
    color: #4a6a4a;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* روش‌های آبیاری */
.irrigation-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.method-item {
    background: #f9fbf8;
    padding: 15px 18px;
    border-radius: 12px;
    border-right: 4px solid #2d6a3e;
}

.method-item h4 {
    color: #1e4d2b;
    font-size: 17px;
    margin-bottom: 4px;
}

.method-item p {
    color: #4a6a4a;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

/* تلمیح */
.guide-tip {
    background: #e8f5e9;
    padding: 20px 25px;
    border-radius: 12px;
    margin-top: 20px;
    border-right: 4px solid #2d6a3e;
}

.guide-tip p {
    color: #1e4d2b;
    margin-bottom: 12px;
}

.btn-tip {
    display: inline-block;
    background: #1e4d2b;
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-tip:hover {
    background: #ffd700;
    color: #1e4d2b;
}

/* لیست نکات */
.tips-list {
    list-style: none !important;
    padding: 0 !important;
}

.tips-list li {
    padding: 10px 0 !important;
    border-bottom: 1px solid #e8f5e9;
    font-size: 15px;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li strong {
    color: #1e4d2b;
}

/* ===== ستون کناری ===== */
.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-info ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 !important;
}

.quick-info ul li strong {
    color: #1e4d2b;
}

/* کارت تماس در ستون کناری */
.contact-card {
    background: linear-gradient(135deg, #1e4d2b, #2d6a3e) !important;
    color: white !important;
    text-align: center;
}

.contact-card h3 {
    color: #ffd700 !important;
    border-bottom-color: rgba(255,255,255,0.2) !important;
}

.contact-card p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-card .btn-primary {
    background: #ffd700;
    color: #1e4d2b;
}

.contact-card .btn-primary:hover {
    background: white;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-main {
        padding: 25px 20px;
    }
    
    .crops-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-section h2 {
        font-size: 22px;
    }
    
    .section-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .guide-main {
        padding: 18px 15px;
    }
    
    .guide-section h2 {
        font-size: 20px;
    }
    
    .section-content ul li {
        font-size: 14px;
    }
    
    .method-item {
        padding: 12px 15px;
    }
}
/* ===== صفحه متطلبات تصدير الخيار ===== */

.requirements-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== ستون اصلی ===== */
.requirements-main {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.requirements-intro {
    font-size: 17px;
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f5e9;
}

/* بخش‌ها */
.req-section {
    margin-bottom: 35px;
}

.req-section h2 {
    color: #1e4d2b;
    font-size: 24px;
    margin-bottom: 15px;
    padding-right: 15px;
    border-right: 4px solid #2d6a3e;
}

.req-content p {
    color: #3d5a3d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.req-content ul {
    padding-right: 25px;
    list-style: none;
}

.req-content ul li {
    color: #3d5a3d;
    padding: 6px 0;
    line-height: 1.7;
    position: relative;
    padding-right: 20px;
}

.req-content ul li::before {
    content: "•";
    color: #2d6a3e;
    font-weight: 700;
    position: absolute;
    right: 0;
}

.req-content ul li strong {
    color: #1e4d2b;
}

/* لیست مدارک */
.req-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-item {
    display: flex;
    gap: 18px;
    background: #f9fbf8;
    padding: 15px 18px;
    border-radius: 12px;
    align-items: flex-start;
    border-right: 3px solid #2d6a3e;
}

.req-icon {
    font-size: 28px;
    min-width: 40px;
}

.req-item h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 3px;
}

.req-item p {
    color: #4a6a4a;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* تلمیح */
.req-tip {
    background: #e8f5e9;
    padding: 18px 22px;
    border-radius: 12px;
    margin-top: 15px;
    border-right: 4px solid #2d6a3e;
}

.req-tip p {
    color: #1e4d2b;
    margin-bottom: 10px;
}

/* ===== ستون کناری ===== */
.requirements-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-req ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 !important;
}

.quick-req ul li strong {
    color: #1e4d2b;
}

/* کارت FAQ */
.faq-card .faq-item {
    padding: 10px 0;
    border-bottom: 1px solid #e8f5e9;
}

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

.faq-question {
    color: #1e4d2b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.faq-answer {
    color: #4a6a4a;
    font-size: 13px;
    line-height: 1.6;
}

.faq-more {
    display: inline-block;
    margin-top: 12px;
    color: #2d6a3e;
    font-weight: 600;
    text-decoration: none;
}

.faq-more:hover {
    color: #ffd700;
}

/* ===== بخش FAQ Schema (پایین صفحه) ===== */
.faq-schema-section {
    padding: 50px 0;
    background: white;
}

.faq-schema-section h2 {
    text-align: center;
    color: #1e4d2b;
    font-size: 28px;
    margin-bottom: 35px;
}

.faq-schema-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-schema-item {
    background: #f9fbf8;
    padding: 18px 22px;
    margin-bottom: 12px;
    border-radius: 12px;
    border-right: 4px solid #2d6a3e;
    transition: all 0.3s ease;
}

.faq-schema-item:hover {
    background: #e8f5e9;
}

.faq-schema-q {
    color: #1e4d2b;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 5px;
}

.faq-schema-a {
    color: #3d5a3d;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-main {
        padding: 25px 20px;
    }
    
    .req-section h2 {
        font-size: 21px;
    }
    
    .req-item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .requirements-main {
        padding: 18px 15px;
    }
    
    .req-section h2 {
        font-size: 19px;
    }
    
    .faq-schema-q {
        font-size: 15px;
    }
    
    .faq-schema-a {
        font-size: 14px;
    }
}
/* ===== صفحه الزراعة المستدامة ===== */

.sustainability-content {
    padding: 50px 0;
    background: #f9fbf8;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== ستون اصلی ===== */
.sustainability-main {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sustainability-intro {
    font-size: 17px;
    color: #3d5a3d;
    line-height: 1.9;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f5e9;
}

.sustainability-intro p {
    margin-bottom: 12px;
}

/* بخش‌ها */
.sus-section {
    margin-bottom: 35px;
}

.sus-section h2 {
    color: #1e4d2b;
    font-size: 24px;
    margin-bottom: 15px;
    padding-right: 15px;
    border-right: 4px solid #2d6a3e;
}

.sus-content p {
    color: #3d5a3d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.sus-content ul {
    padding-right: 25px;
    list-style: none;
}

.sus-content ul li {
    color: #3d5a3d;
    padding: 6px 0;
    line-height: 1.7;
    position: relative;
    padding-right: 20px;
}

.sus-content ul li::before {
    content: "•";
    color: #2d6a3e;
    font-weight: 700;
    position: absolute;
    right: 0;
}

.sus-content ul li strong {
    color: #1e4d2b;
}

/* گرید فواید */
.benefits-grid-sus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.benefit-card-sus {
    background: #f9fbf8;
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid #2d6a3e;
    transition: all 0.3s ease;
}

.benefit-card-sus:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.benefit-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.benefit-card-sus h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 4px;
}

.benefit-card-sus p {
    color: #4a6a4a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* اصول */
.principle-item {
    display: flex;
    gap: 18px;
    background: #f9fbf8;
    padding: 15px 18px;
    border-radius: 12px;
    margin-bottom: 10px;
    align-items: flex-start;
    border-right: 3px solid #2d6a3e;
}

.principle-icon {
    font-size: 28px;
    min-width: 40px;
}

.principle-item h4 {
    color: #1e4d2b;
    font-size: 16px;
    margin-bottom: 3px;
}

.principle-item p {
    color: #4a6a4a;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* چالش‌ها و راه‌حل‌ها */
.challenge-solution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.challenge-item {
    background: #f9fbf8;
    padding: 18px 20px;
    border-radius: 12px;
    border-right: 4px solid #ffd700;
}

.challenge-icon {
    font-size: 28px;
    display: inline-block;
    margin-left: 10px;
}

.challenge-item h4 {
    color: #1e4d2b;
    font-size: 16px;
    display: inline;
}

.challenge-item p {
    color: #3d5a3d;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.solution-tag {
    display: inline-block;
    background: #2d6a3e;
    color: white;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin: 5px 0;
}

/* تلمیح */
.sus-tip {
    background: #e8f5e9;
    padding: 18px 22px;
    border-radius: 12px;
    margin-top: 15px;
    border-right: 4px solid #2d6a3e;
}

.sus-tip p {
    color: #1e4d2b;
    margin-bottom: 10px;
}

/* ===== ستون کناری ===== */
.sustainability-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-sus ul li {
    padding: 6px 0 !important;
    color: #3d5a3d;
}

.benefits-sus ul li {
    padding: 6px 0 !important;
    color: #3d5a3d;
}

.benefits-sus ul li::before {
    content: "✅ ";
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-main {
        padding: 25px 20px;
    }
    
    .sus-section h2 {
        font-size: 21px;
    }
    
    .benefits-grid-sus {
        grid-template-columns: 1fr;
    }
    
    .principle-item {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .sustainability-main {
        padding: 18px 15px;
    }
    
    .sus-section h2 {
        font-size: 19px;
    }
    
    .challenge-item h4 {
        display: block;
        margin-top: 5px;
    }
}
/* ===== منوی همبرگری برای موبایل ===== */

/* دکمه همبرگری (در موبایل نمایش داده می‌شود) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* انیمیشن تبدیل دکمه به X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* استایل منو در موبایل */
@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    nav.open {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 5px;
        padding: 15px 0 5px 0;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 8px;
        text-align: center;
    }
    
    nav ul li a:hover {
        background: rgba(255,255,255,0.15);
    }
    
    /* کوچک‌تر کردن لوگو در موبایل */
    .logo h1 {
        font-size: 20px;
    }
    
    .logo p {
        font-size: 12px;
    }
}