* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #0a0a0a;
    color: #e0d5c1;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    background: #0a0a0a;
    border-bottom: 1px solid #c9a84c;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-text span { color: #e0d5c1; }

nav.desktop-menu ul { list-style: none; display: flex; gap: 30px; }

nav.desktop-menu ul li a {
    color: #e0d5c1;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav.desktop-menu ul li a:hover { color: #c9a84c; }

nav.desktop-menu ul li a.active {
    color: #c9a84c;
    border-bottom: 2px solid #c9a84c;
    padding-bottom: 4px;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #e0d5c1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0f0f0f;
    border-left: 1px solid #c9a84c;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 20px; }

.mobile-menu ul li a {
    color: #e0d5c1;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #1f1f1f;
}

.mobile-menu ul li a:hover { color: #c9a84c; }
.mobile-menu ul li a.active { color: #c9a84c; }

.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

.overlay.show { display: block; }

/* ===== HERO ===== */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-bottom: 1px solid #2a2a2a;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero * { position: relative; z-index: 1; }

.hero .gold-icon {
    font-size: 60px;
    color: #c9a84c;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 60px;
    font-weight: normal;
    letter-spacing: 10px;
    color: #c9a84c;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 span { color: #e0d5c1; }

.hero .tagline {
    font-size: 20px;
    color: #b0a68e;
    letter-spacing: 5px;
    font-style: italic;
    margin-bottom: 20px;
}

.hero .description {
    font-size: 16px;
    color: #a09880;
    max-width: 700px;
    margin: 0 auto 30px;
    letter-spacing: 1px;
    line-height: 1.9;
}

.btn-gold {
    display: inline-block;
    background: transparent;
    border: 2px solid #c9a84c;
    color: #c9a84c;
    padding: 12px 40px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
    border-radius: 4px;
    cursor: pointer;
}

.btn-gold:hover { background: #c9a84c; color: #0a0a0a; }

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; padding: 60px 20px 20px; }

.section-title h2 {
    font-size: 36px;
    color: #c9a84c;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 12px;
}

.section-title .divider {
    width: 80px;
    height: 2px;
    background: #c9a84c;
    margin: 0 auto 20px;
}

.section-title p {
    color: #a09880;
    font-size: 15px;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 80px;
    padding: 0 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #c9a84c;
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 40px;
    color: #c9a84c;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    color: #e0d5c1;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-item p {
    color: #8a806a;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 30px;
}

.portfolio-item {
    position: relative;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    background: #0f0f0f;
}

.portfolio-item:hover {
    border-color: #c9a84c;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15);
}

.portfolio-thumb {
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #1f1f1f;
    position: relative;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.08);
}

.portfolio-thumb .placeholder-icon {
    font-size: 60px;
    color: #c9a84c;
}

.portfolio-info { padding: 20px; }

.portfolio-info h3 {
    color: #c9a84c;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #8a806a;
    font-size: 14px;
    margin-bottom: 12px;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    color: #c9a84c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.cta-section h2 {
    font-size: 32px;
    color: #e0d5c1;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: normal;
}

.cta-section p {
    color: #a09880;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 30px;
    text-align: center;
}

.stat-item .number {
    font-size: 42px;
    color: #c9a84c;
    display: block;
    margin-bottom: 8px;
}

.stat-item .label {
    color: #a09880;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #1a1a1a;
    color: #6a604a;
    font-size: 13px;
    letter-spacing: 1px;
}

footer span { color: #c9a84c; }

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.language-btn {
    background: transparent;
    color: #e0d5c1;
    border: 2px solid #c9a84c;
    padding: 8px 18px 8px 14px;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.language-btn:hover { background: #c9a84c; color: #0a0a0a; }
.language-btn .flag-icon { font-size: 18px; }
.language-btn .arrow-down { font-size: 10px; margin-left: 2px; transition: transform 0.3s ease; }
.language-btn.active .arrow-down { transform: rotate(180deg); }

.language-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0f0f0f;
    border: 1px solid #c9a84c;
    border-radius: 4px;
    min-width: 150px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    padding: 4px 0;
}

.language-dropdown.show { display: block; animation: fadeIn 0.2s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.language-dropdown .lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #e0d5c1;
    font-family: 'Georgia', serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.language-dropdown .lang-item:hover {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
}

.language-dropdown .lang-item .flag-icon { font-size: 18px; }

.language-dropdown .lang-item.active-lang {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.08);
}

.language-dropdown .lang-item.active-lang::after {
    content: '✓';
    margin-left: auto;
    color: #c9a84c;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header { padding: 14px 20px; }
    nav.desktop-menu { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 32px; letter-spacing: 5px; }
    .hero .tagline { font-size: 16px; }
    .features { grid-template-columns: 1fr; gap: 25px; }
    .section-title h2 { font-size: 26px; letter-spacing: 4px; }
    .language-selector { margin-left: 10px; }
    .language-btn { font-size: 12px; padding: 5px 12px 5px 10px; }
    .language-btn .flag-icon { font-size: 15px; }
    .logo-text { font-size: 18px; }
    .logo img { height: 35px; }
    .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero { padding: 60px 15px 50px; }
    .mobile-menu { width: 100%; right: -100%; }
    .language-btn { font-size: 11px; padding: 4px 10px 4px 8px; }
    .logo-text { font-size: 15px; letter-spacing: 2px; }
    .logo img { height: 30px; }
}
/* ============================================== */
/* ===== HERO BANNER با پس‌زمینه متحرک ===== */
/* ============================================== */

.hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: hidden;
    border-bottom: 1px solid #c9a84c;
    background: #0a0a0a;
}

/* ===== لایه پس‌زمینه با انیمیشن زوم ===== */
.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: slowZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes slowZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-1%, -1%);
    }
}

/* ===== لایه تاریک روی بنر ===== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 2;
}

/* درخشش طلایی روی بنر */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 168, 76, 0.15) 0%,
        transparent 60%
    );
    animation: goldPulse 6s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== ذرات متحرک طلایی ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c9a84c;
    border-radius: 50%;
    box-shadow: 0 0 10px #c9a84c, 0 0 20px rgba(201, 168, 76, 0.5);
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation: floatUp 12s linear infinite; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation: floatUp 15s linear infinite; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; animation: floatUp 10s linear infinite; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation: floatUp 14s linear infinite; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; animation: floatUp 11s linear infinite; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation: floatUp 13s linear infinite; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; animation: floatUp 16s linear infinite; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation: floatUp 9s linear infinite; animation-delay: 2.5s; }

