/* login.css - استایل‌های صفحه ورود */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { margin: 0; min-height: 100vh; font-family: 'Vazirmatn', sans-serif; background: linear-gradient(135deg, #0d47a1, #e3f2fd); display: flex; flex-direction: column; overflow-x: hidden; }
.content-wrapper { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; padding: 80px 20px 50px 20px; }
.main-container { text-align: center; width: 100%; max-width: 800px; position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; }
.logo-wrapper { position: relative; margin-bottom: 5px; margin-top: -50px; z-index: 5; }
.main-logo { width: 60%; max-width: 450px; height: auto; filter: drop-shadow(0 15px 15px rgba(0,0,0,0.3)); animation: rocketEntry 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes rocketEntry { 0% { transform: translateY(-500px) scale(0.5); opacity: 0; } 60% { transform: translateY(30px) scale(1.1); opacity: 1; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
.top-pill-btn { position: fixed; top: 30px; z-index: 1000; width: 150px; padding: 10px 15px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; gap: 8px; color: #000; font-family: 'Vazirmatn'; font-weight: 900; font-size: 0.95rem; cursor: pointer; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: 0.3s; animation: pulseBtn 3s infinite; }
.top-pill-btn:hover { transform: scale(1.05); border-color: white; }
.btn-left { left: 30px; background: radial-gradient(circle at 30% 30%, #ffca28, #ff6f00); color: black; }
.btn-right { right: 30px; background: radial-gradient(circle at 30% 30%, #42a5f5, #1565c0); color: white; }
@keyframes pulseBtn { 0% { transform: scale(1); } 50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); } 100% { transform: scale(1); } }
.currency-badge { position: fixed; top: 90px; right: 30px; z-index: 999; background: rgba(255, 255, 255, 0.95); padding: 8px 15px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); font-weight: bold; font-size: 0.9rem; color: #333; display: flex; align-items: center; gap: 8px; backdrop-filter: blur(5px); border: 2px solid #fff; animation: fadeIn 1s ease-out; }
.currency-badge span { color: #2e7d32; font-weight: 900; font-size: 1.1rem; font-family: 'Vazirmatn', sans-serif; }
@keyframes fadeIn { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.buttons-center-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; margin-top: 10px; position: relative; z-index: 20; width: 100%; }
.action-btn { width: 130px; height: 130px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.5); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; font-family: 'Vazirmatn'; font-weight: 900; font-size: 0.95rem; cursor: pointer; text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.25); transition: 0.3s; animation: float 5s infinite ease-in-out; }
.action-btn:hover { transform: scale(1.1) !important; border-color: white; z-index: 25; }
.action-btn i { font-size: 2.2rem; margin-bottom: 8px; }
.btn-new { background: radial-gradient(circle at 30% 30%, #66bb6a, #2e7d32); animation-delay: 0s; }
.btn-price { background: radial-gradient(circle at 30% 30%, #ef5350, #c62828); animation-delay: 0.3s; }
.btn-special { background: radial-gradient(circle at 30% 30%, #ffca28, #fbc02d); color:black; animation-delay: 0.6s; }
.btn-inquiry { background: radial-gradient(circle at 30% 30%, #ab47bc, #7b1fa2); color: white; animation-delay: 0.9s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.login-container { display: none; background: rgba(255,255,255,0.98); padding: 40px; border-radius: 30px; width: 350px; text-align: center; box-shadow: 0 25px 60px rgba(0,0,0,0.4); position: absolute; z-index: 2000; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: popIn 0.3s ease-out; }
@keyframes popIn { from { opacity:0; transform: translate(-50%, -50%) scale(0.8); } to { opacity:1; transform: translate(-50%, -50%) scale(1); } }
.login-logo-small { width: 80px; margin-bottom: 10px; } 
h3 { color: #0d47a1; margin-bottom: 20px; font-weight: 900; }
input, select { width: 100%; padding: 14px; margin: 10px 0; border: 2px solid #e3f2fd; border-radius: 15px; font-family: 'Vazirmatn'; box-sizing: border-box; outline: none; background: #f8fbff; font-weight: bold; color: #0d47a1; }
button.main-btn { width: 100%; padding: 14px; background: linear-gradient(to bottom, #0d47a1, #1565c0); color: white; border: none; border-radius: 15px; cursor: pointer; font-size: 1.1rem; margin-top: 10px; font-weight: bold; box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3); }
.back-btn { color: #666; font-size: 0.9rem; margin-top: 20px; cursor: pointer; display: inline-block; padding: 5px 20px; background: #eee; border-radius: 20px; }
footer { width: 100%; background: #151b54; color: white; padding: 30px 20px; text-align: center; border-top: 4px solid #ffc107; position: relative; z-index: 5; margin-top: auto; }
.footer-logo h3 { margin: 0; font-size: 1.5rem; font-weight: 900; } 
.copyright { margin-top: 15px; color: #7986cb; font-size: 0.8rem; }
.contact-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.contact-content { background: white; width: 90%; max-width: 500px; border-radius: 20px; font-family: 'Vazirmatn'; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; }
.contact-header { background: #0d47a1; color: white; padding: 15px; text-align: center; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; }
.contact-close { position: absolute; top: 12px; left: 15px; color: white; font-size: 1.5rem; cursor: pointer; }
.contact-body { padding: 20px; text-align: center; flex-grow: 1; overflow-y: auto; }
.contact-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 10px; border-bottom: 1px dashed #eee; transition:0.3s; }
.contact-person { display: flex; align-items: center; gap: 10px; text-align: right; }
.person-icon { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.icon-manager { background: #ffebee; color: #d32f2f; } .icon-ceo { background: #fff8e1; color: #ff8f00; } .icon-sales { background: #e3f2fd; color: #1565c0; } .icon-warehouse { background: #f3e5f5; color: #7b1fa2; }
.person-info { display: flex; flex-direction: column; } .person-role { font-size: 0.8rem; color: #666; } .person-name { font-size: 0.95rem; font-weight: bold; color: #333; }
.call-btn { background: #28a745; color: white; text-decoration: none; padding: 8px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: bold; display: flex; align-items: center; gap: 5px; transition: 0.3s; box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3); }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; border-radius: 10px; color: white; text-decoration: none; margin-bottom: 10px; font-weight: bold; transition: 0.3s; }
.social-telegram { background: #229ED9; } .social-whatsapp { background: #25D366; }
.address-box { background: #fff3e0; padding: 15px; border-radius: 10px; margin-top: 20px; color: #333; font-size: 0.9rem; line-height: 1.8; border: 1px solid #ffe0b2; text-align: right; }
@media (max-width: 600px) {
    .top-pill-btn { width: 110px; padding: 8px; font-size: 0.8rem; top: 20px; }
    .currency-badge { top: 70px; right: 15px; font-size: 0.8rem; padding: 6px 12px; }
    .btn-left { left: 15px; } .btn-right { right: 15px; }
    .content-wrapper { padding-top: 80px; }
    .main-logo { width: 80%; max-width: 300px; }
    .buttons-center-row { gap: 15px; }
    .action-btn { width: 90px; height: 90px; font-size: 0.7rem; }
    .login-container { width: 100%; height: 100%; max-width: none; border-radius: 0; top: 0; left: 0; transform: none; overflow-y: auto; padding-top: 80px; animation: slideUp 0.3s ease-out; } 
    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
}