/*
Theme Name: قالب شرکت من
Template: astra
*/
@import url("../astra/style.css");

/* استایل‌های اختصاصی ما از اینجا شروع میشه */
/* استایل‌های پایه */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* هدر */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
}

/* بخش Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

/* خدمات */
.services {
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}
/* بهبود هدر */
.site-header {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* بهبود کارت خدمات */
.service-card {
    transition: all 0.4s ease !important;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
}

/* بهبود دکمه‌ها */
.btn-primary {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
}

.btn-secondary {
    border: 2px solid #3498db !important;
    color: #3498db !important;
}

.btn-secondary:hover {
    background: #3498db !important;
    color: white !important;
}
/* راست چین کردن کل سایت */
body {
    direction: rtl;
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* راست چین کردن منو */
.main-nav ul {
    direction: rtl;
}

/* راست چین کردن محتوای صفحات */
.page-body, 
.about-text,
.service-item-detailed,
.footer-section ul {
    direction: rtl;
    text-align: right;
}

/* راست چین کردن لیست‌ها */
.values-list,
.service-card ul,
.service-item-detailed ul {
    direction: rtl;
    text-align: right;
    padding-right: 0;
}

/* راست چین کردن فوتر */
.footer-section {
    direction: rtl;
}

.contact-item {
    direction: rtl;
    text-align: right;
}