/* ============================================================
   فایل استایل اصلی - صادرات شحم الغنم والدنبلة اللحمية إلى العراق
   ============================================================ */

/* ============================================================
   تنظیمات کلی و ریست
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4a2810;
    --primary-dark: #2d1808;
    --primary-light: #6a3a1a;
    --secondary: #d4a050;
    --secondary-light: #e8c070;
    --secondary-dark: #b8883a;
    --bg-light: #fdf8f0;
    --bg-white: #ffffff;
    --text-dark: #2a1a0a;
    --text-muted: #6a5a4a;
    --text-light: #8a7a6a;
    --border-color: #e8ddd0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 35px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
    --font: 'Noto Sans Arabic', 'Tahoma', 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    direction: rtl;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   دکمه‌ها
   ============================================================ */

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    text-align: center;
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 40, 16, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    text-align: center;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    font-family: var(--font);
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================================
   هدر و ناوبری
   ============================================================ */

header {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.logo img {
    border-radius: 8px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.logo p {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
}

/* ===== منوی اصلی ===== */
nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
    border-bottom-color: var(--secondary);
}

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

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.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);
}

/* ============================================================
   مسیر راهنما (Breadcrumb)
   ============================================================ */

.breadcrumb {
    background: var(--bg-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    margin: 0 5px;
}

/* ============================================================
   هدر صفحات
   ============================================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

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

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

/* ============================================================
   بخش قهرمان (Hero)
   ============================================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 80px 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.9;
}

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

/* ============================================================
   آمار و ارقام
   ============================================================ */

.stats {
    background: var(--bg-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box .stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
}

.stat-box .stat-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   محصولات
   ============================================================ */

.products-preview {
    padding: 70px 0;
    background: var(--bg-light);
    text-align: center;
}

.products-preview h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.products-preview > .container > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.product-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid var(--secondary);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary);
}

.product-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.product-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.product-card a:hover {
    color: var(--secondary);
}

/* ============================================================
   شهرها
   ============================================================ */

.cities-section {
    padding: 70px 0;
    background: var(--bg-white);
    text-align: center;
}

.cities-section h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cities-section > .container > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.city-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

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

.city-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.city-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.city-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.city-card a:hover {
    color: var(--secondary);
}

/* ============================================================
   مزایا
   ============================================================ */

.benefits-section {
    padding: 70px 0;
    background: var(--bg-light);
    text-align: center;
}

.benefits-section h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

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

.benefit-item {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-right: 4px solid var(--secondary);
    text-align: right;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   بخش بهداشت
   ============================================================ */

.health-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.health-box {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 40px 35px;
    border-radius: var(--radius);
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(74, 40, 16, 0.25);
}

.health-icon {
    font-size: 48px;
    min-width: 60px;
}

.health-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.health-box p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.8;
}

.health-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--secondary);
    font-weight: 600;
}

.health-link:hover {
    color: #fff;
}

/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    padding: 60px 0;
    background: var(--primary-dark);
}

.cta-box {
    background: var(--primary);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

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

.cta-box .btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
}

.cta-box .btn-primary:hover {
    background: var(--secondary-light);
    box-shadow: 0 8px 25px rgba(212, 160, 80, 0.4);
}

/* ============================================================
   تخصص بهداشتی (صفحه درباره ما)
   ============================================================ */

.health-expertise {
    padding: 60px 0;
    background: var(--bg-white);
}

.health-expertise-box {
    display: flex;
    gap: 30px;
    background: var(--bg-light);
    padding: 40px 35px;
    border-radius: var(--radius);
    border-right: 5px solid var(--secondary);
    align-items: flex-start;
}

.health-icon-large {
    font-size: 64px;
    min-width: 80px;
}

.health-expertise-box h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.health-expertise-box p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.health-expertise-box ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.health-expertise-box ul li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.health-quote {
    font-style: italic;
    font-size: 18px !important;
    color: var(--primary) !important;
    padding: 15px 20px;
    background: rgba(212, 160, 80, 0.1);
    border-radius: var(--radius-sm);
    border-right: 3px solid var(--secondary);
}

