/*
Theme Name: pardisbusiness
Theme URI: https://pardisbusiness.com/
Author: پری سان 
Author URI: https://parisan-ads.ir/
Description: یک قالب تجاری سبک برای کسب‌وکار پاردیس.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: pardisbusiness
*/

:root {
    --primary: #232459;
    --accent: #f8de0e;
    --dark: #1a1a3d;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazir', 'Segoe UI', Tahoma, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: #333;
    overflow-x: hidden;
    line-height: 1.7;
    font-family: Tahoma, sans-serif;
}

/* پیش‌لودر */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(248, 222, 14, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* هدر حرفه‌ای */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header-scrolled {
    padding: 12px 0;
    background: rgba(35, 36, 89, 0.97);
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
}

.logo-icon {
    background: var(--accent);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(15deg);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
    font-size: 16px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s;
    border-radius: 2px;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent);
}

.header-cta {
    display: flex;
    gap: 18px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: #f5d50c;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

/* منوی موبایل */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* بقیه استایل‌ها مانند نمونه شما */
/* به دلیل محدودیت space، بقیه CSS رو در فایل جداگانه میزارم */