/*
Theme Name: barnak
Theme URI: https://barnakstduio.ir/
Author: ALiMajd
Author URI: http://ebadimajd.ir/
Description: قالب بارناک استودیو 1404
Version: 1.0
Tags: EM
*/
html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}
@font-face {
    font-family:YekanBakh-Light;
    src: url("fonts/YekanBakh-Light.woff");
}

@font-face {
    font-family:'YekanBakh-Regular';
    src: url("fonts/YekanBakh-Regular.woff");
}

@font-face {
    font-family:YekanBakh-SemiBold;
    src: url("fonts/YekanBakh-SemiBold.woff");
}

@font-face {
    font-family:YekanBakh-Bold;
    src: url("fonts/YekanBakh-Bold.woff");
}

@font-face {
    font-family:YekanBakh-ExtraBold;
    src: url("fonts/YekanBakh-ExtraBold.woff");
}
     /* پالت رنگی زرد طلایی پیشرفته */
 :root {
     --gold-primary: #FFD700;
     --gold-secondary: #FFED4E;
     --gold-dark: #D4AF37;
     --gold-light: #FFF8DC;
     --black-deep: #0A0A0A;
     --black-medium: #1A1A1A;
     --black-light: #2A2A2A;
     --text-light: #FFFFFF;
     --text-gray: #CCCCCC;
     --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
     --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
     --gradient-gold-horizontal: linear-gradient(90deg, #FFD700 0%, #FFED4E 50%, #FFD700 100%);
     --transition-smooth: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.3);
     --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.5);
     --glass-effect: rgba(255, 255, 255, 0.05);
     --glass-border: rgba(255, 215, 0, 0.2);
     --primary-black: #0a0a0a;
     --secondary-black: #1a1a1a;
     --accent-yellow: #FFD700;
     --light-yellow: #FFF8DC;
     --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
 }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	text-decoration:none;
    font-family: 'YekanBakh-Bold', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--black-deep);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* هدر اصلی */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--gold-primary);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* لوگو */
.logo {
    display: flex;
    align-items: center;
    order: 2;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
    transition: var(--transition-smooth);
}

.logo img:hover {
    transform: scale(1.05);
}

/* منوی دسکتاپ */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 1;
}

.desktop-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--black-deep);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: var(--shadow-gold);
    font-size: 1rem;
}

.nav-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* منوی موبایل */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: var(--transition-smooth);
    order: 1;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--gold-primary);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--gold-primary);
}

/* منوی موبایل */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: var(--gradient-dark);
    backdrop-filter: blur(25px);
    z-index: 999;
    transition: all 0.8s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 100px 30px 40px;
    overflow-y: auto;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.7);
    border-right: 3px solid var(--gold-primary);
    border-left: none;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FFD700' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.close-menu-btn:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-top: 20px;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 20px 25px;
    border-radius: 15px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-left: 5px solid transparent;
    border-right: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.7s;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
    transform: translateX(10px);
    border-left: 5px solid var(--gold-primary);
    border-right: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav-link i {
    width: 30px;
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.mobile-cta-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-nav-cta {
    background: var(--gradient-gold);
    color: var(--black-deep);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 22px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    text-align: center;
}

.mobile-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.mobile-nav-cta:hover::before {
    left: 100%;
}

.mobile-nav-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

.mobile-nav-cta i {
    font-size: 1.8rem;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* انیمیشن‌های ورود لینک‌ها */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.mobile-nav-link {
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-link:nth-child(6) { animation-delay: 0.6s; }
.mobile-cta-container {
    animation: slideInLeft 0.7s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* هیرو سکشن */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 237, 78, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: -2;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black-deep);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 3px solid var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-secondary);
}


/* بخش آمار */
.stats-section {
    padding: 6rem 5%;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 2px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-horizontal);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-primary);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* خدمات */
.services-section {
    padding: 8rem 5%;
    background: var(--black-deep);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 150px;
    height: 5px;
    background: var(--gradient-gold);
    border-radius: 5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--black-medium);
    border-radius: 25px;
    padding: 3.5rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.6s ease;
}

