/* ============================================
   استایل اصلی تیروژ
   ============================================ */

:root {
    --primary: #E67E22;
    --primary-light: #F39C12;
    --primary-dark: #D35400;
    --secondary: #451A03;
    --bg: #C9B99A;
    --bg-card: #E8DCC8;
    --bg-elevated: #D4C4A8;
    --text-primary: #2A1A0E;
    --text-secondary: #5C3D1E;
    --text-muted: #8B6914;
    --text-inverse: #FFF8E7;
    --border: #B8A078;
    --border-hover: #A08050;
    --shadow: 0 4px 6px -1px rgb(42 26 14 / 0.18);
    --shadow-lg: 0 10px 15px -3px rgb(42 26 14 / 0.22);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg: #1A1208;
    --bg-card: #2D1B0E;
    --bg-elevated: #3D2612;
    --text-primary: #FEF3C7;
    --text-secondary: #FDE68A;
    --text-muted: #D97706;
    --text-inverse: #451A03;
    --border: #3D2612;
    --border-hover: #92400E;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    transition: background var(--transition), color var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #F1C40F 100%);
    color: var(--text-inverse);
    box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(234, 88, 12, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(201, 185, 154, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 18, 8, 0.9);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-core {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #F1C40F 100%);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.sun-rays {
    position: absolute;
    inset: 0;
    animation: rotate 20s linear infinite;
}

.sun-rays::before,
.sun-rays::after,
.sun-rays span {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 2px;
    background: var(--primary);
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.sun-rays::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.sun-rays::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.sun-rays span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(90deg);
}
.sun-rays span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    display: block;
    text-align: right;
}

.mobile-menu a:hover {
    background: var(--bg-elevated);
    color: var(--primary);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2A1A0E 0%, #6B3A1A 25%, #B85C1A 50%, #E67E22 75%, #F39C12 100%);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-inverse);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 248, 231, 0.95);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-light);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 248, 231, 0.8);
    margin-top: 0.25rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    width: 400px;
    height: 400px;
    position: relative;
}

.hero-shape-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(251, 146, 60, 0.2);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite;
}

.hero-shape-ring:nth-child(2) {
    inset: 40px;
    border-color: rgba(252, 211, 77, 0.2);
    animation-direction: reverse;
    animation-duration: 25s;
}

.hero-shape-ring:nth-child(3) {
    inset: 80px;
    border-color: rgba(251, 146, 60, 0.3);
    animation-duration: 20s;
}

.hero-shape-center {
    position: absolute;
    inset: 120px;
    background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #F1C40F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(251, 146, 60, 0.4);
}

.hero-shape-center svg {
    width: 60px;
    height: 60px;
    color: white;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgb(42 26 14 / 0.28);
    border-color: var(--border-hover);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary);
    color: var(--text-inverse);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.product-info {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

.product-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-inverse);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1.1rem;
    text-decoration: none;
}

.product-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Shop Filters */
.shop-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 100ms;
}
.reveal-delay-2 {
    transition-delay: 200ms;
}
.reveal-delay-3 {
    transition-delay: 300ms;
}
.reveal-delay-4 {
    transition-delay: 400ms;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .mobile-menu {
        display: flex !important;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .section-padding {
        padding: 2rem 0;
    }
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 1.75rem !important;
    }
    .section-title {
        font-size: 1.35rem !important;
    }
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================
   استایل فرم‌ها - یکدست با سایت + ریسپانسیو
   ============================================ */

/* ===== فرم‌های عمومی ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.12), inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== فرم‌های کارت ===== */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow);
    box-sizing: border-box;
}

.form-card .form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-card .form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-card .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.form-card .form-footer {
    text-align: center;
    margin-top: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-card .form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-card .form-footer a:hover {
    text-decoration: underline;
}

/* ===== فلش (پیام‌های خطا/موفقیت) ===== */
.flash {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    border-right: 4px solid transparent;
    word-wrap: break-word;
}

.flash-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: #059669;
    border-right: 4px solid #059669;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border-color: #DC2626;
    border-right: 4px solid #DC2626;
}

.flash-info {
    background: rgba(59, 130, 246, 0.1);
    color: #2563EB;
    border-color: #2563EB;
    border-right: 4px solid #2563EB;
}

.flash-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
    border-color: #D97706;
    border-right: 4px solid #D97706;
}

/* ===== صفحه ورود و ثبت نام ===== */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 3rem;
}

.auth-page .container {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* ===== حالت تاریک ===== */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

[data-theme="dark"] .form-card {
    background: var(--bg-card);
    border-color: var(--border);
}

/* ============================================
   واکنش‌گرایی فرم‌ها (Responsive)
   ============================================ */

/* ===== تبلت و موبایل ===== */
@media (max-width: 768px) {
    .auth-page {
        padding: 5rem 0.75rem 2rem;
        min-height: 70vh;
    }
    
    .auth-page .container {
        max-width: 100%;
        padding: 0;
    }
    
    .form-card {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
        border-radius: var(--radius);
        margin: 0;
    }
    
    .form-card .form-title {
        font-size: 1.3rem;
    }
    
    .form-card .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
    }
    
    .form-card .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .form-card .form-footer {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .flash {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== موبایل کوچک ===== */
@media (max-width: 480px) {
    .auth-page {
        padding: 4rem 0.5rem 1.5rem;
        min-height: 60vh;
    }
    
    .form-card {
        padding: 1.25rem 0.75rem;
        border-radius: var(--radius-sm);
    }
    
    .form-card .form-title {
        font-size: 1.1rem;
    }
    
    .form-card .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
        border-width: 1px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .form-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-card .form-footer {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .form-card .form-footer p {
        margin: 0.25rem 0;
    }
    
    .flash {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        border-right-width: 3px;
    }
}

/* ===== موبایل خیلی کوچک (زیر 360px) ===== */
@media (max-width: 360px) {
    .form-card {
        padding: 1rem 0.5rem;
    }
    
    .form-card .form-title {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .form-card .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   اصلاحات دکمه‌ها برای موبایل
   ============================================ */
@media (max-width: 768px) {
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        border-radius: var(--radius-full);
    }
    
    .btn-primary {
        box-shadow: 0 2px 10px 0 rgba(234, 88, 12, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px 0 rgba(234, 88, 12, 0.4);
    }
}

/* ============================================
   اصلاحات کلی برای موبایل
   ============================================ */
@media (max-width: 768px) {
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
}