/* --- تنظیمات اولیه و متغیرها --- */
:root {
    /* پالت رنگی صنعتی */
    --primary-blue: #002a5c;    /* سرمه‌ای تیره - نماد اعتماد */
    --accent-yellow: #ffc107;   /* زرد صنعتی - نماد انرژی */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #f9f9f9;
}

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

body {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* کلاس نگهدارنده برای وسط‌چین کردن محتوا */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- هدر و نویگیشن --- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0; /* کاهش پدینگ بالا و پایین برای ظرافت */
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px; /* ارتفاع لوگو را تنظیم می‌کند */
    width: auto;  /* عرض به نسبت ارتفاع تغییر کند */
    object-fit: contain;
}

/* تنظیمات منو */
.navbar .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links li:last-child {
    margin-left: 0;
}

.navbar .nav-links li a {
    font-weight: 500;
    font-size: 0.95rem; /* کمی کوچک‌تر کردن فونت برای جا شدن همه آیتم‌ها */
    transition: color 0.3s;
    white-space: nowrap; /* جلوگیری از شکستن متن */
}

.navbar .nav-links li a:hover {
    color: var(--accent-yellow);
}

/* دکمه تماس با ما در منو */
.btn-contact {
    background: var(--primary-blue);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background: #004080; /* رنگ کمی روشن‌تر برای هاور */
}

/* --- فاصله‌گذاری عمومی سکشن‌ها --- */
.section-padding {
    padding: 4rem 0;
}