@keyframes floatUp {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px);
    }
}

/* ===== محتوای Hero ===== */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .gold-icon {
    font-size: 60px;
    color: #c9a84c;
    margin-bottom: 15px;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content h1 {
    font-size: 64px;
    font-weight: normal;
    letter-spacing: 10px;
    color: #c9a84c;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.3);
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-content h1 span {
    color: #e0d5c1;
}

.hero-content .tagline {
    font-size: 20px;
    color: #b0a68e;
    letter-spacing: 5px;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-content .description {
    font-size: 16px;
    color: #d0c8b4;
    max-width: 700px;
    margin: 0 auto 30px;
    letter-spacing: 1px;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-content .btn-gold {
    animation: fadeInUp 1.2s ease-out 0.8s both;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.hero-content .btn-gold:hover {
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.6);
}

/* ===== فلش اسکرول ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid #c9a84c;
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #c9a84c;
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 85vh;
        padding: 80px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 5px;
    }
    
    .hero-content .tagline {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    .hero-content .description {
        font-size: 14px;
    }
    
    .hero-content .gold-icon {
        font-size: 45px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 3px;
    }
    
    .hero-content .tagline {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .hero-content .description {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .hero-content .gold-icon {
        font-size: 38px;
    }
}
/* ============================================== */
/* ===== لوگوی دایره‌ای متحرک ===== */
/* ============================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-circle {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== حلقه چرخان بیرونی ===== */
.logo-ring-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #c9a84c;
    border-right-color: #c9a84c;
    border-radius: 50%;
    animation: spinClockwise 4s linear infinite;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

@keyframes spinClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== حلقه دوم (خلاف جهت) ===== */
.logo-ring-inner {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 1.5px solid transparent;
    border-bottom-color: #e0d5c1;
    border-left-color: #e0d5c1;
    border-radius: 50%;
    animation: spinCounterClockwise 6s linear infinite;
    opacity: 0.7;
}

@keyframes spinCounterClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* ===== حروف CW در مرکز ===== */
.logo-center {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 18px;
    color: #c9a84c;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(201, 168, 76, 1), 0 0 30px rgba(201, 168, 76, 0.6);
    }
}

.logo-letter {
    display: inline-block;
    animation: letterFloat 2s ease-in-out infinite;
}

.logo-letter:nth-child(1) { animation-delay: 0s; }
.logo-letter:nth-child(2) { animation-delay: 0.2s; }

@keyframes letterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* ===== نقطه‌های طلایی دور لوگو ===== */
.logo-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spinClockwise 20s linear infinite;
}

.dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #c9a84c;
    border-radius: 50%;
    box-shadow: 0 0 6px #c9a84c, 0 0 12px rgba(201, 168, 76, 0.5);
}

.dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(2) { top: 15%; right: 8%; }
.dot:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.dot:nth-child(4) { bottom: 15%; right: 8%; }
.dot:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(6) { bottom: 15%; left: 8%; }
.dot:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.dot:nth-child(8) { top: 15%; left: 8%; }

/* ===== درخشش طلایی پشت لوگو ===== */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.9;
    }
}

