/* فوتر */
.footer {
    background: #0d0d0d;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #00c3ff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-section ul li a i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom p {
    opacity: 0.8;
}

/* نقشه */
.map-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* اطلاعات فوتر */
.footer-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-info h3 {
    color: #00c3ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* لینک‌های سریع */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}