.service-card:hover {
    transform: translateY(-20px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-heavy);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 3rem;
    color: var(--black-deep);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

/* پکیج‌ها */
.packages-section {
    padding: 8rem 5%;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.package-card {
    background: var(--black-deep);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    position: relative;
}

.package-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}
/*
.featured-badge {
    position: absolute;
    top: 25px;
    left: -35px;
    background: var(--gradient-gold);
    color: var(--black-deep);
    padding: 0.8rem 4rem;
    font-weight: 800;
    transform: rotate(-45deg);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

*/
.package-header {
    background: var(--gradient-gold);
    padding: 3rem 2rem;
    text-align: center;
}

.package-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black-deep);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black-deep);
    margin: 1.5rem 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.package-body {
    padding: 3rem;
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
}

.package-features li {
    padding: 1rem 0;
    color: var(--text-light);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--gold-primary);
    margin-left: 10px;
    font-size: 1.3rem;
}

/* نمونه کارها */
.portfolio-section {
    padding: 8rem 5%;
    background: var(--black-deep);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transform: translateY(20px);
    opacity: 1;
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-gold);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 0;
}
/* بخش بلاگ */
.blog-section {
    padding: 8rem 5%;
    background-color: var(--primary-black);
    text-align: center;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--secondary-black);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.blog-image {
    height: auto;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    position: relative;
    overflow: hidden;
}
.blog-image img{
 width: 100%;
}
   
.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    z-index: 2;
}

.blog-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--accent-yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-title {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.blog-section .blog-excerpt
{   
    margin: 0 0 25px 0;
    direction: rtl;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    line-height: 1.5;
}
.blog-link {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    background: transparent;
    border: none;
}

.blog-link:hover {
    gap: 15px;
}

/* مارکتینگ */
.marketing-section {
    padding: 2rem 5%;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.marketing-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.marketing-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black-deep);
    margin-bottom: 1.5rem;
}