.bg-white { background-color: #ffffff; }
.bg-gray { background-color: #f9f9f9; }

/* --- Hero Section (بخش اصلی بالا) --- */
.hero-section {
    height: 90vh; /* ارتفاع 90 درصد صفحه */
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px; /* فاصله برای هدر ثابت */
}

/* لایه تاریک روی تصویر برای خوانایی متن */
.hero-overlay {
	background: rgba(0, 0, 0, 0.5); /* یک لایه دودی با ۵۰٪ شفافیت */
    height: 100%;
	width: 100%;
    display: flex;
    align-items: center;
	justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

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

.hero-content .lead-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* دکمه‌ها */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    margin: 5px;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: #e0a800;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

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

/* --- Services Section (بخش خدمات) --- */
.services-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

/* استفاده از CSS Grid برای چیدمان کارت‌ها */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, border-bottom 0.3s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px); /* حرکت به بالا هنگام هاور */
    border-bottom: 3px solid var(--accent-yellow);
}

.icon-box {
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

/* رنگ‌بندی آیکون‌ها و پس‌زمینه لطیف هرکدام */
.color-test { color: #0056b3 !important; }
.icon-box.color-test { background-color: #e6f0fa; }

.color-energy { color: #27ae60 !important; }
.icon-box.color-energy { background-color: #e8f8f0; }

.color-solar { color: #d35400 !important; }
.icon-box.color-solar { background-color: #fef5ec; }

.color-sf6 { color: #16a085 !important; }
.icon-box.color-sf6 { background-color: #e8f6f3; }

.color-light { color: #c0392b !important; }
.icon-box.color-light { background-color: #fceae9; }

.color-mgmt { color: #f39c12 !important; }
.icon-box.color-mgmt { background-color: #fef9eb; }

.color-equip { color: #8e44ad !important; }
.icon-box.color-equip { background-color: #f5eef8; }

.color-calib { color: #2980b9 !important; }
.icon-box.color-calib { background-color: #ebf5fb; }

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* استایل فوتر و آیکون‌ها */
footer {
    background: var(--primary-blue);
    color: #fff;
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 20px auto;
    width: 50%;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.8rem; /* اندازه آیکون‌ها */
    margin: 0 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* افکت رنگی هنگام نگه داشتن موس روی هر آیکون */
.social-links a:hover {
    color: var(--accent-yellow);
    transform: translateY(-5px);
}

/* --- استایل‌های موبایل و منوی همبرگری --- */

/* تنظیمات اولیه دکمه همبرگری (در دسکتاپ مخفی است) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-blue); /* رنگ خطوط منو */
}

/* --- مدیا کوئری: دستورات مخصوص موبایل و تبلت (زیر 768 پیکسل) --- */
@media (max-width: 768px) {
    /* نمایش دکمه همبرگری */
    .hamburger {
        display: block;
        margin-left: 20px; /* فاصله از چپ */
    }

    /* غیرفعال کردن نمایش دکمه همبرگری وقتی منو باز نیست */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* تغییر منو به حالت عمودی و مخفی کردن آن */
    .nav-links {
        position: fixed;
        right: -100%; /* منو را کامل به بیرون کادر می‌برد */
        top: 80px; /* فاصله از بالای صفحه (ارتفاع هدر) */
        flex-direction: column;
        background-color: #fff; /* پس‌زمینه سفید */
        width: 100%;
        height: calc(100vh - 80px); /* تمام ارتفاع باقی‌مانده */
        text-align: center;
        transition: 0.3s; /* انیمیشن نرم */
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding-top: 2rem;
    }

    /* وقتی کلاس active اضافه شد (با جاوااسکریپت)، منو بیاید داخل */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0; /* فاصله بین آیتم‌های منو در موبایل */
    }

    /* کوچک کردن فونت‌های تایتل در موبایل */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .lead-text {
        font-size: 1rem;
    }
}

/* استایل لوگوی وسط بنر */
.banner-logo {
    width: 350px; 
    height: auto; 
	filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5)); 
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

/* تنظیم برای موبایل */
@media (max-width: 768px) {
    .banner-logo {
        width: 150px; /* اندازه لوگو در موبایل */
    }
}

/* انیمیشن ملایم برای ورود لوگو */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* هایلایت لینک فعال در منو */
.nav-links li a.active {
    color: var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
}

/* --- بخش محصولات --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    text-align: right;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-content p {
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-content .btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* --- صفحه تماس با ما --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info h2, .contact-form h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
}

.contact-info ul li i {
    color: var(--accent-yellow);
    margin-left: 15px;
    font-size: 1.2rem;
    width: 20px; /* For alignment */
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Vazirmatn', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* Responsive for contact page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        margin-bottom: 2rem;
    }
}

/* --- صفحه خدمات (اختصاصی) --- */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s;
}

.service-icon.color-test { background-color: #e6f0fa; }
.service-icon.color-energy { background-color: #e8f8f0; }
.service-icon.color-solar { background-color: #fef5ec; }
.service-icon.color-sf6 { background-color: #e8f6f3; }
.service-icon.color-light { background-color: #fceae9; }
.service-icon.color-mgmt { background-color: #fef9eb; }
.service-icon.color-equip { background-color: #f5eef8; }
.service-icon.color-calib { background-color: #ebf5fb; }

.service-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    line-height: 1.8;
}

/* --- صفحه درباره ما --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.about-text h3 i {
    margin-left: 10px;
    color: var(--accent-yellow);
}

.about-text p {
    text-align: justify;
    line-height: 1.9;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        margin-top: 2rem;
    }
}

/* --- صفحه پروژه‌ها --- */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* برای آیتم‌های زوج، جای عکس و متن عوض می‌شود */
.project-item:nth-child(even) {
    grid-template-columns: 300px 1fr;
}

.project-item:nth-child(even) .project-image {
    order: -1;
}

.project-details h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.project-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .project-item, .project-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .project-item:nth-child(even) .project-image {
        order: 0;
    }
}

/* --- صفحه گالری --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

/* --- بخش برندها در صفحه محصولات --- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.brand-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.brand-logo-text {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.brand-logo-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    width: 100%;
    background: transparent;
}

.brand-card-logo {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

.brand-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #f1f5f9;
    color: #475569;
    padding: 3px 12px;
    border-radius: 9999px;
    margin-bottom: 1rem;
    display: inline-block;
}

.brand-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- استایل‌های اختصاصی صفحات برندها (Brand Pages) --- */
.brand-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--accent-yellow);
}

.brand-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.brand-hero .country-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1.5rem;
}

.brand-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.brand-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 992px) {
    .brand-container {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }
}

.brand-main-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.brand-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    height: fit-content;
}

.brand-section-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-tech-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.brand-tech-list li {
    padding: 12px 15px;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

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

.brand-tech-list li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 3px;
}

.brand-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 2.5rem;
}

.brand-feature-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.brand-feature-item i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.brand-feature-item h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.brand-feature-item p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.inquiry-form .form-group {
    margin-bottom: 1.2rem;
}

.inquiry-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #334155;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
    border-color: var(--primary-blue);
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.brand-category-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.brand-cat-btn {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.brand-cat-btn.active,
.brand-cat-btn:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.brand-section-header {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin: 4rem 0 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.brand-section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-yellow);
}

/* --- محصولات و خدمات در صفحه اصلی با پس‌زمینه تصویری --- */
.products-bg-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 15, 35, 0.88), rgba(0, 42, 92, 0.92)), url('images/products_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
}

.products-bg-section .section-title {
    color: #ffffff !important;
}

.products-bg-section .brand-cat-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.products-bg-section .brand-cat-btn:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    border-color: var(--accent-yellow);
}

.services-bg-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 15, 35, 0.88), rgba(0, 42, 92, 0.92)), url('images/services_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
}

.services-bg-section .section-title {
    color: #ffffff !important;
}

/* کارت‌های خدمات روی پس‌زمینه تیره */
.services-bg-section .service-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-bg-section .service-card p {
    color: #64748b !important;
}