/* ===== متن لوگو ===== */
.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.logo-text span {
    color: #e0d5c1;
}

.logo:hover .logo-text {
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

/* ===== افکت هاور روی کل لوگو ===== */
.logo:hover .logo-ring-outer {
    animation-duration: 1.5s;
    border-top-color: #e0d5c1;
    border-right-color: #e0d5c1;
}

.logo:hover .logo-ring-inner {
    animation-duration: 2s;
    border-bottom-color: #c9a84c;
    border-left-color: #c9a84c;
}

.logo:hover .logo-center {
    color: #e0d5c1;
    text-shadow: 0 0 25px #c9a84c, 0 0 40px rgba(201, 168, 76, 0.8);
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-center {
        font-size: 15px;
    }
    
    .logo-text {
        font-size: 17px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 38px;
        height: 38px;
    }
    
    .logo-center {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .logo {
        gap: 10px;
    }
}
/* ============================================== */
/* ===== لوگوی دایره‌ای با عکس اختصاصی ===== */
/* ============================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-circle-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== حلقه چرخان بیرونی ===== */
.logo-ring-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #c9a84c;
    border-right-color: #c9a84c;
    border-radius: 50%;
    animation: spinClockwise 4s linear infinite;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
    z-index: 3;
}

@keyframes spinClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== حلقه دوم (خلاف جهت) ===== */
.logo-ring-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1.5px solid transparent;
    border-bottom-color: #e0d5c1;
    border-left-color: #e0d5c1;
    border-radius: 50%;
    animation: spinCounterClockwise 6s linear infinite;
    opacity: 0.7;
    z-index: 3;
}

@keyframes spinCounterClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* ===== لوگوی شما در مرکز ===== */
.logo-image-center {
    position: relative;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    z-index: 2;
    animation: logoPulse 3s ease-in-out infinite;
    box-shadow: 
        inset 0 0 15px rgba(201, 168, 76, 0.3),
        0 0 20px rgba(201, 168, 76, 0.3);
}

.logo-image-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.logo:hover .logo-image-center img {
    transform: scale(1.1);
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 
            inset 0 0 15px rgba(201, 168, 76, 0.3),
            0 0 20px rgba(201, 168, 76, 0.3);
    }
    50% {
        box-shadow: 
            inset 0 0 25px rgba(201, 168, 76, 0.6),
            0 0 35px rgba(201, 168, 76, 0.6);
    }
}

/* ===== نقطه‌های طلایی چرخان ===== */
.logo-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spinClockwise 20s linear infinite;
    z-index: 4;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #c9a84c;
    border-radius: 50%;
    box-shadow: 0 0 6px #c9a84c, 0 0 12px rgba(201, 168, 76, 0.5);
}

.dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(2) { top: 15%; right: 8%; }
.dot:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.dot:nth-child(4) { bottom: 15%; right: 8%; }
.dot:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(6) { bottom: 15%; left: 8%; }
.dot:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.dot:nth-child(8) { top: 15%; left: 8%; }

/* ===== درخشش طلایی پشت لوگو ===== */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.4) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.9;
    }
}

/* ===== متن لوگو ===== */
.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.logo-text span {
    color: #e0d5c1;
}

.logo:hover .logo-text {
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

/* ===== افکت هاور ===== */
.logo:hover .logo-ring-outer {
    animation-duration: 1.5s;
    border-top-color: #e0d5c1;
    border-right-color: #e0d5c1;
}

.logo:hover .logo-ring-inner {
    animation-duration: 2s;
    border-bottom-color: #c9a84c;
    border-left-color: #c9a84c;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .logo-circle-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .logo-text {
        font-size: 17px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo-circle-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .logo-text {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .logo {
        gap: 10px;
    }
}