.marketing-form {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    color: var(--black-deep);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

/* تماس */
.contact-section {
    padding: 8rem 5%;
    background: var(--black-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--black-medium);
    border-radius: 25px 0 0 25px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form .quform .quform-field-text, .contact-form .quform .quform-field-textarea{
    -webkit-appearance: none;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    background-color: rgba(26, 26, 26, 0.7);
    color: var(--text-light);
    resize: none;
    margin-top: 10px;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: var(--shadow-gold);
    background-color: rgba(26, 26, 26, 0.9);
}

.contact-form button {
    outline: 0;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    background: var(--gradient-gold);
    color: var(--black-deep);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.contact-form .section-title {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
    position: relative;
    text-align: center;
}
.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-control {
    width: 100%;
    padding: 1.5rem;
    background: var(--black-light);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* افکت‌های ویژه */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

/* فوتر */
.footer {
    background: var(--gradient-dark);
    padding: 5rem 5% 2rem;
    border-top: 3px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--black-deep);
    transform: translateY(-8px) rotate(10deg);
    border-color: var(--gold-primary);
}

/* استایل فوتر استودیو بارناک */
.barnack-footer {
    background-color: #000000;
    color: #ffffff;
    border-top: 5px solid #FFD700;
    padding: 30px 20px 20px;
    width: 100%;
    box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.1);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* بخش هدر */
.footer-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.studio-name {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    padding-right: 20px;
}

.studio-description {
    text-align: center;
    color: #ffffff;
    line-height: 1.8;
    margin: 20px 0;
    padding: 0 10px;
    font-size: 16px;
}

.description-line {
    margin-bottom: 10px;
}

/* بخش شبکه‌های اجتماعی */
.social-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.social-image {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.social-image-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 10px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.social-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-image-text {
    color: #FFD700;
    font-size: 20px;
    font-weight: bold;
}

.social-content {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.social-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: right;
    position: relative;
    padding-bottom: 10px;
}

.social-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    padding: 15px 10px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.social-icon i {
    font-size: 28px;
    margin-bottom: 10px;
    background-color: #333;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    color: #FFD700;
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.1);
}

.social-icon:hover i {
    background-color: #FFD700;
    color: #000;
    transform: scale(1.1);
}

/* بخش منوها */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section-title {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
    position: relative;
}

.footer-section-title:after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 60px;
    height: 2px;
    background-color: #FFD700;
}

.contact-list, .services-list, .media-list {
    list-style-type: none;
}

.contact-list li, .services-list li, .media-list li {
    margin-bottom: 10px;
    padding-right: 15px;
    position: relative;
}

.contact-list li:before, .services-list li:before, .media-list li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: #FFD700;
    font-weight: bold;
}

.contact-list a, .services-list a, .media-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.contact-list a:hover, .services-list a:hover, .media-list a:hover {
    color: #FFD700;
    padding-right: 5px;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

/* بخش پایینی */
.footer-bottom {
    background: linear-gradient(to right, #000000, #1a1a1a);
    padding: 30px 20px;
    margin: 20px -20px -20px;
    border-top: 1px solid #333;
}

.bottom-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.6;
    flex: 2;
    min-width: 300px;
}

.color-bars {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.color-bar {
    height: 10px;
    border-radius: 5px;
}

.color-bar-1 { background-color: #FFD700; }
.color-bar-2 { background-color: #1a1a1a; }
.color-bar-3 { background-color: #333333; }
.color-bar-4 { background-color: #4a4a4a; }
.color-bar-5 { background-color: #666666; }

/* رسپانسیو */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.8rem; }
    .section-title { font-size: 3rem; }
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .hamburger-menu { display: flex; }

    .header-container { justify-content: space-between; }
    .hamburger-menu { order: 1; }
    .logo { order: 2; }

    .hero-title { font-size: 3.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .package-card.featured { transform: none; }
    .marketing-form { flex-direction: column; }
}

@media (min-width: 993px) {
    .desktop-nav { order: 1; }
    .logo { order: 2; }
    .mobile-menu-overlay, .menu-backdrop { display: none; }
}

@media (max-width: 768px) {
    .mobile-menu-overlay { width: 90%; }
    .mobile-nav-link { font-size: 1.3rem; padding: 18px 22px; }
    .mobile-nav-cta { font-size: 1.4rem; padding: 20px 25px; }

    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .section-title { font-size: 2.5rem; }
    .stat-number { font-size: 3rem; }
    .services-grid, .packages-grid, .portfolio-grid { grid-template-columns: 1fr; }

    .footer-content { flex-direction: column; gap: 25px; }
    .footer-section { width: 100%; }
    .studio-name { font-size: 28px; text-align: center; padding-right: 0; }
    .social-section { flex-direction: column; }
    .social-image, .social-content { width: 100%; padding: 0; margin-bottom: 20px; }
    .social-icons { grid-template-columns: repeat(2, 1fr); }
    .bottom-wrapper { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .mobile-menu-overlay { width: 95%; padding: 90px 20px 30px; }
    .mobile-nav-link { font-size: 1.2rem; padding: 16px 20px; }
    .mobile-nav-cta { font-size: 1.3rem; padding: 18px 22px; }
    .close-menu-btn { width: 45px; height: 45px; font-size: 1.5rem; top: 20px; right: 20px; }

    .hero-title { font-size: 2.3rem; }
    .section-title { font-size: 2rem; }
    .btn-primary, .btn-secondary { padding: 1rem 2rem; font-size: 1.1rem; }
    .stat-card { padding: 2rem 1.5rem; }

    .social-icons { grid-template-columns: 1fr; }
}


/*page*/

/* ===== پالت رنگی طلایی-مشکی ===== */
@font-face {
    font-family: 'YekanBakh-Bold';
    src: url("font/YekanBakh-Bold.woff");
}

* {
    font-family: 'YekanBakh-Bold', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --gold-primary: #FFD700;
    --gold-secondary: #FFED4E;
    --gold-dark: #D4AF37;
    --gold-light: #FFF8DC;
    --black-deep: #0A0A0A;
    --black-medium: #1A1A1A;
    --black-light: #2A2A2A;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.3);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.5);
    --transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    background-color: var(--black-deep);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ===== استایل‌های مشترک ===== */
/* نوار ناوبری */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-primary);
    backdrop-filter: blur(15px);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-primary);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--text-light);
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gold-primary);
    bottom: -8px;
    right: 0;
    transition: width 0.4s ease;
    border-radius: 3px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== هیرو سکشن‌های منحصر به هر صفحه ===== */
/* صفحه 1: اجاره استودیو */
.pillar-hero-studio {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 5% 5rem;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.9) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* صفحه 2: عکاسی حرفه‌ای */
.pillar-hero-photography {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 5% 5rem;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.9) 100%), url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* صفحه 3: کسب‌وکار دیجیتال */
.pillar-hero-business {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 5% 5rem;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.9) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* محتوای هیرو (مشترک) */
.pillar-hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb i {
    color: var(--gold-primary);
}

.pillar-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    line-height: 1.2;
}

.pillar-subtitle {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.meta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
}

.meta-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* ===== ساختار محتوا (مشترک) ===== */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.table-of-contents {
    background: var(--black-medium);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.toc-title {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toc-list {
    list-style: none;
    columns: 2;
    column-gap: 3rem;
}

.toc-list li {
    margin-bottom: 1.2rem;
    break-inside: avoid;
}

.toc-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.toc-list a:hover {
    color: var(--gold-primary);
    transform: translateX(-10px);
}

.toc-list i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

/* بخش‌های اصلی محتوا */
.content-section {
    margin-bottom: 5rem;
    scroll-margin-top: 120px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
}

.content-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.highlight-box {
    background: var(--black-medium);
    border-right: 5px solid var(--gold-primary);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-gold);
}

.highlight-title {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== کامپوننت‌های منحصر به هر صفحه ===== */
/* صفحه 1: اجاره استودیو */
.info-grid-studio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card-studio {
    background: var(--black-light);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.info-card-studio:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.info-card-studio h4 {
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* صفحه 2: عکاسی حرفه‌ای */
.photography-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.type-card {
    background: var(--black-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.type-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.type-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.type-content {
    padding: 2.5rem;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--black-deep);
}

.type-title {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
}

/* صفحه 3: کسب‌وکار دیجیتال */
.process-timeline {
    position: relative;
    margin: 4rem 0;
    padding-right: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-gold);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-right: 3rem;
}

.process-step::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--gradient-gold);
}

/* ===== کامپوننت‌های مشترک ===== */
.faq-section {
    background: var(--gradient-dark);
    padding: 6rem 5%;
    border-radius: 30px;
    margin: 5rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-deep);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    padding: 2rem;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 1000px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* خدمات مرتبط */
.related-services {
    padding: 6rem 5%;
    background: var(--black-deep);
}

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

.service-card {
    background: var(--black-medium);
    border-radius: 20px;
    padding: 3rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--black-deep);
}

.service-title {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* CTA */
.cta-section {
    background: var(--gradient-gold);
    padding: 6rem 5%;
    text-align: center;
    border-radius: 30px;
    margin: 5rem 0;
}

.cta-title {
    font-size: 3rem;
    color: var(--black-deep);
    margin-bottom: 2rem;
    font-weight: 900;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--black-deep);
    color: var(--gold-primary);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 2rem;
    box-shadow: var(--shadow-heavy);
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    background: var(--black-medium);
}

/* فوتر */
.footer {
    background: var(--black-deep);
    padding: 5rem 5% 2rem;
    border-top: 3px solid var(--gold-primary);
    text-align: center;
}



/* ===== ریسپانسیو ===== */
@media (max-width: 1200px) {
    .pillar-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .toc-list {
        columns: 1;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 5%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .pillar-title {
        font-size: 2.8rem;
    }

    .pillar-hero-studio,
    .pillar-hero-photography,
    .pillar-hero-business {
        padding: 10rem 5% 3rem;
    }
}

@media (max-width: 768px) {
    .pillar-title {
        font-size: 2.3rem;
    }

    .pillar-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .content-text {
        font-size: 1.1rem;
    }

    .table-of-contents {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .pillar-title {
        font-size: 1.8rem;
    }

    .meta-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

/* single page */



/* فقط استایل‌های مربوط به وبلاگ */
.blog-single {
    --primary-color: #9c27b0;
    --secondary-color: #673ab7;
    --accent-color: #ffd700;
    --background-color: #0F0F0F;
    --header-footer-color: #1A1A1A;
    --text-primary: #F5F5F5;
    --text-secondary: #CCCCCC;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --gold-primary: #FFD700;
    --gold-secondary: #FFED4E;
    --gold-dark: #D4AF37;
    --gold-light: #FFF8DC;
    --black-deep: #0A0A0A;
    --black-medium: #1A1A1A;
    --black-light: #2A2A2A;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.blog-single {
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.blog-single .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==================== */
/* بخش محتوای مقاله */
/* ==================== */
/* Breadcrumb */
.blog-single .breadcrumb {
    background-color: var(--header-footer-color);
    padding: 20px 0;
    margin: 0 0 30px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-single .breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-single .breadcrumb a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.blog-single .breadcrumb a:hover {
    color: var(--accent-color);
}

.blog-single .breadcrumb i {
    margin: 0 5px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Three Column Layout */
.blog-single .article-layout {
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
    gap: 30px;
}

/* Left Column - Ads (22%) */
.blog-single .left-column {
    width: 22%;
    flex-shrink: 0;
}

/* Center Column - Article (70%) */
.blog-single .center-column {
    width: 70%;
    flex-shrink: 0;
}

/* Right Column - Social Share (8%) */
.blog-single .right-column {
    width: 8%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Article Content Styles */
.blog-single .article-header {
    background-color: var(--header-footer-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-single .article-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-single .article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-single .article-meta i {
    margin-left: 5px;
    color: var(--accent-color);
}

.blog-single .article-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-single .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single .article-content {
    background-color: var(--header-footer-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-single .article-content h2 {
    color: var(--accent-color);
    margin: 25px 0 15px;
    font-size: 1.6rem;
    font-family: YekanBakh-SemiBold;
}

.blog-single .article-content h3 {
    color: var(--accent-color);
    margin: 20px 0 12px;
    font-size: 1.3rem;
    opacity: 0.9;
}
.blog-single .article-content h4 {
    color: var(--accent-color);
    margin: 20px 0 12px;
    font-size: 1.3rem;
    opacity: 0.9;
}
.blog-single .article-content p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: YekanBakh-Regular;
}

.blog-single .article-content ul, .blog-single .article-content ol {
    padding-right: 25px;
    margin-bottom: 20px;
}

.blog-single .article-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.blog-single .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-single .tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-single .tag:hover {
    background-color: var(--accent-color);
    color: #333;
    cursor: pointer;
}

/* Ads Section Styles */
.blog-single .ads-section {
    background-color: var(--header-footer-color);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-single .ads-title {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
}

.blog-single .ad-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.blog-single .ad-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.blog-single .ad-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #333;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-single .ad-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.blog-single .ad-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-single .ad-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.blog-single .ad-btn {
    display: block;
    background-color: var(--accent-color);
    color: #333;
    text-align: center;
    padding: 10px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-single .ad-btn:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
}

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 1200px) {
    .blog-single .container {
        max-width: 100%;
    }

    .blog-single .article-layout {
        gap: 20px;
    }

    .blog-single .left-column {
        width: 25%;
    }

    .blog-single .center-column {
        width: 65%;
    }
}

@media (max-width: 992px) {
    .blog-single .article-layout {
        flex-direction: column;
    }

    .blog-single .left-column,
    .blog-single .center-column,
    .blog-single .right-column {
        width: 100%;
    }

    /* ترتیب جدید برای موبایل: اول مقاله، بعد اشتراک گذاری، بعد تبلیغات */
    .blog-single .center-column {
        order: 1;
    }

    .blog-single .left-column {
        order: 3;
    }

    .blog-single .article-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .blog-single .article-meta {
        flex-direction: column;
        gap: 10px;
    }


    .blog-single .article-header,
    .blog-single .article-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-single .article-title {
        font-size: 1.5rem;
    }

    .blog-single .article-image {
        height: 200px;
    }

    .blog-single .ads-title {
        font-size: 1.2rem;
    }
}



/* فقط استایل‌های مربوط به صفحه درباره ما */
.about-page {
    background-color: var(--black-deep);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.about-page {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'YekanBakh-Bold', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==================== محتوای صفحه درباره ما ==================== */
/* هیرو بخش درباره‌ما */
.about-page .about-hero {
    min-height: 80vh;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

.about-page .hero-content {
    max-width: 1200px;
    z-index: 2;
    position: relative;
}

.about-page .hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.about-page .hero-subtitle {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.about-page .gold-line {
    width: 200px;
    height: 5px;
    background: var(--gradient-gold);
    margin: 2rem auto;
    border-radius: 5px;
}

/* بخش اصلی درباره‌ی استاد */
.about-page .master-section {
    padding: 6rem 5%;
    background: var(--black-deep);
}

.about-page .master-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .about-page .master-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-page .master-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 5px solid var(--gold-primary);
    height: 600px;
}

.about-page .master-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-page .master-image:hover .master-img {
    transform: scale(1.05);
}

.about-page .image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    padding: 2rem;
    text-align: center;
}

.about-page .master-content {
    padding: 2rem;
}

.about-page .section-title {
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-page .highlight-text {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    padding-right: 1rem;
    border-right: 4px solid var(--gold-primary);
}

.about-page .master-info {
    margin-bottom: 3rem;
}

.about-page .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.about-page .info-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    min-width: 30px;
    font-family: "Font Awesome 6 Free";
	
}

/* بخش سوابق تحصیلی */
.about-page .education-section {
    padding: 6rem 5%;
    background: var(--gradient-dark);
}

.about-page .education-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-page .education-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.about-page .timeline-item {
    background: var(--black-medium);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-right: 5px solid var(--gold-primary);
    position: relative;
    transition: var(--transition);
}

.about-page .timeline-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-gold);
}

.about-page .timeline-year {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black-deep);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* بخش افتخارات و پروژه‌ها */
.about-page .achievements-section {
    padding: 6rem 5%;
    background: var(--black-deep);
}

.about-page .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.about-page .achievement-card {
    background: var(--black-medium);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-page .achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.6s ease;
}

.about-page .achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.about-page .achievement-card:hover::before {
    height: 100%;
}

.about-page .achievement-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
	    font-family: "Font Awesome 6 Free";
}

.about-page .achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

/* بخش پروژه‌های ملی */
.about-page .projects-section {
    padding: 6rem 5%;
    background: var(--gradient-dark);
}

.about-page .projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-page .projects-list {
    columns: 2;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .about-page .projects-list {
        columns: 1;
    }
}

.about-page .project-item {
    break-inside: avoid;
    background: var(--black-medium);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-right: 4px solid var(--gold-primary);
    transition: var(--transition);
}

.about-page .project-item:hover {
    transform: translateX(-10px);
    background: var(--black-light);
}

.about-page .project-icon {
    color: var(--gold-primary);
    margin-left: 10px;
}

/* بخش گالری افتخارات */
.about-page .gallery-section {
    padding: 6rem 5%;
    background: var(--black-deep);
}

.about-page .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-page .gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.about-page .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.about-page .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-page .gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.about-page .gallery-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    transform: translateY(20px);
    opacity: 1;
    transition: var(--transition);
}

.about-page .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 0;
}

/* بخش پایانی */
.about-page .legacy-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--black-deep) 0%, var(--black-medium) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-page .legacy-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-page .legacy-quote {
    font-size: 2.5rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.6;
    position: relative;
}

.about-page .legacy-quote::before,
.about-page .legacy-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--gold-primary);
    position: absolute;
    opacity: 0.5;
}

.about-page .legacy-quote::before {
    top: -20px;
    right: -30px;
}

.about-page .legacy-quote::after {
    bottom: -40px;
    left: -30px;
}

.about-page .signature {
    font-family: cursive;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-top: 3rem;
}

/* ریسپانسیو محتوا */
@media (max-width: 1200px) {
    .about-page .hero-title {
        font-size: 3.5rem;
    }

    .about-page .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-page .hero-title {
        font-size: 2.5rem;
    }

    .about-page .section-title {
        font-size: 2.2rem;
    }

    .about-page .master-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-page .hero-title {
        font-size: 2rem;
    }

    .about-page .section-title {
        font-size: 1.8rem;
    }

    .about-page .legacy-quote {
        font-size: 1.8rem;
    }
}
/* ==================== پایان محتوای صفحه درباره ما ==================== */


/* فقط استایل‌های مربوط به صفحه تماس */
.contact-page {
    background-color: var(--black-deep);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.contact-page  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* بخش معرفی استودیو */
.contact-page .studio-intro {
    padding: 60px 0 100px;
    background-color: var(--black-deep);
    position: relative;
}

.contact-page .studio-intro::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-page .section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.contact-page .section-title h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin: 20px 0;
    position: relative;
    display: inline-block;
}

.contact-page .section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    height: 4px;
    width: 100px;
    background: var(--gradient-gold-horizontal);
    border-radius: 2px;
}

.contact-page .section-title p {
    color: var(--gold-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 0;
}
.contact-page .section-title {
    border-bottom: none!important;
    display: block;
    text-align: center;
}
.contact-page .section-title:after {
   content: none !important;
}
.contact-page .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-page .intro-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-page .intro-features {
    list-style: none;
    margin-top: 35px;
}

.contact-page .intro-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-right: 3px solid transparent;
    transition: var(--transition-smooth);
}

.contact-page .intro-features li:hover {
    background: rgba(255, 215, 0, 0.05);
    border-right: 3px solid var(--gold-primary);
    transform: translateX(-5px);
}

.contact-page .intro-features i {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-top: 3px;
    background: rgba(255, 215, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-page .intro-image {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-page .intro-image::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-gold);
    opacity: 0.03;
    transform: rotate(30deg);
    z-index: -1;
}

.contact-page .intro-image i {
    font-size: 7rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.contact-page .intro-image h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* بخش تماس با ما */
.contact-page .contact-section {
    padding: 0 0 80px;
    background-color: var(--black-medium);
    position: relative;
    overflow: hidden;
}

.contact-page .contact-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-page .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-page .contact-form {
    padding: 50px;
}

.contact-page .form-title {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 15px;
}

.contact-page .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold-horizontal);
}

.contact-page .form-group {
    margin-bottom: 30px;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--gold-light);
    font-size: 1.1rem;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    background-color: rgba(26, 26, 26, 0.7);
    color: var(--text-light);
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    background-color: rgba(26, 26, 26, 0.9);
}

.contact-page .submit-btn {
    background: var(--gradient-gold);
    color: var(--black-deep);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-page .submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.contact-page .submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.contact-page .submit-btn:hover::before {
    left: 100%;
}

.contact-page .contact-info {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-page .contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-page .info-title {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.contact-page .contact-details {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-smooth);
}

.contact-page .contact-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(-5px);
}

.contact-page .contact-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-page .contact-item h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--gold-light);
}

.contact-page .contact-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* بخش نقشه */
.contact-page .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 300px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-page .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* رسپانسیو */
@media (max-width: 992px) {
    .contact-page .intro-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .contact-page .studio-intro,
    .contact-page .contact-section {
        padding: 40px 0 60px;
    }

    .contact-page .intro-image i {
        font-size: 5rem;
    }

    .contact-page .contact-form,
    .contact-page .contact-info {
        padding: 40px 30px;
    }

    .contact-page .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .contact-page .section-title h2 {
        font-size: 1.8rem;
    }

    .contact-page .form-title,
    .contact-page .info-title {
        font-size: 1.7rem;
    }

    .contact-page .intro-image i {
        font-size: 4rem;
    }
}


.marketing-section .quform-child-elements
{    

    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;
    align-items: center;
}
.marketing-section .quform-child-elements .quform-element-submit {
    vertical-align: bottom;
    margin: 0 !important;
    height: 120px;
}
.marketing-section .quform-child-elements .quform-element-submit .quform-submit{
    background: var(--black-deep);
    height: 100px;
    border-radius: 20px;
    color: var(--gold-primary);
    min-width: 230px;
    font-size: 1.1rem;
}
.marketing-section .quform-child-elements input {
    height: 100px;
    border-radius: 20px;
}


@media only screen and (max-width: 767px)

{
.marketing-section .quform-child-elements {
align-items: normal;
    flex-direction: column;
}

}

.blog-single .wp-video {
    max-width: 100%;
    height: auto;
    width: 100% !important;
}

/* مخفی کردن کنترل‌های ویدیو در وردپرس */
video,
.wp-video-shortcode video,
.mejs-container .mejs-controls,
.mejs-overlay-play {
    pointer-events: none !important;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* برای MediaElement.js (پخش‌کننده پیش‌فرض وردپرس) */
.mejs-container .mejs-controls {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
}

.mejs-overlay-play {
    display: none !important;
}