/* ============================================================
   درباره ما - داستان
   ============================================================ */

.about-story {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.about-text h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-text strong {
    color: var(--primary-dark);
}

.about-image {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
}

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

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

.mini-stat {
    background: var(--bg-white);
    padding: 15px 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.mini-stat span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.mini-stat p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   درباره ما - رؤیت و رسالت
   ============================================================ */

.about-vision {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.vision-box {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    border-bottom: 4px solid var(--secondary);
}

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

.vision-box h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 12px;
}

.vision-box p {
    color: var(--text-muted);
    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: var(--text-muted);
    font-size: 15px;
}

/* ============================================================
   درباره ما - چرا ما؟
   ============================================================ */

.about-why {
    padding: 60px 0;
    background: var(--bg-light);
}

.about-why h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

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

.why-item {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.why-item h3 {
    color: var(--primary-dark);
    font-size: 20px;
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   درباره ما - تیم
   ============================================================ */

.about-team {
    padding: 60px 0;
    background: var(--bg-white);
}

.about-team h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.team-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.team-member {
    background: var(--bg-light);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid var(--secondary);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.team-member h4 {
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 4px;
}

.team-member p {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.team-member span {
    color: var(--text-light);
    font-size: 13px;
}

/* ============================================================
   درباره ما - شرکا
   ============================================================ */

.about-partners {
    padding: 60px 0;
    background: var(--bg-light);
}

.about-partners h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.about-partners > .container > p {
    text-align: center;
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 40px;
}

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

.partner-item {
    background: var(--bg-white);
    padding: 25px 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.partner-item p {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
}

/* ============================================================
   تماس با ما
   ============================================================ */

.contact-section {
    padding: 50px 0;
    background: var(--bg-light);
}

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

.contact-info h2 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-hover);
}

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

.contact-item h4 {
    color: var(--primary-dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-muted);
    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-health {
    display: flex;
    gap: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    align-items: flex-start;
}

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

.contact-health h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.contact-health p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== شبکه‌های اجتماعی ===== */
.contact-social {
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.contact-social h4 {
    color: var(--primary-dark);
    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: var(--bg-light);
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== فرم تماس ===== */
.contact-form {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-dark);
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: var(--primary-dark);
    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 var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 40, 16, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

/* ============================================================
   نقشه
   ============================================================ */

.contact-map {
    padding: 50px 0;
    background: var(--bg-white);
}

.contact-map h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 30px;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
    border-radius: var(--radius);
    border: 2px dashed var(--border-color);
}

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

.map-placeholder p {
    color: var(--text-muted);
    font-size: 18px;
}

.map-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
    margin-top: 8px;
}

/* ============================================================
   فوتر
   ============================================================ */

footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.9;
    opacity: 0.8;
}

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

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    opacity: 0.6;
}

/* ============================================================
   ریسپانسیو
   ============================================================ */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    /* هدر و منو */
    .hamburger {
        display: flex;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: var(--primary-dark);
        border-radius: 0 0 12px 12px;
    }

    nav.open {
        max-height: 500px;
        padding: 15px 0;
    }

    nav ul {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 16px;
        text-align: center;
        border-radius: 8px;
        border-bottom: none;
    }

    nav ul li a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* قهرمان */
    .hero {
        padding: 50px 0;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    /* صفحات */
    .page-header h1 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .health-expertise-box {
        flex-direction: column;
    }

    .health-box {
        flex-direction: column;
    }

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

    .stats .container {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        display: inline-block;
    }

    .stats .container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo p {
        font-size: 10px;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-item {
        padding: 15px;
    }
}

/* ============================================================
   کلاس‌های کمکی
   ============================================================ */

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
/* ===== تصویر پس‌زمینه هیرو ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    /* یا اگر تصویر می‌خواهید: */
    /* background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}